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>
449 lines
9.8 KiB
Plaintext
449 lines
9.8 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 {
|
|
54;
|
|
-1.489500;-0.175000;2.719700;,
|
|
-1.489100;-0.175000;-4.000100;,
|
|
-1.489100;0.225000;-4.375100;,
|
|
-1.489100;0.875000;-4.375100;,
|
|
-1.489700;0.875000;3.624900;,
|
|
1.510900;0.875000;-4.374900;,
|
|
1.510900;0.225000;-4.374900;,
|
|
1.510900;-0.175000;-3.999900;,
|
|
1.510500;-0.175000;2.719800;,
|
|
1.510300;0.875000;3.625100;,
|
|
-1.489100;-0.175000;-4.000100;,
|
|
-1.489500;-0.175000;2.719700;,
|
|
-2.052100;-0.175000;2.719600;,
|
|
-2.051800;-0.175000;-3.625100;,
|
|
2.073200;-0.175000;-3.624900;,
|
|
2.072900;-0.175000;2.719800;,
|
|
1.510500;-0.175000;2.719800;,
|
|
1.510900;-0.175000;-3.999900;,
|
|
1.510700;0.225000;-0.874900;,
|
|
1.510600;0.225000;1.431200;,
|
|
-1.489400;0.225000;1.431100;,
|
|
-1.489300;0.225000;-0.875100;,
|
|
-1.460400;0.700000;-3.200000;,
|
|
-1.460400;0.450000;-3.200000;,
|
|
-1.460400;0.000000;-3.750000;,
|
|
-1.460400;0.000000;-4.000000;,
|
|
-1.460400;0.150000;-4.150000;,
|
|
-1.460400;0.700000;-4.150000;,
|
|
1.478700;0.700000;-3.200000;,
|
|
1.478700;0.700000;-4.150000;,
|
|
1.478700;0.150000;-4.150000;,
|
|
1.478700;0.000000;-4.000000;,
|
|
1.478700;0.000000;-3.750000;,
|
|
1.478700;0.450000;-3.200000;,
|
|
-1.460400;0.100000;-3.300000;,
|
|
-1.460400;0.400000;-3.000000;,
|
|
-1.460400;0.400000;-2.400000;,
|
|
-1.460400;0.000000;-2.400000;,
|
|
-1.460400;0.000000;-3.300000;,
|
|
1.478700;0.100000;-3.300000;,
|
|
1.478700;0.000000;-3.300000;,
|
|
1.478700;0.000000;-2.400000;,
|
|
1.478700;0.400000;-2.400000;,
|
|
1.478700;0.400000;-3.000000;,
|
|
-0.340200;0.200000;-0.600000;,
|
|
0.109800;0.200000;-0.050000;,
|
|
0.109800;0.200000;0.250000;,
|
|
-0.040200;0.200000;0.400000;,
|
|
-0.190200;0.200000;0.400000;,
|
|
-0.340200;0.200000;0.250000;,
|
|
0.259800;0.200000;-0.200000;,
|
|
-0.190200;0.200000;-0.750000;,
|
|
0.109800;0.200000;-0.750000;,
|
|
0.259800;0.200000;-0.600000;;
|
|
34;
|
|
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,16;,
|
|
3;14,16,17;,
|
|
3;18,19,20;,
|
|
3;18,20,21;,
|
|
3;22,23,24;,
|
|
3;22,24,25;,
|
|
3;22,25,26;,
|
|
3;22,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;39,40,41;,
|
|
3;39,41,42;,
|
|
3;39,42,43;,
|
|
3;44,45,46;,
|
|
3;44,46,47;,
|
|
3;44,47,48;,
|
|
3;44,48,49;,
|
|
3;50,45,44;,
|
|
3;50,44,51;,
|
|
3;50,51,52;,
|
|
3;50,52,53;;
|
|
|
|
MeshTextureCoords {
|
|
54;
|
|
0.003024;0.359740;,
|
|
0.003024;2.711253;,
|
|
0.150333;2.842481;,
|
|
0.389710;2.842481;,
|
|
0.389710;0.042950;,
|
|
0.389710;2.842446;,
|
|
0.150333;2.842446;,
|
|
0.003024;2.711218;,
|
|
0.003024;0.359700;,
|
|
0.389710;0.042910;,
|
|
1.005180;0.006438;,
|
|
0.000116;0.006653;,
|
|
0.000124;0.306103;,
|
|
0.949099;0.305957;,
|
|
1.948910;0.300911;,
|
|
0.999935;0.300764;,
|
|
0.999943;0.001446;,
|
|
2.005010;0.001661;,
|
|
0.698792;0.952799;,
|
|
1.230050;1.398640;,
|
|
0.650092;2.089760;,
|
|
0.118833;1.643921;,
|
|
0.305536;0.424477;,
|
|
0.200010;0.424477;,
|
|
0.010063;0.656635;,
|
|
0.010063;0.762161;,
|
|
0.073379;0.825476;,
|
|
0.305536;0.825477;,
|
|
0.305536;0.424477;,
|
|
0.305536;0.825477;,
|
|
0.073379;0.825476;,
|
|
0.010063;0.762161;,
|
|
0.010063;0.656635;,
|
|
0.200010;0.424477;,
|
|
0.052274;0.466687;,
|
|
0.178905;0.340056;,
|
|
0.178905;0.086793;,
|
|
0.010063;0.086793;,
|
|
0.010063;0.466687;,
|
|
0.052274;0.466687;,
|
|
0.010063;0.466687;,
|
|
0.010063;0.086793;,
|
|
0.178905;0.086793;,
|
|
0.178905;0.340056;,
|
|
0.246745;0.490192;,
|
|
0.064489;0.712950;,
|
|
0.064489;0.834454;,
|
|
0.125241;0.895206;,
|
|
0.185993;0.895206;,
|
|
0.246745;0.834454;,
|
|
0.003737;0.652198;,
|
|
0.185993;0.429440;,
|
|
0.064489;0.429440;,
|
|
0.003737;0.490192;;
|
|
}
|
|
|
|
MeshNormals {
|
|
54;
|
|
1.000000;0.000061;0.000064;,
|
|
1.000000;0.000056;0.000060;,
|
|
1.000000;0.000028;0.000058;,
|
|
1.000000;0.000063;0.000066;,
|
|
1.000000;0.000126;0.000075;,
|
|
-1.000000;-0.000049;-0.000045;,
|
|
-1.000000;0.000000;0.000000;,
|
|
-1.000000;-0.000011;-0.000030;,
|
|
-1.000000;-0.000073;-0.000067;,
|
|
-1.000000;-0.000126;-0.000075;,
|
|
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.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;,
|
|
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.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.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.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;-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.000000;-1.000000;0.000000;,
|
|
0.000000;-1.000000;0.000000;,
|
|
0.000000;-1.000000;0.000000;,
|
|
0.000000;-1.000000;0.000000;;
|
|
34;
|
|
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,16;,
|
|
3;14,16,17;,
|
|
3;18,19,20;,
|
|
3;18,20,21;,
|
|
3;22,23,24;,
|
|
3;22,24,25;,
|
|
3;22,25,26;,
|
|
3;22,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;39,40,41;,
|
|
3;39,41,42;,
|
|
3;39,42,43;,
|
|
3;44,45,46;,
|
|
3;44,46,47;,
|
|
3;44,47,48;,
|
|
3;44,48,49;,
|
|
3;50,45,44;,
|
|
3;50,44,51;,
|
|
3;50,51,52;,
|
|
3;50,52,53;;
|
|
}
|
|
|
|
MeshMaterialList {
|
|
5;
|
|
34;
|
|
0,
|
|
0,
|
|
0,
|
|
0,
|
|
0,
|
|
0,
|
|
1,
|
|
1,
|
|
1,
|
|
1,
|
|
2,
|
|
2,
|
|
3,
|
|
3,
|
|
3,
|
|
3,
|
|
3,
|
|
3,
|
|
3,
|
|
3,
|
|
3,
|
|
3,
|
|
3,
|
|
3,
|
|
3,
|
|
3,
|
|
4,
|
|
4,
|
|
4,
|
|
4,
|
|
4,
|
|
4,
|
|
4,
|
|
4;
|
|
|
|
Material {
|
|
0.849000;0.485841;0.000000;1.000000;;
|
|
1.000000;
|
|
0.000000;0.000000;0.000000;;
|
|
0.000000;0.000000;0.000000;;
|
|
|
|
TextureFilename {
|
|
"vtv5_tex.png";
|
|
}
|
|
}
|
|
|
|
Material {
|
|
0.428600;0.346789;0.428600;1.000000;;
|
|
1.000000;
|
|
0.000000;0.000000;0.000000;;
|
|
0.000000;0.000000;0.000000;;
|
|
|
|
TextureFilename {
|
|
"vrsun8_tex.png";
|
|
}
|
|
}
|
|
|
|
Material {
|
|
0.849000;0.485841;0.000000;1.000000;;
|
|
1.000000;
|
|
0.000000;0.000000;0.000000;;
|
|
0.000000;0.000000;0.000000;;
|
|
|
|
TextureFilename {
|
|
"genC4_tex.png";
|
|
}
|
|
}
|
|
|
|
Material {
|
|
0.171400;0.110284;0.171400;1.000000;;
|
|
1.000000;
|
|
0.000000;0.000000;0.000000;;
|
|
0.000000;0.000000;0.000000;;
|
|
|
|
TextureFilename {
|
|
"vtv2_tex.png";
|
|
}
|
|
}
|
|
|
|
Material {
|
|
0.338800;0.258481;0.338800;1.000000;;
|
|
1.000000;
|
|
0.000000;0.000000;0.000000;;
|
|
0.000000;0.000000;0.000000;;
|
|
|
|
TextureFilename {
|
|
"vtv1_tex.png";
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
} |