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>
491 lines
11 KiB
Plaintext
491 lines
11 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 {
|
|
60;
|
|
1.000000;-0.749100;-0.467000;,
|
|
0.750000;-0.999100;-0.450400;,
|
|
0.000000;-0.999100;-0.450400;,
|
|
0.000000;-0.249100;-0.500400;,
|
|
1.000000;-0.249100;-0.500400;,
|
|
0.750000;-0.999100;0.449600;,
|
|
1.000000;-0.749100;0.466300;,
|
|
1.000000;-0.249100;0.499600;,
|
|
0.000000;-0.249100;0.499600;,
|
|
0.000000;-0.999100;0.449600;,
|
|
0.000000;-0.249100;-0.950400;,
|
|
0.000000;-0.249100;0.999600;,
|
|
0.000000;0.250900;0.499600;,
|
|
0.000000;0.250900;-0.500400;,
|
|
1.000000;-0.249100;-0.400400;,
|
|
1.000000;-0.749100;-0.433700;,
|
|
1.000000;-0.249100;0.399600;,
|
|
1.000000;-0.749100;0.433000;,
|
|
0.000000;-0.999100;-0.450400;,
|
|
0.750000;-0.999100;-0.450400;,
|
|
1.000000;-0.749100;-0.433700;,
|
|
1.000000;-0.249100;-0.400400;,
|
|
0.000000;-0.300700;-0.403800;,
|
|
1.000000;-0.749100;0.433000;,
|
|
0.750000;-0.999100;0.449600;,
|
|
0.000000;-0.999100;0.449600;,
|
|
0.000000;-0.300700;0.403100;,
|
|
1.000000;-0.249100;0.399600;,
|
|
0.600200;-0.049200;0.499600;,
|
|
0.600200;-0.049200;-0.350400;,
|
|
0.500200;0.000800;-0.350400;,
|
|
0.500200;0.000800;0.499600;,
|
|
0.350200;0.075800;0.499600;,
|
|
0.350200;0.075800;-0.350400;,
|
|
0.250200;0.125800;-0.350400;,
|
|
0.250200;0.125800;0.499600;,
|
|
1.000000;-0.249100;0.499600;,
|
|
1.000000;-0.249100;-0.500400;,
|
|
0.750200;-0.124200;-0.350400;,
|
|
0.750200;-0.124200;0.499600;,
|
|
0.000000;0.250900;-0.500400;,
|
|
0.100200;0.200800;-0.350400;,
|
|
0.000000;0.250900;0.499600;,
|
|
0.100200;0.200800;0.499600;,
|
|
0.000000;0.250900;0.499600;,
|
|
0.000000;-0.249100;0.999600;,
|
|
1.000000;-0.249100;0.499600;,
|
|
0.000000;-0.249100;-0.950400;,
|
|
0.750200;-0.124200;0.499600;,
|
|
0.750200;-0.124200;-0.350400;,
|
|
0.600200;-0.049200;-0.350400;,
|
|
0.600200;-0.049200;0.499600;,
|
|
0.250200;0.125800;0.499600;,
|
|
0.250200;0.125800;-0.350400;,
|
|
0.100200;0.200800;-0.350400;,
|
|
0.100200;0.200800;0.499600;,
|
|
0.500200;0.000800;0.499600;,
|
|
0.500200;0.000800;-0.350400;,
|
|
0.350200;0.075800;-0.350400;,
|
|
0.350200;0.075800;0.499600;;
|
|
42;
|
|
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,4,7;,
|
|
3;10,7,11;,
|
|
3;10,11,12;,
|
|
3;10,12,13;,
|
|
3;4,14,15;,
|
|
3;4,15,0;,
|
|
3;16,7,6;,
|
|
3;16,6,17;,
|
|
3;0,15,1;,
|
|
3;17,6,5;,
|
|
3;18,19,20;,
|
|
3;18,20,21;,
|
|
3;18,21,22;,
|
|
3;23,24,25;,
|
|
3;23,25,26;,
|
|
3;23,26,27;,
|
|
3;22,21,27;,
|
|
3;22,27,26;,
|
|
3;28,29,30;,
|
|
3;28,30,31;,
|
|
3;32,33,34;,
|
|
3;32,34,35;,
|
|
3;36,37,38;,
|
|
3;36,38,39;,
|
|
3;38,37,40;,
|
|
3;38,40,41;,
|
|
3;41,40,42;,
|
|
3;41,42,43;,
|
|
3;44,45,46;,
|
|
3;40,37,47;,
|
|
3;48,49,50;,
|
|
3;48,50,51;,
|
|
3;52,53,54;,
|
|
3;52,54,55;,
|
|
3;56,57,58;,
|
|
3;56,58,59;;
|
|
|
|
MeshTextureCoords {
|
|
60;
|
|
0.104692;0.807841;,
|
|
0.189536;0.892685;,
|
|
0.444069;0.892685;,
|
|
0.444069;0.638152;,
|
|
0.104692;0.638152;,
|
|
0.189536;0.892685;,
|
|
0.104692;0.807841;,
|
|
0.104692;0.638152;,
|
|
0.444069;0.638152;,
|
|
0.444069;0.892685;,
|
|
0.444069;0.638152;,
|
|
0.444069;0.638152;,
|
|
0.444069;0.468463;,
|
|
0.444069;0.468463;,
|
|
0.104692;0.638152;,
|
|
0.104692;0.807841;,
|
|
0.104692;0.638152;,
|
|
0.104692;0.807841;,
|
|
0.356251;0.762427;,
|
|
0.448314;0.762427;,
|
|
0.479002;0.767669;,
|
|
0.479002;0.778154;,
|
|
0.356251;0.777073;,
|
|
0.479002;0.873470;,
|
|
0.448314;0.872297;,
|
|
0.356251;0.872297;,
|
|
0.356251;0.875575;,
|
|
0.479002;0.875817;,
|
|
0.273630;0.208280;,
|
|
0.273630;0.715745;,
|
|
0.310667;0.715745;,
|
|
0.310667;0.208280;,
|
|
0.366222;0.208280;,
|
|
0.366222;0.715745;,
|
|
0.403258;0.715745;,
|
|
0.403258;0.208280;,
|
|
0.125555;0.208280;,
|
|
0.125555;0.805298;,
|
|
0.218075;0.715745;,
|
|
0.218075;0.208280;,
|
|
0.495922;0.805298;,
|
|
0.458814;0.715745;,
|
|
0.495922;0.208280;,
|
|
0.458814;0.208280;,
|
|
0.495922;1.208280;,
|
|
0.495922;0.909770;,
|
|
0.125555;1.208280;,
|
|
0.495922;1.073960;,
|
|
0.313997;0.904800;,
|
|
0.313997;1.946019;,
|
|
0.218928;1.946019;,
|
|
0.218928;0.904800;,
|
|
0.314780;0.904800;,
|
|
0.314780;1.946019;,
|
|
0.219711;1.946019;,
|
|
0.219711;0.904800;,
|
|
0.202054;0.072251;,
|
|
0.202054;0.915905;,
|
|
0.061023;0.915905;,
|
|
0.061023;0.072251;;
|
|
}
|
|
|
|
MeshNormals {
|
|
60;
|
|
0.341435;-0.181306;-0.598673;,
|
|
0.353553;-0.386680;-0.498901;,
|
|
0.000033;-0.066387;-0.997794;,
|
|
0.000033;-0.066585;-0.997781;,
|
|
0.500000;-0.266663;-0.249444;,
|
|
0.176727;-0.226649;0.748340;,
|
|
0.676727;-0.193390;0.249447;,
|
|
0.199960;-0.426594;0.399115;,
|
|
0.000000;-0.066519;0.997785;,
|
|
0.000000;-0.066519;0.997785;,
|
|
-0.500000;-0.500000;0.000000;,
|
|
-0.500000;-0.500000;0.000000;,
|
|
-1.000000;0.000000;0.000000;,
|
|
-1.000000;0.000000;0.000000;,
|
|
1.000000;0.000000;0.000000;,
|
|
0.902369;-0.235702;0.000000;,
|
|
1.000000;0.000000;0.000000;,
|
|
0.853553;-0.353553;0.000000;,
|
|
-0.000002;-0.066560;0.997782;,
|
|
0.000000;-0.066651;0.997776;,
|
|
-0.000025;-0.066552;0.997783;,
|
|
0.017175;-0.377233;0.665190;,
|
|
0.034369;-0.687973;0.332594;,
|
|
-0.000003;-0.066446;-0.997790;,
|
|
0.000000;-0.066254;-0.997803;,
|
|
0.000023;-0.066344;-0.997797;,
|
|
0.017175;-0.377252;-0.665189;,
|
|
0.034337;-0.687998;-0.332592;,
|
|
0.447214;0.894427;0.000000;,
|
|
0.447214;0.894427;0.000000;,
|
|
0.447214;0.894427;0.000000;,
|
|
0.447214;0.894427;0.000000;,
|
|
0.447214;0.894427;0.000000;,
|
|
0.447214;0.894427;0.000000;,
|
|
0.447214;0.894427;0.000000;,
|
|
0.447214;0.894427;0.000000;,
|
|
0.447214;0.894427;0.000000;,
|
|
0.403878;0.807757;-0.234969;,
|
|
0.447214;0.894427;0.000000;,
|
|
0.447214;0.894427;0.000000;,
|
|
0.414712;0.829425;-0.176227;,
|
|
0.447214;0.894427;-0.000000;,
|
|
0.447214;0.894427;0.000000;,
|
|
0.447214;0.894427;0.000000;,
|
|
0.333333;0.666667;0.666667;,
|
|
0.333333;0.666667;0.666667;,
|
|
0.333333;0.666667;0.666667;,
|
|
0.317208;0.634417;-0.704907;,
|
|
0.447214;0.894427;0.000000;,
|
|
0.447214;0.894427;0.000000;,
|
|
0.447214;0.894427;0.000000;,
|
|
0.447214;0.894427;0.000000;,
|
|
0.447214;0.894427;0.000000;,
|
|
0.447214;0.894427;0.000000;,
|
|
0.447214;0.894427;0.000000;,
|
|
0.447214;0.894427;0.000000;,
|
|
0.447214;0.894427;0.000000;,
|
|
0.447214;0.894427;0.000000;,
|
|
0.447214;0.894427;0.000000;,
|
|
0.447214;0.894427;0.000000;;
|
|
42;
|
|
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,4,7;,
|
|
3;10,7,11;,
|
|
3;10,11,12;,
|
|
3;10,12,13;,
|
|
3;4,14,15;,
|
|
3;4,15,0;,
|
|
3;16,7,6;,
|
|
3;16,6,17;,
|
|
3;0,15,1;,
|
|
3;17,6,5;,
|
|
3;18,19,20;,
|
|
3;18,20,21;,
|
|
3;18,21,22;,
|
|
3;23,24,25;,
|
|
3;23,25,26;,
|
|
3;23,26,27;,
|
|
3;22,21,27;,
|
|
3;22,27,26;,
|
|
3;28,29,30;,
|
|
3;28,30,31;,
|
|
3;32,33,34;,
|
|
3;32,34,35;,
|
|
3;36,37,38;,
|
|
3;36,38,39;,
|
|
3;38,37,40;,
|
|
3;38,40,41;,
|
|
3;41,40,42;,
|
|
3;41,42,43;,
|
|
3;44,45,46;,
|
|
3;40,37,47;,
|
|
3;48,49,50;,
|
|
3;48,50,51;,
|
|
3;52,53,54;,
|
|
3;52,54,55;,
|
|
3;56,57,58;,
|
|
3;56,58,59;;
|
|
}
|
|
|
|
MeshMaterialList {
|
|
5;
|
|
42;
|
|
0,
|
|
0,
|
|
0,
|
|
0,
|
|
0,
|
|
0,
|
|
0,
|
|
0,
|
|
0,
|
|
0,
|
|
0,
|
|
0,
|
|
0,
|
|
0,
|
|
0,
|
|
0,
|
|
1,
|
|
1,
|
|
1,
|
|
1,
|
|
1,
|
|
1,
|
|
1,
|
|
1,
|
|
2,
|
|
2,
|
|
2,
|
|
2,
|
|
2,
|
|
2,
|
|
2,
|
|
2,
|
|
2,
|
|
2,
|
|
2,
|
|
2,
|
|
3,
|
|
3,
|
|
3,
|
|
3,
|
|
4,
|
|
4;
|
|
|
|
Material {
|
|
0.171400;0.110284;0.171400;1.000000;;
|
|
1.000000;
|
|
0.000000;0.000000;0.000000;;
|
|
0.000000;0.000000;0.000000;;
|
|
|
|
TextureFilename {
|
|
"vtv6_tex.png";
|
|
}
|
|
}
|
|
|
|
Material {
|
|
1.000000;0.091022;0.000000;1.000000;;
|
|
1.000000;
|
|
0.000000;0.000000;0.000000;;
|
|
1.000000;0.400000;0.100000;;
|
|
|
|
TextureFilename {
|
|
"vtv1_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.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";
|
|
}
|
|
}
|
|
|
|
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";
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
} |