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>
516 lines
9.9 KiB
Plaintext
516 lines
9.9 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 {
|
|
45;
|
|
-4.755300;-1.545100;0.000000;,
|
|
-5.000000;0.000000;0.000000;,
|
|
0.000000;0.000000;10.000000;,
|
|
-4.045100;-2.938900;0.000000;,
|
|
-2.938900;-4.045100;0.000000;,
|
|
-1.545100;-4.755300;0.000000;,
|
|
0.000000;-5.000000;0.000000;,
|
|
1.545100;-4.755300;0.000000;,
|
|
2.938900;-4.045100;0.000000;,
|
|
4.045100;-2.938900;0.000000;,
|
|
4.755300;-1.545100;0.000000;,
|
|
5.000000;0.000000;0.000000;,
|
|
-4.755300;-1.545100;0.000000;,
|
|
0.000000;0.000000;-10.000000;,
|
|
-5.000000;0.000000;0.000000;,
|
|
-4.045100;-2.938900;0.000000;,
|
|
-2.938900;-4.045100;0.000000;,
|
|
-1.545100;-4.755300;0.000000;,
|
|
0.000000;-5.000000;0.000000;,
|
|
1.545100;-4.755300;0.000000;,
|
|
2.938900;-4.045100;0.000000;,
|
|
4.045100;-2.938900;0.000000;,
|
|
4.755300;-1.545100;0.000000;,
|
|
5.000000;0.000000;0.000000;,
|
|
4.755300;1.545100;0.000000;,
|
|
5.000000;0.000000;0.000000;,
|
|
0.000000;0.000000;10.000000;,
|
|
4.045100;2.938900;0.000000;,
|
|
2.938900;4.045100;0.000000;,
|
|
1.545100;4.755300;0.000000;,
|
|
0.000000;5.000000;0.000000;,
|
|
-1.545100;4.755300;0.000000;,
|
|
-2.938900;4.045100;0.000000;,
|
|
-4.045100;2.938900;0.000000;,
|
|
-4.755300;1.545100;0.000000;,
|
|
-5.000000;0.000000;0.000000;,
|
|
4.755300;1.545100;0.000000;,
|
|
4.045100;2.938900;0.000000;,
|
|
2.938900;4.045100;0.000000;,
|
|
1.545100;4.755300;0.000000;,
|
|
0.000000;5.000000;0.000000;,
|
|
-1.545100;4.755300;0.000000;,
|
|
-2.938900;4.045100;0.000000;,
|
|
-4.045100;2.938900;0.000000;,
|
|
-4.755300;1.545100;0.000000;;
|
|
80;
|
|
3;0,1,2;,
|
|
3;3,0,2;,
|
|
3;4,3,2;,
|
|
3;5,4,2;,
|
|
3;6,5,2;,
|
|
3;7,6,2;,
|
|
3;8,7,2;,
|
|
3;9,8,2;,
|
|
3;10,9,2;,
|
|
3;11,10,2;,
|
|
3;12,13,14;,
|
|
3;15,13,12;,
|
|
3;16,13,15;,
|
|
3;17,13,16;,
|
|
3;18,13,17;,
|
|
3;19,13,18;,
|
|
3;20,13,19;,
|
|
3;21,13,20;,
|
|
3;22,13,21;,
|
|
3;23,13,22;,
|
|
3;24,25,26;,
|
|
3;27,24,26;,
|
|
3;28,27,26;,
|
|
3;29,28,26;,
|
|
3;30,29,26;,
|
|
3;31,30,26;,
|
|
3;32,31,26;,
|
|
3;33,32,26;,
|
|
3;34,33,26;,
|
|
3;35,34,26;,
|
|
3;36,13,23;,
|
|
3;37,13,36;,
|
|
3;38,13,37;,
|
|
3;39,13,38;,
|
|
3;40,13,39;,
|
|
3;41,13,40;,
|
|
3;42,13,41;,
|
|
3;43,13,42;,
|
|
3;44,13,43;,
|
|
3;14,13,44;,
|
|
3;2,1,0;,
|
|
3;2,0,3;,
|
|
3;2,3,4;,
|
|
3;2,4,5;,
|
|
3;2,5,6;,
|
|
3;2,6,7;,
|
|
3;2,7,8;,
|
|
3;2,8,9;,
|
|
3;2,9,10;,
|
|
3;2,10,11;,
|
|
3;14,13,12;,
|
|
3;12,13,15;,
|
|
3;15,13,16;,
|
|
3;16,13,17;,
|
|
3;17,13,18;,
|
|
3;18,13,19;,
|
|
3;19,13,20;,
|
|
3;20,13,21;,
|
|
3;21,13,22;,
|
|
3;22,13,23;,
|
|
3;26,25,24;,
|
|
3;26,24,27;,
|
|
3;26,27,28;,
|
|
3;26,28,29;,
|
|
3;26,29,30;,
|
|
3;26,30,31;,
|
|
3;26,31,32;,
|
|
3;26,32,33;,
|
|
3;26,33,34;,
|
|
3;26,34,35;,
|
|
3;23,13,36;,
|
|
3;36,13,37;,
|
|
3;37,13,38;,
|
|
3;38,13,39;,
|
|
3;39,13,40;,
|
|
3;40,13,41;,
|
|
3;41,13,42;,
|
|
3;42,13,43;,
|
|
3;43,13,44;,
|
|
3;44,13,14;;
|
|
|
|
MeshTextureCoords {
|
|
45;
|
|
0.143977;0.999996;,
|
|
0.131140;1.000000;,
|
|
0.393421;2.049122;,
|
|
0.181231;0.999992;,
|
|
0.239256;0.999989;,
|
|
0.312371;0.999987;,
|
|
0.393421;0.999986;,
|
|
0.474470;0.999987;,
|
|
0.547585;0.999989;,
|
|
0.605610;0.999992;,
|
|
0.642864;0.999996;,
|
|
0.655701;1.000000;,
|
|
0.143977;1.999996;,
|
|
0.393421;0.950878;,
|
|
0.131140;2.000000;,
|
|
0.181231;1.999992;,
|
|
0.239256;1.999989;,
|
|
0.312371;1.999987;,
|
|
0.393421;1.999986;,
|
|
0.474470;1.999987;,
|
|
0.547585;1.999989;,
|
|
0.605610;1.999992;,
|
|
0.642864;1.999996;,
|
|
0.655701;2.000000;,
|
|
0.642864;0.000004;,
|
|
0.655701;0.000000;,
|
|
0.393421;1.049122;,
|
|
0.605610;0.000008;,
|
|
0.547586;0.000011;,
|
|
0.474470;0.000013;,
|
|
0.393421;0.000014;,
|
|
0.312372;0.000013;,
|
|
0.239256;0.000011;,
|
|
0.181231;0.000008;,
|
|
0.143977;0.000004;,
|
|
0.131140;0.000000;,
|
|
0.642864;2.000004;,
|
|
0.605610;2.000008;,
|
|
0.547586;2.000011;,
|
|
0.474470;2.000013;,
|
|
0.393421;2.000014;,
|
|
0.312372;2.000013;,
|
|
0.239256;2.000011;,
|
|
0.181231;2.000008;,
|
|
0.143977;2.000004;;
|
|
}
|
|
|
|
MeshNormals {
|
|
45;
|
|
0.000000;0.000000;-0.000000;,
|
|
0.000000;0.000000;0.000000;,
|
|
0.000000;0.000000;0.000000;,
|
|
0.000000;0.000000;0.000000;,
|
|
0.000000;0.000000;0.000000;,
|
|
0.000000;0.000000;-0.000000;,
|
|
0.000000;0.000000;0.000000;,
|
|
0.000000;0.000000;-0.000000;,
|
|
0.000000;0.000000;0.000000;,
|
|
0.000000;0.000000;0.000000;,
|
|
-0.000000;0.000000;-0.000000;,
|
|
0.000000;0.000000;0.000000;,
|
|
0.000000;0.000000;0.000000;,
|
|
0.000000;-0.000000;0.000000;,
|
|
0.000000;0.000000;0.000000;,
|
|
0.000000;0.000000;0.000000;,
|
|
0.000000;0.000000;0.000000;,
|
|
0.000000;0.000000;0.000000;,
|
|
0.000000;0.000000;0.000000;,
|
|
0.000000;0.000000;0.000000;,
|
|
0.000000;0.000000;0.000000;,
|
|
-0.000000;0.000000;0.000000;,
|
|
-0.000000;0.000000;0.000000;,
|
|
0.000000;0.000000;0.000000;,
|
|
-0.000000;0.000000;-0.000000;,
|
|
0.000000;0.000000;0.000000;,
|
|
-0.000000;0.000000;0.000000;,
|
|
0.000000;0.000000;0.000000;,
|
|
0.000000;0.000000;0.000000;,
|
|
0.000000;-0.000000;-0.000000;,
|
|
0.000000;0.000000;0.000000;,
|
|
0.000000;-0.000000;-0.000000;,
|
|
0.000000;0.000000;0.000000;,
|
|
0.000000;0.000000;0.000000;,
|
|
0.000000;0.000000;-0.000000;,
|
|
0.000000;0.000000;0.000000;,
|
|
-0.000000;0.000000;0.000000;,
|
|
-0.000000;0.000000;0.000000;,
|
|
0.000000;-0.000000;0.000000;,
|
|
0.000000;-0.000000;0.000000;,
|
|
0.000000;0.000000;0.000000;,
|
|
0.000000;-0.000000;0.000000;,
|
|
0.000000;-0.000000;0.000000;,
|
|
0.000000;0.000000;0.000000;,
|
|
0.000000;0.000000;0.000000;;
|
|
80;
|
|
3;0,1,2;,
|
|
3;3,0,2;,
|
|
3;4,3,2;,
|
|
3;5,4,2;,
|
|
3;6,5,2;,
|
|
3;7,6,2;,
|
|
3;8,7,2;,
|
|
3;9,8,2;,
|
|
3;10,9,2;,
|
|
3;11,10,2;,
|
|
3;12,13,14;,
|
|
3;15,13,12;,
|
|
3;16,13,15;,
|
|
3;17,13,16;,
|
|
3;18,13,17;,
|
|
3;19,13,18;,
|
|
3;20,13,19;,
|
|
3;21,13,20;,
|
|
3;22,13,21;,
|
|
3;23,13,22;,
|
|
3;24,25,26;,
|
|
3;27,24,26;,
|
|
3;28,27,26;,
|
|
3;29,28,26;,
|
|
3;30,29,26;,
|
|
3;31,30,26;,
|
|
3;32,31,26;,
|
|
3;33,32,26;,
|
|
3;34,33,26;,
|
|
3;35,34,26;,
|
|
3;36,13,23;,
|
|
3;37,13,36;,
|
|
3;38,13,37;,
|
|
3;39,13,38;,
|
|
3;40,13,39;,
|
|
3;41,13,40;,
|
|
3;42,13,41;,
|
|
3;43,13,42;,
|
|
3;44,13,43;,
|
|
3;14,13,44;,
|
|
3;2,1,0;,
|
|
3;2,0,3;,
|
|
3;2,3,4;,
|
|
3;2,4,5;,
|
|
3;2,5,6;,
|
|
3;2,6,7;,
|
|
3;2,7,8;,
|
|
3;2,8,9;,
|
|
3;2,9,10;,
|
|
3;2,10,11;,
|
|
3;14,13,12;,
|
|
3;12,13,15;,
|
|
3;15,13,16;,
|
|
3;16,13,17;,
|
|
3;17,13,18;,
|
|
3;18,13,19;,
|
|
3;19,13,20;,
|
|
3;20,13,21;,
|
|
3;21,13,22;,
|
|
3;22,13,23;,
|
|
3;26,25,24;,
|
|
3;26,24,27;,
|
|
3;26,27,28;,
|
|
3;26,28,29;,
|
|
3;26,29,30;,
|
|
3;26,30,31;,
|
|
3;26,31,32;,
|
|
3;26,32,33;,
|
|
3;26,33,34;,
|
|
3;26,34,35;,
|
|
3;23,13,36;,
|
|
3;36,13,37;,
|
|
3;37,13,38;,
|
|
3;38,13,39;,
|
|
3;39,13,40;,
|
|
3;40,13,41;,
|
|
3;41,13,42;,
|
|
3;42,13,43;,
|
|
3;43,13,44;,
|
|
3;44,13,14;;
|
|
}
|
|
|
|
MeshMaterialList {
|
|
1;
|
|
80;
|
|
0,
|
|
0,
|
|
0,
|
|
0,
|
|
0,
|
|
0,
|
|
0,
|
|
0,
|
|
0,
|
|
0,
|
|
0,
|
|
0,
|
|
0,
|
|
0,
|
|
0,
|
|
0,
|
|
0,
|
|
0,
|
|
0,
|
|
0,
|
|
0,
|
|
0,
|
|
0,
|
|
0,
|
|
0,
|
|
0,
|
|
0,
|
|
0,
|
|
0,
|
|
0,
|
|
0,
|
|
0,
|
|
0,
|
|
0,
|
|
0,
|
|
0,
|
|
0,
|
|
0,
|
|
0,
|
|
0,
|
|
0,
|
|
0,
|
|
0,
|
|
0,
|
|
0,
|
|
0,
|
|
0,
|
|
0,
|
|
0,
|
|
0,
|
|
0,
|
|
0,
|
|
0,
|
|
0,
|
|
0,
|
|
0,
|
|
0,
|
|
0,
|
|
0,
|
|
0,
|
|
0,
|
|
0,
|
|
0,
|
|
0,
|
|
0,
|
|
0,
|
|
0,
|
|
0,
|
|
0,
|
|
0,
|
|
0,
|
|
0,
|
|
0,
|
|
0,
|
|
0,
|
|
0,
|
|
0,
|
|
0,
|
|
0,
|
|
0;
|
|
|
|
Material {
|
|
1.000000;1.000000;1.000000;1.000000;;
|
|
1.000000;
|
|
0.000000;0.000000;0.000000;;
|
|
0.700000;0.500000;1.000000;;
|
|
|
|
TextureFilename {
|
|
"electric_tsphere_scr_tex.png";
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
} |