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>
462 lines
10 KiB
Plaintext
462 lines
10 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 {
|
|
64;
|
|
-2.897800;-0.150000;-1.076500;,
|
|
-2.842100;0.518500;-0.692700;,
|
|
-1.899200;0.895700;-0.440000;,
|
|
-1.397800;0.450000;-0.674500;,
|
|
1.397800;0.450000;-0.674500;,
|
|
1.899200;0.895700;-0.440000;,
|
|
2.842100;0.518500;-0.692700;,
|
|
2.897800;-0.150000;-1.076500;,
|
|
-1.397800;0.450000;-0.674500;,
|
|
-1.899200;0.895700;-0.440000;,
|
|
-1.899200;0.895700;0.890000;,
|
|
-1.397800;0.450000;1.124500;,
|
|
1.397800;0.450000;1.124500;,
|
|
1.899200;0.895700;0.890000;,
|
|
1.899200;0.895700;-0.440000;,
|
|
1.397800;0.450000;-0.674500;,
|
|
-1.023200;0.450000;-1.323200;,
|
|
-1.250700;0.533600;-1.319200;,
|
|
-1.508000;0.533600;-0.873600;,
|
|
-1.397800;0.450000;-0.674500;,
|
|
-2.121300;-0.150000;-2.421300;,
|
|
-2.144900;0.045000;-2.213400;,
|
|
-1.250700;0.533600;-1.319200;,
|
|
-1.023200;0.450000;-1.323200;,
|
|
1.397800;0.450000;-0.674500;,
|
|
1.508000;0.533600;-0.873600;,
|
|
1.250700;0.533600;-1.319200;,
|
|
1.023200;0.450000;-1.323200;,
|
|
1.023200;0.450000;-1.323200;,
|
|
1.250700;0.533600;-1.319200;,
|
|
2.144900;0.045000;-2.213400;,
|
|
2.121300;-0.150000;-2.421300;,
|
|
-0.776500;-0.150000;-3.197800;,
|
|
-0.986700;0.045000;-2.979900;,
|
|
-1.156800;0.458400;-1.688300;,
|
|
1.156800;0.458400;-1.688300;,
|
|
0.986700;0.045000;-2.979900;,
|
|
0.776500;-0.150000;-3.197800;,
|
|
1.042400;0.200000;1.755300;,
|
|
1.042600;0.200100;-1.799100;,
|
|
-1.042600;0.200100;-1.799100;,
|
|
-1.042400;0.200000;1.755300;,
|
|
-1.397800;0.450000;1.124500;,
|
|
-1.042400;0.200000;1.755300;,
|
|
-1.042600;0.200100;-1.799100;,
|
|
-1.397800;0.450000;-0.674500;,
|
|
1.397800;0.450000;1.124500;,
|
|
1.397800;0.450000;-0.674500;,
|
|
1.042600;0.200100;-1.799100;,
|
|
1.042400;0.200000;1.755300;,
|
|
-1.913300;0.045000;-2.444900;,
|
|
-1.156800;0.458400;-1.688300;,
|
|
-0.986700;0.045000;-2.979900;,
|
|
0.986700;0.045000;-2.979900;,
|
|
1.156800;0.458400;-1.688300;,
|
|
1.913300;0.045000;-2.444900;,
|
|
-2.729500;0.045000;-1.200900;,
|
|
-1.508000;0.533600;-0.873600;,
|
|
-1.250700;0.533600;-1.319200;,
|
|
-2.144900;0.045000;-2.213400;,
|
|
2.144900;0.045000;-2.213400;,
|
|
1.250700;0.533600;-1.319200;,
|
|
1.508000;0.533600;-0.873600;,
|
|
2.729500;0.045000;-1.200900;;
|
|
32;
|
|
3;0,1,2;,
|
|
3;0,2,3;,
|
|
3;4,5,6;,
|
|
3;4,6,7;,
|
|
3;8,9,10;,
|
|
3;8,10,11;,
|
|
3;12,13,14;,
|
|
3;12,14,15;,
|
|
3;16,17,18;,
|
|
3;16,18,19;,
|
|
3;20,21,22;,
|
|
3;20,22,23;,
|
|
3;24,25,26;,
|
|
3;24,26,27;,
|
|
3;28,29,30;,
|
|
3;28,30,31;,
|
|
3;32,33,34;,
|
|
3;32,34,16;,
|
|
3;27,35,36;,
|
|
3;27,36,37;,
|
|
3;38,39,40;,
|
|
3;38,40,41;,
|
|
3;42,43,44;,
|
|
3;42,44,45;,
|
|
3;46,47,48;,
|
|
3;46,48,49;,
|
|
3;50,51,52;,
|
|
3;53,54,55;,
|
|
3;56,57,58;,
|
|
3;56,58,59;,
|
|
3;60,61,62;,
|
|
3;60,62,63;;
|
|
|
|
MeshTextureCoords {
|
|
64;
|
|
1.229180;0.117569;,
|
|
0.976470;0.245023;,
|
|
0.977954;0.673508;,
|
|
1.231550;0.799205;,
|
|
1.236790;0.811354;,
|
|
0.972026;0.680119;,
|
|
0.970476;0.232759;,
|
|
1.234320;0.099690;,
|
|
0.276457;0.945918;,
|
|
0.443370;1.033747;,
|
|
0.443370;1.531878;,
|
|
0.276457;1.619707;,
|
|
0.276457;1.619707;,
|
|
0.443370;1.531878;,
|
|
0.443370;1.033747;,
|
|
0.276457;0.945918;,
|
|
0.606699;0.343061;,
|
|
0.606108;0.309949;,
|
|
0.541244;0.272499;,
|
|
0.512273;0.288544;,
|
|
0.487548;0.344112;,
|
|
0.466896;0.340420;,
|
|
0.378102;0.480413;,
|
|
0.378505;0.516028;,
|
|
0.512273;0.695463;,
|
|
0.541244;0.711508;,
|
|
0.606108;0.674058;,
|
|
0.606699;0.640946;,
|
|
0.378505;0.836430;,
|
|
0.378102;0.872046;,
|
|
0.466896;1.012040;,
|
|
0.487548;1.008350;,
|
|
0.879553;0.378983;,
|
|
0.847837;0.348377;,
|
|
0.659837;0.323626;,
|
|
0.659837;0.660381;,
|
|
0.847837;0.635630;,
|
|
0.879553;0.605024;,
|
|
0.989578;0.879716;,
|
|
1.968245;0.879776;,
|
|
1.968245;0.109836;,
|
|
0.989578;0.109896;,
|
|
0.135430;0.457390;,
|
|
0.072788;0.513022;,
|
|
0.425764;0.512996;,
|
|
0.314085;0.457390;,
|
|
0.135430;0.895068;,
|
|
0.314085;0.895068;,
|
|
0.425764;0.839463;,
|
|
0.072788;0.839437;,
|
|
0.411637;0.875103;,
|
|
0.165199;1.121543;,
|
|
0.585897;1.176929;,
|
|
0.585897;0.819732;,
|
|
0.165199;0.875118;,
|
|
0.411637;1.121560;,
|
|
0.397404;1.092660;,
|
|
0.932808;0.557252;,
|
|
0.778756;0.290424;,
|
|
0.047379;0.486398;,
|
|
1.936716;1.236080;,
|
|
1.158757;1.027630;,
|
|
0.994894;1.311460;,
|
|
1.564400;1.880960;;
|
|
}
|
|
|
|
MeshNormals {
|
|
64;
|
|
0.034431;0.495434;-0.867963;,
|
|
0.034416;0.495445;-0.867957;,
|
|
0.034431;0.495434;-0.867963;,
|
|
0.034446;0.495423;-0.867969;,
|
|
-0.034435;0.495428;-0.867966;,
|
|
-0.034434;0.495412;-0.867975;,
|
|
-0.034435;0.495428;-0.867966;,
|
|
-0.034435;0.495444;-0.867957;,
|
|
0.664373;0.747401;0.000000;,
|
|
0.664373;0.747401;0.000000;,
|
|
0.664373;0.747401;0.000000;,
|
|
0.664373;0.747401;0.000000;,
|
|
-0.664373;0.747401;0.000000;,
|
|
-0.664373;0.747401;0.000000;,
|
|
-0.664373;0.747401;0.000000;,
|
|
-0.664373;0.747401;0.000000;,
|
|
0.413423;0.882387;0.069520;,
|
|
0.341211;0.919107;0.197023;,
|
|
0.341221;0.919100;0.197036;,
|
|
0.341232;0.919093;0.197049;,
|
|
0.253115;0.719784;-0.646408;,
|
|
0.253098;0.719796;-0.646402;,
|
|
0.253115;0.719784;-0.646408;,
|
|
0.253131;0.719773;-0.646414;,
|
|
-0.341226;0.919098;0.197039;,
|
|
-0.341243;0.919091;0.197042;,
|
|
-0.341226;0.919098;0.197039;,
|
|
-0.485686;0.845638;-0.057958;,
|
|
-0.253118;0.719782;-0.646410;,
|
|
-0.253130;0.719769;-0.646419;,
|
|
-0.253118;0.719782;-0.646410;,
|
|
-0.253106;0.719795;-0.646400;,
|
|
0.557985;0.808868;-0.185434;,
|
|
0.558144;0.808776;-0.185357;,
|
|
0.557985;0.808868;-0.185434;,
|
|
-0.557756;0.809014;-0.185485;,
|
|
-0.557925;0.808905;-0.185454;,
|
|
-0.558093;0.808795;-0.185424;,
|
|
0.000000;1.000000;0.000028;,
|
|
0.000000;1.000000;0.000028;,
|
|
0.000000;1.000000;0.000028;,
|
|
0.000000;1.000000;0.000028;,
|
|
0.575382;0.817885;-0.000005;,
|
|
0.575356;0.817903;-0.000009;,
|
|
0.575382;0.817885;-0.000005;,
|
|
0.575408;0.817867;0.000000;,
|
|
-0.575382;0.817885;-0.000005;,
|
|
-0.575408;0.817867;0.000000;,
|
|
-0.575382;0.817885;-0.000005;,
|
|
-0.575356;0.817903;-0.000009;,
|
|
-0.185704;0.928476;-0.321632;,
|
|
-0.185704;0.928476;-0.321632;,
|
|
-0.185704;0.928476;-0.321632;,
|
|
0.185704;0.928476;-0.321632;,
|
|
0.185704;0.928476;-0.321632;,
|
|
0.185704;0.928476;-0.321632;,
|
|
-0.321628;0.928476;-0.185709;,
|
|
-0.321628;0.928475;-0.185715;,
|
|
-0.321628;0.928476;-0.185709;,
|
|
-0.321627;0.928478;-0.185702;,
|
|
0.321625;0.928477;-0.185707;,
|
|
0.321619;0.928479;-0.185711;,
|
|
0.321625;0.928477;-0.185707;,
|
|
0.321631;0.928476;-0.185704;;
|
|
32;
|
|
3;0,1,2;,
|
|
3;0,2,3;,
|
|
3;4,5,6;,
|
|
3;4,6,7;,
|
|
3;8,9,10;,
|
|
3;8,10,11;,
|
|
3;12,13,14;,
|
|
3;12,14,15;,
|
|
3;16,17,18;,
|
|
3;16,18,19;,
|
|
3;20,21,22;,
|
|
3;20,22,23;,
|
|
3;24,25,26;,
|
|
3;24,26,27;,
|
|
3;28,29,30;,
|
|
3;28,30,31;,
|
|
3;32,33,34;,
|
|
3;32,34,16;,
|
|
3;27,35,36;,
|
|
3;27,36,37;,
|
|
3;38,39,40;,
|
|
3;38,40,41;,
|
|
3;42,43,44;,
|
|
3;42,44,45;,
|
|
3;46,47,48;,
|
|
3;46,48,49;,
|
|
3;50,51,52;,
|
|
3;53,54,55;,
|
|
3;56,57,58;,
|
|
3;56,58,59;,
|
|
3;60,61,62;,
|
|
3;60,62,63;;
|
|
}
|
|
|
|
MeshMaterialList {
|
|
4;
|
|
32;
|
|
0,
|
|
0,
|
|
0,
|
|
0,
|
|
1,
|
|
1,
|
|
1,
|
|
1,
|
|
2,
|
|
2,
|
|
2,
|
|
2,
|
|
2,
|
|
2,
|
|
2,
|
|
2,
|
|
2,
|
|
2,
|
|
2,
|
|
2,
|
|
2,
|
|
2,
|
|
2,
|
|
2,
|
|
2,
|
|
2,
|
|
2,
|
|
2,
|
|
3,
|
|
3,
|
|
3,
|
|
3;
|
|
|
|
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.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.849000;0.485841;0.000000;1.000000;;
|
|
1.000000;
|
|
0.000000;0.000000;0.000000;;
|
|
0.000000;0.000000;0.000000;;
|
|
|
|
TextureFilename {
|
|
"vtv6_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";
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
} |