home *** CD-ROM | disk | FTP | other *** search
/ Chip 2003 May / CHIP_CD_2003-05.iso / games / aero / AeroStyle.LZH / AeroStyle / mat / FireEffect.x < prev    next >
Text File  |  2001-12-20  |  10KB  |  492 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.  67;
  136.  -0.11431;-0.19799;-0.49848;,
  137.  -0.00000;-0.22862;-0.49848;,
  138.  0.10288;-0.17819;-0.25951;,
  139.  -0.00000;-0.20576;-0.25951;,
  140.  0.11431;-0.19799;-0.49848;,
  141.  0.19799;-0.11431;-0.49848;,
  142.  0.20576;0.00000;-0.25951;,
  143.  0.17819;-0.10288;-0.25951;,
  144.  0.22862;0.00000;-0.49848;,
  145.  0.19799;0.11431;-0.49848;,
  146.  0.10288;0.17819;-0.25951;,
  147.  0.17819;0.10288;-0.25951;,
  148.  0.11431;0.19799;-0.49848;,
  149.  0.00000;0.22862;-0.49848;,
  150.  -0.10288;0.17819;-0.25951;,
  151.  0.00000;0.20576;-0.25951;,
  152.  -0.11431;0.19799;-0.49848;,
  153.  -0.19799;0.11431;-0.49848;,
  154.  -0.20576;0.00000;-0.25951;,
  155.  -0.17819;0.10288;-0.25951;,
  156.  -0.22862;0.00000;-0.49848;,
  157.  -0.19799;-0.11431;-0.49848;,
  158.  -0.10288;-0.17819;-0.25951;,
  159.  -0.17819;-0.10288;-0.25951;,
  160.  0.11693;-0.09811;-0.00616;,
  161.  0.05221;-0.14343;-0.00616;,
  162.  0.14343;0.05221;-0.00616;,
  163.  0.15032;-0.02651;-0.00616;,
  164.  0.02651;0.15032;-0.00616;,
  165.  0.09811;0.11693;-0.00616;,
  166.  -0.11693;0.09811;-0.00616;,
  167.  -0.05221;0.14343;-0.00616;,
  168.  -0.14343;-0.05221;-0.00616;,
  169.  -0.15032;0.02651;-0.00616;,
  170.  -0.02651;-0.15032;-0.00616;,
  171.  -0.09811;-0.11693;-0.00616;,
  172.  0.10117;-0.05841;0.12904;,
  173.  0.05841;-0.10117;0.12904;,
  174.  0.10117;0.05841;0.12904;,
  175.  0.11683;0.00000;0.12904;,
  176.  0.00000;0.11683;0.12904;,
  177.  0.05841;0.10117;0.12904;,
  178.  -0.10117;0.05841;0.12904;,
  179.  -0.05841;0.10117;0.12904;,
  180.  -0.10117;-0.05841;0.12904;,
  181.  -0.11683;0.00000;0.12904;,
  182.  0.00000;-0.11683;0.12904;,
  183.  -0.05841;-0.10117;0.12904;,
  184.  0.03161;-0.05475;0.21826;,
  185.  0.00000;-0.06323;0.21826;,
  186.  0.05475;-0.03161;0.21826;,
  187.  0.06323;0.00000;0.21826;,
  188.  0.05475;0.03161;0.21826;,
  189.  0.03161;0.05475;0.21826;,
  190.  0.00000;0.06323;0.21826;,
  191.  -0.03161;0.05475;0.21826;,
  192.  -0.05475;0.03161;0.21826;,
  193.  -0.06323;0.00000;0.21826;,
  194.  -0.05475;-0.03161;0.21826;,
  195.  -0.03161;-0.05475;0.21826;,
  196.  0.00000;-0.00000;0.24959;,
  197.  -0.09694;0.22837;-0.71826;,
  198.  0.14931;0.19813;-0.71826;,
  199.  -0.24624;0.03023;-0.71826;,
  200.  -0.14931;-0.19814;-0.71826;,
  201.  0.09694;-0.22837;-0.71826;,
  202.  0.24624;-0.03024;-0.71826;;
  203.  
  204.  66;
  205.  4;0,1,2,3;,
  206.  4;4,5,6,7;,
  207.  4;8,9,10,11;,
  208.  4;12,13,14,15;,
  209.  4;16,17,18,19;,
  210.  4;20,21,22,23;,
  211.  4;3,2,24,25;,
  212.  4;7,6,26,27;,
  213.  4;11,10,28,29;,
  214.  4;15,14,30,31;,
  215.  4;19,18,32,33;,
  216.  4;23,22,34,35;,
  217.  4;25,24,36,37;,
  218.  4;27,26,38,39;,
  219.  4;29,28,40,41;,
  220.  4;31,30,42,43;,
  221.  4;33,32,44,45;,
  222.  4;35,34,46,47;,
  223.  4;46,37,48,49;,
  224.  4;37,36,50,48;,
  225.  4;36,39,51,50;,
  226.  4;39,38,52,51;,
  227.  4;38,41,53,52;,
  228.  4;41,40,54,53;,
  229.  4;40,43,55,54;,
  230.  4;43,42,56,55;,
  231.  4;42,45,57,56;,
  232.  4;45,44,58,57;,
  233.  4;44,47,59,58;,
  234.  4;47,46,49,59;,
  235.  3;49,48,60;,
  236.  3;48,50,60;,
  237.  3;50,51,60;,
  238.  3;51,52,60;,
  239.  3;52,53,60;,
  240.  3;53,54,60;,
  241.  3;54,55,60;,
  242.  3;55,56,60;,
  243.  3;56,57,60;,
  244.  3;57,58,60;,
  245.  3;58,59,60;,
  246.  3;59,49,60;,
  247.  3;61,17,16;,
  248.  3;62,13,12;,
  249.  3;63,21,20;,
  250.  3;64,1,0;,
  251.  3;65,5,4;,
  252.  3;9,8,66;,
  253.  4;3,2,1,0;,
  254.  4;7,6,5,4;,
  255.  4;11,10,9,8;,
  256.  4;15,14,13,12;,
  257.  4;19,18,17,16;,
  258.  4;23,22,21,20;,
  259.  4;25,24,2,3;,
  260.  4;27,26,6,7;,
  261.  4;29,28,10,11;,
  262.  4;31,30,14,15;,
  263.  4;33,32,18,19;,
  264.  4;35,34,22,23;,
  265.  3;16,17,61;,
  266.  3;12,13,62;,
  267.  3;20,21,63;,
  268.  3;0,1,64;,
  269.  3;4,5,65;,
  270.  3;66,8,9;;
  271.  
  272.  MeshMaterialList {
  273.   1;
  274.   66;
  275.   0,
  276.   0,
  277.   0,
  278.   0,
  279.   0,
  280.   0,
  281.   0,
  282.   0,
  283.   0,
  284.   0,
  285.   0,
  286.   0,
  287.   0,
  288.   0,
  289.   0,
  290.   0,
  291.   0,
  292.   0,
  293.   0,
  294.   0,
  295.   0,
  296.   0,
  297.   0,
  298.   0,
  299.   0,
  300.   0,
  301.   0,
  302.   0,
  303.   0,
  304.   0,
  305.   0,
  306.   0,
  307.   0,
  308.   0,
  309.   0,
  310.   0,
  311.   0,
  312.   0,
  313.   0,
  314.   0,
  315.   0,
  316.   0,
  317.   0,
  318.   0,
  319.   0,
  320.   0,
  321.   0,
  322.   0,
  323.   0,
  324.   0,
  325.   0,
  326.   0,
  327.   0,
  328.   0,
  329.   0,
  330.   0,
  331.   0,
  332.   0,
  333.   0,
  334.   0,
  335.   0,
  336.   0,
  337.   0,
  338.   0,
  339.   0,
  340.   0;;
  341.   Material {
  342.    1.000000;0.514000;0.204000;0.700000;;
  343.    5.000000;
  344.    0.000000;0.000000;0.000000;;
  345.    1.000000;0.514000;0.204000;;
  346.   }
  347.  }
  348.  MeshNormals {
  349.   73;
  350.   -0.258592;-0.965082;0.041800;,
  351.   0.706489;-0.706488;0.041801;,
  352.   0.965082;0.258593;0.041802;,
  353.   0.258594;0.965081;0.041800;,
  354.   -0.706488;0.706489;0.041800;,
  355.   -0.965081;-0.258594;0.041799;,
  356.   -0.921761;-0.381545;0.069133;,
  357.   -0.130453;-0.989041;0.069133;,
  358.   0.791308;-0.607496;0.069134;,
  359.   0.921762;0.381544;0.069134;,
  360.   0.130454;0.989041;0.069133;,
  361.   -0.791308;0.607497;0.069133;,
  362.   -0.730016;-0.665949;0.153582;,
  363.   0.211722;-0.965187;0.153582;,
  364.   0.941737;-0.299238;0.153581;,
  365.   0.730016;0.665950;0.153582;,
  366.   -0.211721;0.965188;0.153582;,
  367.   -0.941737;0.299239;0.153582;,
  368.   -0.450599;-0.862528;0.230230;,
  369.   0.521674;-0.821493;0.230230;,
  370.   0.972271;0.041035;0.230230;,
  371.   0.450595;0.862530;0.230229;,
  372.   -0.521672;0.821494;0.230230;,
  373.   -0.972271;-0.041034;0.230230;,
  374.   -0.114779;-0.893166;0.434833;,
  375.   0.500006;-0.751123;0.431053;,
  376.   0.716115;-0.545984;0.434833;,
  377.   0.900495;0.057456;0.431053;,
  378.   0.830894;0.347183;0.434833;,
  379.   0.400488;0.808581;0.431053;,
  380.   0.114778;0.893167;0.434832;,
  381.   -0.500006;0.751124;0.431053;,
  382.   -0.716115;0.545985;0.434833;,
  383.   -0.900495;-0.057456;0.431054;,
  384.   -0.830894;-0.347181;0.434833;,
  385.   -0.400490;-0.808580;0.431053;,
  386.   0.000001;-0.675904;0.736990;,
  387.   0.337953;-0.585350;0.736989;,
  388.   0.585350;-0.337953;0.736989;,
  389.   0.675904;-0.000002;0.736990;,
  390.   0.585349;0.337953;0.736990;,
  391.   0.337951;0.585351;0.736989;,
  392.   0.000001;0.675904;0.736990;,
  393.   -0.337952;0.585350;0.736989;,
  394.   -0.585349;0.337953;0.736990;,
  395.   -0.675904;-0.000000;0.736990;,
  396.   -0.585351;-0.337951;0.736990;,
  397.   -0.337953;-0.585350;0.736990;,
  398.   -0.000000;0.000000;1.000000;,
  399.   -0.211722;0.965187;-0.153582;,
  400.   0.130453;0.989041;-0.069133;,
  401.   -0.941737;0.299238;-0.153581;,
  402.   -0.791308;0.607496;-0.069134;,
  403.   -0.730016;-0.665950;-0.153582;,
  404.   -0.921762;-0.381544;-0.069134;,
  405.   0.211721;-0.965188;-0.153582;,
  406.   -0.130454;-0.989041;-0.069133;,
  407.   0.941737;-0.299239;-0.153582;,
  408.   0.791308;-0.607497;-0.069133;,
  409.   0.730016;0.665949;-0.153582;,
  410.   0.921761;0.381545;-0.069133;,
  411.   -0.413038;0.887485;-0.204375;,
  412.   -0.975104;0.086043;-0.204375;,
  413.   -0.562065;-0.801445;-0.204376;,
  414.   0.413037;-0.887486;-0.204376;,
  415.   0.975104;-0.086044;-0.204376;,
  416.   0.562068;0.801443;-0.204375;,
  417.   0.706488;-0.706489;-0.041800;,
  418.   -0.258594;-0.965081;-0.041800;,
  419.   0.965081;0.258594;-0.041799;,
  420.   0.258592;0.965082;-0.041800;,
  421.   -0.706489;0.706488;-0.041801;,
  422.   -0.965082;-0.258593;-0.041802;;
  423.   66;
  424.   4;7,7,13,13;,
  425.   4;8,8,14,14;,
  426.   4;9,9,15,15;,
  427.   4;10,10,16,16;,
  428.   4;11,11,17,17;,
  429.   4;6,6,12,12;,
  430.   4;13,13,19,19;,
  431.   4;14,14,20,20;,
  432.   4;15,15,21,21;,
  433.   4;16,16,22,22;,
  434.   4;17,17,23,23;,
  435.   4;12,12,18,18;,
  436.   4;19,19,26,25;,
  437.   4;20,20,28,27;,
  438.   4;21,21,30,29;,
  439.   4;22,22,32,31;,
  440.   4;23,23,34,33;,
  441.   4;18,18,24,35;,
  442.   4;24,25,37,36;,
  443.   4;25,26,38,37;,
  444.   4;26,27,39,38;,
  445.   4;27,28,40,39;,
  446.   4;28,29,41,40;,
  447.   4;29,30,42,41;,
  448.   4;30,31,43,42;,
  449.   4;31,32,44,43;,
  450.   4;32,33,45,44;,
  451.   4;33,34,46,45;,
  452.   4;34,35,47,46;,
  453.   4;35,24,36,47;,
  454.   3;36,37,48;,
  455.   3;37,38,48;,
  456.   3;38,39,48;,
  457.   3;39,40,48;,
  458.   3;40,41,48;,
  459.   3;41,42,48;,
  460.   3;42,43,48;,
  461.   3;43,44,48;,
  462.   3;44,45,48;,
  463.   3;45,46,48;,
  464.   3;46,47,48;,
  465.   3;47,36,48;,
  466.   3;4,11,11;,
  467.   3;3,10,10;,
  468.   3;5,6,6;,
  469.   3;0,7,7;,
  470.   3;1,8,8;,
  471.   3;9,9,2;,
  472.   4;49,49,50,50;,
  473.   4;51,51,52,52;,
  474.   4;53,53,54,54;,
  475.   4;55,55,56,56;,
  476.   4;57,57,58,58;,
  477.   4;59,59,60,60;,
  478.   4;61,61,49,49;,
  479.   4;62,62,51,51;,
  480.   4;63,63,53,53;,
  481.   4;64,64,55,55;,
  482.   4;65,65,57,57;,
  483.   4;66,66,59,59;,
  484.   3;58,58,67;,
  485.   3;56,56,68;,
  486.   3;60,60,69;,
  487.   3;50,50,70;,
  488.   3;52,52,71;,
  489.   3;72,54,54;;
  490.  }
  491. }
  492.