home *** CD-ROM | disk | FTP | other *** search
/ Chip 2003 May / CHIP_CD_2003-05.iso / games / aero / AeroStyle.LZH / AeroStyle / mat / Bomb00.x < prev    next >
Text File  |  2002-01-11  |  4KB  |  234 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.  12;
  136.  0.00008;0.05497;-0.00008;,
  137.  0.04201;0.02952;-0.01370;,
  138.  0.00008;0.02952;-0.04417;,
  139.  0.02599;0.02952;0.03560;,
  140.  -0.02584;0.02952;0.03560;,
  141.  -0.04186;0.02952;-0.01370;,
  142.  0.04201;-0.02140;-0.01370;,
  143.  0.00008;-0.02140;-0.04417;,
  144.  0.02599;-0.02140;0.03560;,
  145.  -0.02584;-0.02140;0.03560;,
  146.  -0.04186;-0.02140;-0.01370;,
  147.  0.00008;-0.04686;-0.00008;;
  148.  
  149.  15;
  150.  3;0,1,2;,
  151.  3;0,3,1;,
  152.  3;0,4,3;,
  153.  3;0,5,4;,
  154.  3;0,2,5;,
  155.  4;2,1,6,7;,
  156.  4;1,3,8,6;,
  157.  4;3,4,9,8;,
  158.  4;4,5,10,9;,
  159.  4;5,2,7,10;,
  160.  3;7,6,11;,
  161.  3;6,8,11;,
  162.  3;8,9,11;,
  163.  3;9,10,11;,
  164.  3;10,7,11;;
  165.  
  166.  MeshMaterialList {
  167.   2;
  168.   15;
  169.   0,
  170.   0,
  171.   0,
  172.   0,
  173.   0,
  174.   0,
  175.   0,
  176.   0,
  177.   0,
  178.   0,
  179.   0,
  180.   0,
  181.   0,
  182.   0,
  183.   0;;
  184.   Material {
  185.    0.811765;0.772549;0.572549;1.000000;;
  186.    3.000000;
  187.    1.000000;1.000000;1.000000;;
  188.    0.422118;0.401725;0.297725;;
  189.   }
  190.   Material {
  191.    1.000000;1.000000;1.000000;1.000000;;
  192.    5.000000;
  193.    0.000000;0.000000;0.000000;;
  194.    0.250000;0.250000;0.250000;;
  195.   }
  196.  }
  197.  MeshNormals {
  198.   17;
  199.   0.000000;1.000000;-0.000000;,
  200.   0.000000;0.866026;-0.500000;,
  201.   0.475528;0.866025;-0.154508;,
  202.   0.293893;0.866025;0.404508;,
  203.   -0.293893;0.866025;0.404508;,
  204.   -0.475528;0.866025;-0.154509;,
  205.   0.238881;-0.661616;-0.710774;,
  206.   0.602169;-0.661616;-0.446830;,
  207.   0.611041;-0.661616;0.434618;,
  208.   -0.224525;-0.661616;0.715439;,
  209.   -0.749805;-0.661616;0.007547;,
  210.   0.000000;-1.000000;-0.000000;,
  211.   0.587786;0.000000;-0.809017;,
  212.   0.951057;0.000000;0.309017;,
  213.   0.000000;0.000000;1.000000;,
  214.   -0.951057;0.000000;0.309016;,
  215.   -0.587785;0.000000;-0.809017;;
  216.   15;
  217.   3;0,2,1;,
  218.   3;0,3,2;,
  219.   3;0,4,3;,
  220.   3;0,5,4;,
  221.   3;0,1,5;,
  222.   4;12,12,7,6;,
  223.   4;13,13,8,13;,
  224.   4;14,14,9,14;,
  225.   4;15,15,10,15;,
  226.   4;16,16,16,16;,
  227.   3;6,7,11;,
  228.   3;7,8,11;,
  229.   3;8,9,11;,
  230.   3;9,10,11;,
  231.   3;10,6,11;;
  232.  }
  233. }
  234.