home *** CD-ROM | disk | FTP | other *** search
/ Chip 2003 May / CHIP_CD_2003-05.iso / games / aero / AeroStyle.LZH / AeroStyle / mat / GunPod.x < prev    next >
Text File  |  2001-12-29  |  5KB  |  245 lines

  1. xof 0302txt 0064
  2. template Header {
  3.  <3D82AB43-62DA-11cf-AB39-0020AF71E433>
  4.  WORD major;
  5.  WORD minor;
  6.  DWORD flags;
  7. }
  8.  
  9. template Vector {
  10.  <3D82AB5E-62DA-11cf-AB39-0020AF71E433>
  11.  FLOAT x;
  12.  FLOAT y;
  13.  FLOAT z;
  14. }
  15.  
  16. template Coords2d {
  17.  <F6F23F44-7686-11cf-8F52-0040333594A3>
  18.  FLOAT u;
  19.  FLOAT v;
  20. }
  21.  
  22. template Matrix4x4 {
  23.  <F6F23F45-7686-11cf-8F52-0040333594A3>
  24.  array FLOAT matrix[16];
  25. }
  26.  
  27. template ColorRGBA {
  28.  <35FF44E0-6C7C-11cf-8F52-0040333594A3>
  29.  FLOAT red;
  30.  FLOAT green;
  31.  FLOAT blue;
  32.  FLOAT alpha;
  33. }
  34.  
  35. template ColorRGB {
  36.  <D3E16E81-7835-11cf-8F52-0040333594A3>
  37.  FLOAT red;
  38.  FLOAT green;
  39.  FLOAT blue;
  40. }
  41.  
  42. template IndexedColor {
  43.  <1630B820-7842-11cf-8F52-0040333594A3>
  44.  DWORD index;
  45.  ColorRGBA indexColor;
  46. }
  47.  
  48. template Boolean {
  49.  <4885AE61-78E8-11cf-8F52-0040333594A3>
  50.  WORD truefalse;
  51. }
  52.  
  53. template Boolean2d {
  54.  <4885AE63-78E8-11cf-8F52-0040333594A3>
  55.  Boolean u;
  56.  Boolean v;
  57. }
  58.  
  59. template MaterialWrap {
  60.  <4885AE60-78E8-11cf-8F52-0040333594A3>
  61.  Boolean u;
  62.  Boolean v;
  63. }
  64.  
  65. template TextureFilename {
  66.  <A42790E1-7810-11cf-8F52-0040333594A3>
  67.  STRING filename;
  68. }
  69.  
  70. template Material {
  71.  <3D82AB4D-62DA-11cf-AB39-0020AF71E433>
  72.  ColorRGBA faceColor;
  73.  FLOAT power;
  74.  ColorRGB specularColor;
  75.  ColorRGB emissiveColor;
  76.  [...]
  77. }
  78.  
  79. template MeshFace {
  80.  <3D82AB5F-62DA-11cf-AB39-0020AF71E433>
  81.  DWORD nFaceVertexIndices;
  82.  array DWORD faceVertexIndices[nFaceVertexIndices];
  83. }
  84.  
  85. template MeshFaceWraps {
  86.  <4885AE62-78E8-11cf-8F52-0040333594A3>
  87.  DWORD nFaceWrapValues;
  88.  Boolean2d faceWrapValues;
  89. }
  90.  
  91. template MeshTextureCoords {
  92.  <F6F23F40-7686-11cf-8F52-0040333594A3>
  93.  DWORD nTextureCoords;
  94.  array Coords2d textureCoords[nTextureCoords];
  95. }
  96.  
  97. template MeshMaterialList {
  98.  <F6F23F42-7686-11cf-8F52-0040333594A3>
  99.  DWORD nMaterials;
  100.  DWORD nFaceIndexes;
  101.  array DWORD faceIndexes[nFaceIndexes];
  102.  [Material]
  103. }
  104.  
  105. template MeshNormals {
  106.  <F6F23F43-7686-11cf-8F52-0040333594A3>
  107.  DWORD nNormals;
  108.  array Vector normals[nNormals];
  109.  DWORD nFaceNormals;
  110.  array MeshFace faceNormals[nFaceNormals];
  111. }
  112.  
  113. template MeshVertexColors {
  114.  <1630B821-7842-11cf-8F52-0040333594A3>
  115.  DWORD nVertexColors;
  116.  array IndexedColor vertexColors[nVertexColors];
  117. }
  118.  
  119. template Mesh {
  120.  <3D82AB44-62DA-11cf-AB39-0020AF71E433>
  121.  DWORD nVertices;
  122.  array Vector vertices[nVertices];
  123.  DWORD nFaces;
  124.  array MeshFace faces[nFaces];
  125.  [...]
  126. }
  127.  
  128. Header{
  129. 1;
  130. 0;
  131. 1;
  132. }
  133.  
  134. Mesh {
  135.  24;
  136.  -0.00000;-0.07606;-0.18080;,
  137.  0.00000;0.05205;-0.13035;,
  138.  0.07118;0.05205;-0.00706;,
  139.  0.11095;-0.07606;0.01136;,
  140.  -0.07118;0.05205;-0.00706;,
  141.  -0.11095;-0.07606;0.01136;,
  142.  0.09994;-0.08527;0.08898;,
  143.  -0.09968;-0.08527;0.08898;,
  144.  -0.09968;-0.08074;0.04319;,
  145.  0.09994;-0.08074;0.04319;,
  146.  0.09994;0.02030;0.09588;,
  147.  0.09994;0.01230;0.05239;,
  148.  -0.09968;0.02030;0.09588;,
  149.  -0.09968;0.01230;0.05239;,
  150.  0.09994;0.11548;0.05237;,
  151.  0.09994;0.09495;0.01119;,
  152.  -0.09968;0.11548;0.05237;,
  153.  -0.09968;0.09495;0.01119;,
  154.  0.02787;0.03680;0.37560;,
  155.  -0.00000;-0.01147;0.37560;,
  156.  -0.00000;-0.00677;-0.06951;,
  157.  0.02294;0.03297;-0.06951;,
  158.  -0.02787;0.03680;0.37560;,
  159.  -0.02294;0.03297;-0.06951;;
  160.  
  161.  17;
  162.  4;0,1,2,3;,
  163.  4;3,2,4,5;,
  164.  4;5,4,1,0;,
  165.  3;4,2,1;,
  166.  4;6,7,8,9;,
  167.  4;10,6,9,11;,
  168.  4;7,12,13,8;,
  169.  4;7,6,10,12;,
  170.  4;14,10,11,15;,
  171.  4;16,14,15,17;,
  172.  4;12,16,17,13;,
  173.  4;10,14,16,12;,
  174.  4;17,15,11,13;,
  175.  4;18,19,20,21;,
  176.  4;22,18,21,23;,
  177.  4;19,22,23,20;,
  178.  3;23,21,20;;
  179.  
  180.  MeshMaterialList {
  181.   1;
  182.   17;
  183.   0,
  184.   0,
  185.   0,
  186.   0,
  187.   0,
  188.   0,
  189.   0,
  190.   0,
  191.   0,
  192.   0,
  193.   0,
  194.   0,
  195.   0,
  196.   0,
  197.   0,
  198.   0,
  199.   0;;
  200.   Material {
  201.    0.537000;0.533000;0.647000;1.000000;;
  202.    3.000000;
  203.    1.000000;1.000000;1.000000;;
  204.    0.134250;0.133250;0.161750;;
  205.   }
  206.  }
  207.  MeshNormals {
  208.   16;
  209.   0.849711;0.193186;-0.490581;,
  210.   -0.000000;0.142327;0.989820;,
  211.   -1.000000;0.000000;0.000000;,
  212.   1.000000;0.000000;0.000000;,
  213.   0.000000;-0.995143;-0.098444;,
  214.   0.000000;0.894959;-0.446148;,
  215.   0.866014;-0.499992;-0.005276;,
  216.   0.000000;0.999963;-0.008616;,
  217.   -0.849711;0.193186;-0.490582;,
  218.   0.000000;1.000000;0.000000;,
  219.   0.000000;-0.065208;0.997872;,
  220.   0.000000;0.180746;0.983530;,
  221.   0.000000;0.415728;0.909489;,
  222.   0.000000;-0.446149;-0.894959;,
  223.   -0.866014;-0.499992;-0.005276;,
  224.   0.000000;-0.000001;-1.000000;;
  225.   17;
  226.   4;0,0,0,0;,
  227.   4;1,1,1,1;,
  228.   4;8,8,8,8;,
  229.   3;9,9,9;,
  230.   4;4,4,4,4;,
  231.   4;3,3,3,3;,
  232.   4;2,2,2,2;,
  233.   4;10,10,11,11;,
  234.   4;3,3,3,3;,
  235.   4;5,5,5,5;,
  236.   4;2,2,2,2;,
  237.   4;11,12,12,11;,
  238.   4;13,13,13,13;,
  239.   4;6,6,6,6;,
  240.   4;7,7,7,7;,
  241.   4;14,14,14,14;,
  242.   3;15,15,15;;
  243.  }
  244. }
  245.