Imports the full shipped working copy of Red Planet v4.10 so the repo is
self-contained: buildable (source) and runnable (data). ~110 MB, committed
directly to git per project decision.
Contents (assets/RP411/):
- AUDIO/ (~97 MB) 223 .wav + audio config/res
- VIDEO/ (~10 MB) .X meshes, .SKL/.det/.sph geometry, .met materials,
.pcc/.png/.pcx textures, .vsh/.psh shaders, material tables
- GAUGE/ (~0.8 MB) HUD .GIM images, .PCC/.PCX bitmaps, gauge config
- SPOOLS/ runtime replay output dir (kept via .gitkeep)
- Root config/launch: environ.ini, RPDPL.INI, JOYSTICK.INI, TEST.EGG,
RPL4.RES, *.bat launchers
- Runtime binaries: rpl4opt.exe (shipped reference build), libsndfile-1.dll,
oalinst.exe (OpenAL redist installer), sleep.exe
Housekeeping:
- .gitignore: re-include assets/**/*.exe and *.dll (global rules skip them);
keep Thumbs.db and runtime *.spl out.
- .gitattributes: mark asset media (.wav/.png/.pcc/.gim/.x/.skl/... ) binary.
- docs/ASSETS.md: runtime layout, config chain (environ.ini -> RPDPL.INI ->
video/audio/gauge paths), launch args, and per-directory asset inventory.
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
410 lines
9.0 KiB
Plaintext
410 lines
9.0 KiB
Plaintext
xof 0303txt 0032
|
|
template Frame {
|
|
<3d82ab46-62da-11cf-ab39-0020af71e433>
|
|
[...]
|
|
}
|
|
|
|
template Matrix4x4 {
|
|
<f6f23f45-7686-11cf-8f52-0040333594a3>
|
|
array FLOAT matrix[16];
|
|
}
|
|
|
|
template FrameTransformMatrix {
|
|
<f6f23f41-7686-11cf-8f52-0040333594a3>
|
|
Matrix4x4 frameMatrix;
|
|
}
|
|
|
|
template Vector {
|
|
<3d82ab5e-62da-11cf-ab39-0020af71e433>
|
|
FLOAT x;
|
|
FLOAT y;
|
|
FLOAT z;
|
|
}
|
|
|
|
template MeshFace {
|
|
<3d82ab5f-62da-11cf-ab39-0020af71e433>
|
|
DWORD nFaceVertexIndices;
|
|
array DWORD faceVertexIndices[nFaceVertexIndices];
|
|
}
|
|
|
|
template Mesh {
|
|
<3d82ab44-62da-11cf-ab39-0020af71e433>
|
|
DWORD nVertices;
|
|
array Vector vertices[nVertices];
|
|
DWORD nFaces;
|
|
array MeshFace faces[nFaces];
|
|
[...]
|
|
}
|
|
|
|
template Coords2d {
|
|
<f6f23f44-7686-11cf-8f52-0040333594a3>
|
|
FLOAT u;
|
|
FLOAT v;
|
|
}
|
|
|
|
template MeshTextureCoords {
|
|
<f6f23f40-7686-11cf-8f52-0040333594a3>
|
|
DWORD nTextureCoords;
|
|
array Coords2d textureCoords[nTextureCoords];
|
|
}
|
|
|
|
template MeshNormals {
|
|
<f6f23f43-7686-11cf-8f52-0040333594a3>
|
|
DWORD nNormals;
|
|
array Vector normals[nNormals];
|
|
DWORD nFaceNormals;
|
|
array MeshFace faceNormals[nFaceNormals];
|
|
}
|
|
|
|
template ColorRGBA {
|
|
<35ff44e0-6c7c-11cf-8f52-0040333594a3>
|
|
FLOAT red;
|
|
FLOAT green;
|
|
FLOAT blue;
|
|
FLOAT alpha;
|
|
}
|
|
|
|
template ColorRGB {
|
|
<d3e16e81-7835-11cf-8f52-0040333594a3>
|
|
FLOAT red;
|
|
FLOAT green;
|
|
FLOAT blue;
|
|
}
|
|
|
|
template Material {
|
|
<3d82ab4d-62da-11cf-ab39-0020af71e433>
|
|
ColorRGBA faceColor;
|
|
FLOAT power;
|
|
ColorRGB specularColor;
|
|
ColorRGB emissiveColor;
|
|
[...]
|
|
}
|
|
|
|
template MeshMaterialList {
|
|
<f6f23f42-7686-11cf-8f52-0040333594a3>
|
|
DWORD nMaterials;
|
|
DWORD nFaceIndexes;
|
|
array DWORD faceIndexes[nFaceIndexes];
|
|
[Material <3d82ab4d-62da-11cf-ab39-0020af71e433>]
|
|
}
|
|
|
|
template TextureFilename {
|
|
<a42790e1-7810-11cf-8f52-0040333594a3>
|
|
STRING filename;
|
|
}
|
|
|
|
|
|
Frame SCENE_ROOT {
|
|
|
|
|
|
FrameTransformMatrix {
|
|
1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000;;
|
|
}
|
|
|
|
Frame MESH_ROOT {
|
|
|
|
|
|
FrameTransformMatrix {
|
|
1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000;;
|
|
}
|
|
|
|
Mesh {
|
|
52;
|
|
10.000000;5.000000;15.000000;,
|
|
-10.000000;5.000000;15.000000;,
|
|
-10.000000;3.000000;15.000000;,
|
|
-10.000000;1.000000;15.000000;,
|
|
10.000000;1.000000;15.000000;,
|
|
10.000000;3.000000;15.000000;,
|
|
-25.000000;5.000000;-15.000000;,
|
|
-25.000000;5.000000;-10.000000;,
|
|
-17.500000;5.000000;2.500000;,
|
|
-10.000000;5.000000;15.000000;,
|
|
10.000000;5.000000;15.000000;,
|
|
17.500000;5.000000;2.500000;,
|
|
-25.000000;5.000000;-10.000000;,
|
|
-25.000000;5.000000;-15.000000;,
|
|
-25.000000;1.000000;-15.000000;,
|
|
-25.000000;1.000000;-10.000000;,
|
|
-25.000000;3.000000;-10.000000;,
|
|
25.000000;5.000000;-15.000000;,
|
|
25.000000;5.000000;-10.000000;,
|
|
25.000000;3.000000;-10.000000;,
|
|
25.000000;1.000000;-10.000000;,
|
|
25.000000;1.000000;-15.000000;,
|
|
-25.000000;5.000000;-15.000000;,
|
|
25.000000;5.000000;-15.000000;,
|
|
25.000000;1.000000;-15.000000;,
|
|
-25.000000;1.000000;-15.000000;,
|
|
25.000000;5.000000;-10.000000;,
|
|
25.000000;5.000000;-15.000000;,
|
|
-17.500000;1.000000;2.500000;,
|
|
-10.000000;1.000000;15.000000;,
|
|
-10.000000;3.000000;15.000000;,
|
|
-17.500000;3.000000;2.500000;,
|
|
-25.000000;3.000000;-10.000000;,
|
|
-25.000000;1.000000;-10.000000;,
|
|
-17.500000;3.000000;2.500000;,
|
|
-10.000000;3.000000;15.000000;,
|
|
-10.000000;5.000000;15.000000;,
|
|
-17.500000;5.000000;2.500000;,
|
|
-25.000000;5.000000;-10.000000;,
|
|
-25.000000;3.000000;-10.000000;,
|
|
17.500000;1.000000;2.500000;,
|
|
25.000000;1.000000;-10.000000;,
|
|
25.000000;3.000000;-10.000000;,
|
|
17.500000;3.000000;2.500000;,
|
|
10.000000;3.000000;15.000000;,
|
|
10.000000;1.000000;15.000000;,
|
|
17.500000;3.000000;2.500000;,
|
|
25.000000;3.000000;-10.000000;,
|
|
25.000000;5.000000;-10.000000;,
|
|
17.500000;5.000000;2.500000;,
|
|
10.000000;5.000000;15.000000;,
|
|
10.000000;3.000000;15.000000;;
|
|
34;
|
|
3;0,1,2;,
|
|
3;0,2,3;,
|
|
3;0,3,4;,
|
|
3;0,4,5;,
|
|
3;6,7,8;,
|
|
3;6,8,9;,
|
|
3;6,9,10;,
|
|
3;6,10,11;,
|
|
3;12,13,14;,
|
|
3;12,14,15;,
|
|
3;12,15,16;,
|
|
3;17,18,19;,
|
|
3;17,19,20;,
|
|
3;17,20,21;,
|
|
3;22,23,24;,
|
|
3;22,24,25;,
|
|
3;6,11,26;,
|
|
3;6,26,27;,
|
|
3;28,29,30;,
|
|
3;28,30,31;,
|
|
3;28,31,32;,
|
|
3;28,32,33;,
|
|
3;34,35,36;,
|
|
3;34,36,37;,
|
|
3;34,37,38;,
|
|
3;34,38,39;,
|
|
3;40,41,42;,
|
|
3;40,42,43;,
|
|
3;40,43,44;,
|
|
3;40,44,45;,
|
|
3;46,47,48;,
|
|
3;46,48,49;,
|
|
3;46,49,50;,
|
|
3;46,50,51;;
|
|
|
|
MeshTextureCoords {
|
|
52;
|
|
2.084440;0.386771;,
|
|
0.810554;0.386771;,
|
|
0.810554;0.259383;,
|
|
0.810554;0.131995;,
|
|
2.084440;0.131995;,
|
|
2.084440;0.259383;,
|
|
0.835107;0.101065;,
|
|
0.835107;0.234043;,
|
|
1.034575;0.566489;,
|
|
1.234043;0.898935;,
|
|
1.765957;0.898935;,
|
|
1.965425;0.566489;,
|
|
1.057560;0.988390;,
|
|
1.427930;0.988390;,
|
|
1.427930;0.692095;,
|
|
1.057560;0.692095;,
|
|
1.057560;0.840242;,
|
|
1.427930;0.988390;,
|
|
1.057560;0.988390;,
|
|
1.057560;0.840242;,
|
|
1.057560;0.692095;,
|
|
1.427930;0.692095;,
|
|
0.855140;0.386771;,
|
|
4.039850;0.386771;,
|
|
4.039850;0.131995;,
|
|
0.855140;0.131995;,
|
|
2.164890;0.234043;,
|
|
2.164890;0.101065;,
|
|
0.864442;1.879610;,
|
|
0.523534;1.289150;,
|
|
0.680993;1.198240;,
|
|
1.021900;1.788700;,
|
|
1.362807;2.379170;,
|
|
1.205349;2.470080;,
|
|
0.965860;1.537800;,
|
|
1.306763;0.947337;,
|
|
1.464222;1.038250;,
|
|
1.123313;1.628710;,
|
|
0.782410;2.219180;,
|
|
0.624950;2.128270;,
|
|
0.399302;0.691380;,
|
|
0.740210;0.100910;,
|
|
0.897669;0.191820;,
|
|
0.556760;0.782290;,
|
|
0.215852;1.372756;,
|
|
0.058393;1.281847;,
|
|
0.431000;1.033189;,
|
|
0.090090;0.442720;,
|
|
0.247550;0.351810;,
|
|
0.588460;0.942280;,
|
|
0.929370;1.532748;,
|
|
0.771910;1.623657;;
|
|
}
|
|
|
|
MeshNormals {
|
|
52;
|
|
0.000000;0.000000;0.750000;,
|
|
0.000000;0.000000;1.000000;,
|
|
0.000000;0.000000;1.000000;,
|
|
0.000000;0.000000;1.000000;,
|
|
0.000000;0.000000;0.500000;,
|
|
0.000000;0.000000;0.000000;,
|
|
0.000000;1.000000;0.000000;,
|
|
0.000000;1.000000;0.000000;,
|
|
0.000000;1.000000;0.000000;,
|
|
0.000000;1.000000;0.000000;,
|
|
0.000000;1.000000;0.000000;,
|
|
0.000000;1.000000;0.000000;,
|
|
-0.666667;0.000000;0.000000;,
|
|
-1.000000;0.000000;0.000000;,
|
|
-1.000000;0.000000;0.000000;,
|
|
-0.500000;0.000000;0.000000;,
|
|
0.000000;0.000000;0.000000;,
|
|
1.000000;0.000000;0.000000;,
|
|
1.000000;0.000000;0.000000;,
|
|
1.000000;0.000000;0.000000;,
|
|
1.000000;0.000000;0.000000;,
|
|
1.000000;0.000000;0.000000;,
|
|
0.000000;0.000000;-1.000000;,
|
|
0.000000;0.000000;-1.000000;,
|
|
0.000000;0.000000;-1.000000;,
|
|
0.000000;0.000000;-1.000000;,
|
|
0.000000;1.000000;0.000000;,
|
|
0.000000;1.000000;0.000000;,
|
|
-0.857493;0.000000;0.514496;,
|
|
-0.857493;0.000000;0.514496;,
|
|
-0.857493;0.000000;0.514496;,
|
|
-0.857493;0.000000;0.514496;,
|
|
-0.857493;0.000000;0.514496;,
|
|
-0.857493;0.000000;0.514496;,
|
|
-0.857493;0.000000;0.514496;,
|
|
-0.857493;0.000000;0.514496;,
|
|
-0.857493;0.000000;0.514496;,
|
|
-0.857493;0.000000;0.514496;,
|
|
-0.857493;0.000000;0.514496;,
|
|
-0.857493;0.000000;0.514496;,
|
|
0.857493;0.000000;0.514496;,
|
|
0.857493;0.000000;0.514496;,
|
|
0.857493;0.000000;0.514496;,
|
|
0.857493;0.000000;0.514496;,
|
|
0.857493;0.000000;0.514496;,
|
|
0.857493;0.000000;0.514496;,
|
|
0.857493;0.000000;0.514496;,
|
|
0.857493;0.000000;0.514496;,
|
|
0.857493;0.000000;0.514496;,
|
|
0.857493;0.000000;0.514496;,
|
|
0.857493;0.000000;0.514496;,
|
|
0.857493;0.000000;0.514496;;
|
|
34;
|
|
3;0,1,2;,
|
|
3;0,2,3;,
|
|
3;0,3,4;,
|
|
3;0,4,5;,
|
|
3;6,7,8;,
|
|
3;6,8,9;,
|
|
3;6,9,10;,
|
|
3;6,10,11;,
|
|
3;12,13,14;,
|
|
3;12,14,15;,
|
|
3;12,15,16;,
|
|
3;17,18,19;,
|
|
3;17,19,20;,
|
|
3;17,20,21;,
|
|
3;22,23,24;,
|
|
3;22,24,25;,
|
|
3;6,11,26;,
|
|
3;6,26,27;,
|
|
3;28,29,30;,
|
|
3;28,30,31;,
|
|
3;28,31,32;,
|
|
3;28,32,33;,
|
|
3;34,35,36;,
|
|
3;34,36,37;,
|
|
3;34,37,38;,
|
|
3;34,38,39;,
|
|
3;40,41,42;,
|
|
3;40,42,43;,
|
|
3;40,43,44;,
|
|
3;40,44,45;,
|
|
3;46,47,48;,
|
|
3;46,48,49;,
|
|
3;46,49,50;,
|
|
3;46,50,51;;
|
|
}
|
|
|
|
MeshMaterialList {
|
|
2;
|
|
34;
|
|
0,
|
|
0,
|
|
0,
|
|
0,
|
|
0,
|
|
0,
|
|
0,
|
|
0,
|
|
0,
|
|
0,
|
|
0,
|
|
0,
|
|
0,
|
|
0,
|
|
0,
|
|
0,
|
|
0,
|
|
0,
|
|
1,
|
|
1,
|
|
1,
|
|
1,
|
|
1,
|
|
1,
|
|
1,
|
|
1,
|
|
1,
|
|
1,
|
|
1,
|
|
1,
|
|
1,
|
|
1,
|
|
1,
|
|
1;
|
|
|
|
Material {
|
|
0.367300;0.259913;0.265300;1.000000;;
|
|
1.000000;
|
|
0.000000;0.000000;0.000000;;
|
|
0.000000;0.000000;0.000000;;
|
|
|
|
TextureFilename {
|
|
"genA4_tex.png";
|
|
}
|
|
}
|
|
|
|
Material {
|
|
0.849000;0.489414;0.263400;1.000000;;
|
|
1.000000;
|
|
0.000000;0.000000;0.000000;;
|
|
0.000000;0.000000;0.000000;;
|
|
|
|
TextureFilename {
|
|
"genC4_tex.png";
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
} |