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>
459 lines
9.7 KiB
Plaintext
459 lines
9.7 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 {
|
|
40;
|
|
-0.400000;-5.600000;1.700000;,
|
|
-0.400000;-4.700000;1.700000;,
|
|
-0.400000;-4.700000;0.400000;,
|
|
-0.400000;-5.000000;0.000000;,
|
|
-0.400000;-5.600000;0.000000;,
|
|
0.400000;-5.600000;0.000000;,
|
|
0.400000;-5.000000;0.000000;,
|
|
0.400000;-4.700000;0.400000;,
|
|
0.400000;-4.700000;1.700000;,
|
|
0.400000;-5.600000;1.700000;,
|
|
-0.125000;-5.400000;0.000000;,
|
|
-0.125000;-5.200000;0.000000;,
|
|
-0.400000;-4.900000;-0.700000;,
|
|
-0.400000;-5.700000;-0.700000;,
|
|
0.125000;-5.400000;0.000000;,
|
|
0.125000;-5.200000;0.000000;,
|
|
0.400000;-5.700000;-0.700000;,
|
|
0.400000;-4.900000;-0.700000;,
|
|
-0.101600;-4.700000;0.500000;,
|
|
-0.101000;-4.499900;0.200000;,
|
|
0.099000;-4.499900;0.200000;,
|
|
0.098400;-4.700000;0.500000;,
|
|
-0.101000;-4.500100;1.800000;,
|
|
-0.101600;-4.700000;1.500000;,
|
|
0.098400;-4.700000;1.500000;,
|
|
0.099000;-4.500100;1.800000;,
|
|
-0.100100;-4.000100;1.800000;,
|
|
0.099900;-4.000100;1.800000;,
|
|
-0.099500;-3.800000;1.500000;,
|
|
0.100500;-3.800000;1.500000;,
|
|
-0.099500;-3.800000;1.200000;,
|
|
0.100500;-3.800000;1.200000;,
|
|
-0.100100;-4.000000;1.000000;,
|
|
0.099900;-4.000000;1.000000;,
|
|
-0.099500;-3.800000;0.800000;,
|
|
0.100500;-3.800000;0.800000;,
|
|
-0.099500;-3.800000;0.500000;,
|
|
0.100500;-3.800000;0.500000;,
|
|
-0.100100;-3.999900;0.200000;,
|
|
0.099900;-3.999900;0.200000;;
|
|
66;
|
|
3;0,1,2;,
|
|
3;0,2,3;,
|
|
3;0,3,4;,
|
|
3;5,6,7;,
|
|
3;5,7,8;,
|
|
3;5,8,9;,
|
|
3;10,11,12;,
|
|
3;10,12,13;,
|
|
3;14,15,11;,
|
|
3;14,11,10;,
|
|
3;16,17,15;,
|
|
3;16,15,14;,
|
|
3;13,12,17;,
|
|
3;13,17,16;,
|
|
3;12,11,15;,
|
|
3;12,15,17;,
|
|
3;13,16,14;,
|
|
3;13,14,10;,
|
|
3;2,7,6;,
|
|
3;2,6,3;,
|
|
3;9,8,1;,
|
|
3;9,1,0;,
|
|
3;4,3,6;,
|
|
3;4,6,5;,
|
|
3;2,1,8;,
|
|
3;2,8,7;,
|
|
3;4,5,9;,
|
|
3;4,9,0;,
|
|
3;18,19,20;,
|
|
3;18,20,21;,
|
|
3;22,23,24;,
|
|
3;22,24,25;,
|
|
3;26,22,25;,
|
|
3;26,25,27;,
|
|
3;28,26,27;,
|
|
3;28,27,29;,
|
|
3;30,28,29;,
|
|
3;30,29,31;,
|
|
3;32,30,31;,
|
|
3;32,31,33;,
|
|
3;34,32,33;,
|
|
3;34,33,35;,
|
|
3;36,34,35;,
|
|
3;36,35,37;,
|
|
3;38,36,37;,
|
|
3;38,37,39;,
|
|
3;19,38,39;,
|
|
3;19,39,20;,
|
|
3;19,18,38;,
|
|
3;38,18,36;,
|
|
3;36,18,34;,
|
|
3;34,18,32;,
|
|
3;18,23,32;,
|
|
3;23,22,32;,
|
|
3;22,26,32;,
|
|
3;26,28,32;,
|
|
3;28,30,32;,
|
|
3;20,39,21;,
|
|
3;39,37,21;,
|
|
3;37,35,21;,
|
|
3;35,33,21;,
|
|
3;21,33,24;,
|
|
3;24,33,25;,
|
|
3;25,33,27;,
|
|
3;27,33,29;,
|
|
3;33,31,29;;
|
|
|
|
MeshTextureCoords {
|
|
40;
|
|
-431602080.000000;-431602080.000000;,
|
|
-431602080.000000;-431602080.000000;,
|
|
-431602080.000000;-431602080.000000;,
|
|
-431602080.000000;-431602080.000000;,
|
|
-431602080.000000;-431602080.000000;,
|
|
-431602080.000000;-431602080.000000;,
|
|
-431602080.000000;-431602080.000000;,
|
|
-431602080.000000;-431602080.000000;,
|
|
-431602080.000000;-431602080.000000;,
|
|
-431602080.000000;-431602080.000000;,
|
|
-431602080.000000;-431602080.000000;,
|
|
-431602080.000000;-431602080.000000;,
|
|
-431602080.000000;-431602080.000000;,
|
|
-431602080.000000;-431602080.000000;,
|
|
-431602080.000000;-431602080.000000;,
|
|
-431602080.000000;-431602080.000000;,
|
|
-431602080.000000;-431602080.000000;,
|
|
-431602080.000000;-431602080.000000;,
|
|
-431602080.000000;-431602080.000000;,
|
|
-431602080.000000;-431602080.000000;,
|
|
-431602080.000000;-431602080.000000;,
|
|
-431602080.000000;-431602080.000000;,
|
|
-431602080.000000;-431602080.000000;,
|
|
-431602080.000000;-431602080.000000;,
|
|
-431602080.000000;-431602080.000000;,
|
|
-431602080.000000;-431602080.000000;,
|
|
-431602080.000000;-431602080.000000;,
|
|
-431602080.000000;-431602080.000000;,
|
|
-431602080.000000;-431602080.000000;,
|
|
-431602080.000000;-431602080.000000;,
|
|
-431602080.000000;-431602080.000000;,
|
|
-431602080.000000;-431602080.000000;,
|
|
-431602080.000000;-431602080.000000;,
|
|
-431602080.000000;-431602080.000000;,
|
|
-431602080.000000;-431602080.000000;,
|
|
-431602080.000000;-431602080.000000;,
|
|
-431602080.000000;-431602080.000000;,
|
|
-431602080.000000;-431602080.000000;,
|
|
-431602080.000000;-431602080.000000;,
|
|
-431602080.000000;-431602080.000000;;
|
|
}
|
|
|
|
MeshNormals {
|
|
40;
|
|
-0.600000;-0.200000;0.200000;,
|
|
-0.250000;0.250000;0.500000;,
|
|
-0.333333;0.600000;-0.200000;,
|
|
-0.500000;0.200000;-0.400000;,
|
|
-0.200000;-0.400000;-0.400000;,
|
|
0.600000;-0.200000;-0.200000;,
|
|
0.200000;0.320000;-0.640000;,
|
|
0.500000;0.450000;-0.150000;,
|
|
0.400000;0.400000;0.200000;,
|
|
0.200000;-0.400000;0.400000;,
|
|
-0.465376;-0.229786;0.531306;,
|
|
-0.232688;0.229786;0.689893;,
|
|
-0.372301;0.367658;0.103829;,
|
|
-0.186150;-0.367658;-0.169302;,
|
|
0.186150;-0.367658;0.630698;,
|
|
0.372301;0.367658;0.503829;,
|
|
0.465376;-0.229786;0.031306;,
|
|
0.232688;0.229786;-0.310107;,
|
|
-0.714284;-0.236105;-0.158663;,
|
|
-0.250000;-0.207531;-0.638923;,
|
|
0.250000;-0.416411;-0.527246;,
|
|
0.833331;-0.140505;-0.092340;,
|
|
-0.399999;-0.332028;0.421881;,
|
|
-0.666665;-0.275872;0.184965;,
|
|
0.499999;-0.417230;0.277157;,
|
|
0.399999;-0.167280;0.510824;,
|
|
-0.399999;0.167344;0.510979;,
|
|
0.399999;0.331809;0.421957;,
|
|
-0.399998;0.533969;0.221957;,
|
|
0.399998;0.565185;0.110978;,
|
|
-0.249999;0.677527;-0.176777;,
|
|
0.249999;0.602803;-0.353553;,
|
|
-0.666665;0.237354;-0.078580;,
|
|
0.666665;0.234051;0.078580;,
|
|
-0.399999;0.483809;0.282743;,
|
|
0.399999;0.540455;0.141521;,
|
|
-0.399999;0.567369;-0.110813;,
|
|
0.399999;0.531938;-0.221892;,
|
|
-0.399999;0.333698;-0.421874;,
|
|
0.399999;0.165609;-0.510831;;
|
|
66;
|
|
3;0,1,2;,
|
|
3;0,2,3;,
|
|
3;0,3,4;,
|
|
3;5,6,7;,
|
|
3;5,7,8;,
|
|
3;5,8,9;,
|
|
3;10,11,12;,
|
|
3;10,12,13;,
|
|
3;14,15,11;,
|
|
3;14,11,10;,
|
|
3;16,17,15;,
|
|
3;16,15,14;,
|
|
3;13,12,17;,
|
|
3;13,17,16;,
|
|
3;12,11,15;,
|
|
3;12,15,17;,
|
|
3;13,16,14;,
|
|
3;13,14,10;,
|
|
3;2,7,6;,
|
|
3;2,6,3;,
|
|
3;9,8,1;,
|
|
3;9,1,0;,
|
|
3;4,3,6;,
|
|
3;4,6,5;,
|
|
3;2,1,8;,
|
|
3;2,8,7;,
|
|
3;4,5,9;,
|
|
3;4,9,0;,
|
|
3;18,19,20;,
|
|
3;18,20,21;,
|
|
3;22,23,24;,
|
|
3;22,24,25;,
|
|
3;26,22,25;,
|
|
3;26,25,27;,
|
|
3;28,26,27;,
|
|
3;28,27,29;,
|
|
3;30,28,29;,
|
|
3;30,29,31;,
|
|
3;32,30,31;,
|
|
3;32,31,33;,
|
|
3;34,32,33;,
|
|
3;34,33,35;,
|
|
3;36,34,35;,
|
|
3;36,35,37;,
|
|
3;38,36,37;,
|
|
3;38,37,39;,
|
|
3;19,38,39;,
|
|
3;19,39,20;,
|
|
3;19,18,38;,
|
|
3;38,18,36;,
|
|
3;36,18,34;,
|
|
3;34,18,32;,
|
|
3;18,23,32;,
|
|
3;23,22,32;,
|
|
3;22,26,32;,
|
|
3;26,28,32;,
|
|
3;28,30,32;,
|
|
3;20,39,21;,
|
|
3;39,37,21;,
|
|
3;37,35,21;,
|
|
3;35,33,21;,
|
|
3;21,33,24;,
|
|
3;24,33,25;,
|
|
3;25,33,27;,
|
|
3;27,33,29;,
|
|
3;33,31,29;;
|
|
}
|
|
|
|
MeshMaterialList {
|
|
1;
|
|
66;
|
|
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 {
|
|
0.000000;0.157982;1.000000;1.000000;;
|
|
1.000000;
|
|
0.000000;0.000000;0.000000;;
|
|
0.000000;0.400000;0.990000;;
|
|
|
|
TextureFilename {
|
|
"NULL.png";
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
} |