home *** CD-ROM | disk | FTP | other *** search
/ Chip 2003 May / CHIP_CD_2003-05.iso / games / aero / AeroStyle.LZH / AeroStyle / mat / BombEffect.x < prev    next >
Text File  |  2002-01-11  |  5KB  |  266 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.  20;
  136.  -0.00802;0.98898;-0.00285;,
  137.  0.59761;0.69932;-0.35251;,
  138.  -0.00802;0.69932;-0.70217;,
  139.  0.59761;0.69932;0.34681;,
  140.  -0.00802;0.69932;0.69646;,
  141.  -0.61364;0.69932;0.34681;,
  142.  -0.61364;0.69932;-0.35251;,
  143.  0.84846;0.00000;-0.49734;,
  144.  -0.00802;0.00000;-0.99183;,
  145.  0.84846;0.00000;0.49164;,
  146.  -0.00802;0.00000;0.98613;,
  147.  -0.86450;0.00000;0.49164;,
  148.  -0.86450;0.00000;-0.49734;,
  149.  0.59761;-0.69931;-0.35251;,
  150.  -0.00802;-0.69931;-0.70217;,
  151.  0.59761;-0.69931;0.34681;,
  152.  -0.00802;-0.69931;0.69646;,
  153.  -0.61364;-0.69931;0.34681;,
  154.  -0.61364;-0.69931;-0.35251;,
  155.  -0.00802;-0.98898;-0.00285;;
  156.  
  157.  24;
  158.  3;0,1,2;,
  159.  3;0,3,1;,
  160.  3;0,4,3;,
  161.  3;0,5,4;,
  162.  3;0,6,5;,
  163.  3;0,2,6;,
  164.  4;2,1,7,8;,
  165.  4;1,3,9,7;,
  166.  4;3,4,10,9;,
  167.  4;4,5,11,10;,
  168.  4;5,6,12,11;,
  169.  4;6,2,8,12;,
  170.  4;8,7,13,14;,
  171.  4;7,9,15,13;,
  172.  4;9,10,16,15;,
  173.  4;10,11,17,16;,
  174.  4;11,12,18,17;,
  175.  4;12,8,14,18;,
  176.  3;14,13,19;,
  177.  3;13,15,19;,
  178.  3;15,16,19;,
  179.  3;16,17,19;,
  180.  3;17,18,19;,
  181.  3;18,14,19;;
  182.  
  183.  MeshMaterialList {
  184.   1;
  185.   24;
  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.   0,
  201.   0,
  202.   0,
  203.   0,
  204.   0,
  205.   0,
  206.   0,
  207.   0,
  208.   0,
  209.   0;;
  210.   Material {
  211.    1.000000;0.373000;0.031000;1.000000;;
  212.    5.000000;
  213.    0.000000;0.000000;0.000000;;
  214.    1.000000;0.373000;0.031000;;
  215.   }
  216.  }
  217.  MeshNormals {
  218.   20;
  219.   -0.000000;1.000000;0.000000;,
  220.   0.000000;0.721779;-0.692123;,
  221.   0.599396;0.721779;-0.346062;,
  222.   0.599396;0.721779;0.346062;,
  223.   -0.000000;0.721779;0.692123;,
  224.   -0.599396;0.721779;0.346062;,
  225.   -0.599396;0.721779;-0.346062;,
  226.   0.000000;-0.000000;-1.000000;,
  227.   0.866025;-0.000000;-0.500000;,
  228.   0.866025;-0.000000;0.500000;,
  229.   -0.000000;-0.000000;1.000000;,
  230.   -0.866025;0.000000;0.500000;,
  231.   -0.866025;-0.000000;-0.500000;,
  232.   0.000000;-0.721779;-0.692123;,
  233.   0.599396;-0.721779;-0.346062;,
  234.   0.599396;-0.721779;0.346062;,
  235.   -0.000000;-0.721779;0.692123;,
  236.   -0.599396;-0.721779;0.346062;,
  237.   -0.599396;-0.721779;-0.346062;,
  238.   -0.000000;-1.000000;0.000000;;
  239.   24;
  240.   3;0,2,1;,
  241.   3;0,3,2;,
  242.   3;0,4,3;,
  243.   3;0,5,4;,
  244.   3;0,6,5;,
  245.   3;0,1,6;,
  246.   4;1,2,8,7;,
  247.   4;2,3,9,8;,
  248.   4;3,4,10,9;,
  249.   4;4,5,11,10;,
  250.   4;5,6,12,11;,
  251.   4;6,1,7,12;,
  252.   4;7,8,14,13;,
  253.   4;8,9,15,14;,
  254.   4;9,10,16,15;,
  255.   4;10,11,17,16;,
  256.   4;11,12,18,17;,
  257.   4;12,7,13,18;,
  258.   3;13,14,19;,
  259.   3;14,15,19;,
  260.   3;15,16,19;,
  261.   3;16,17,19;,
  262.   3;17,18,19;,
  263.   3;18,13,19;;
  264.  }
  265. }
  266.