home *** CD-ROM | disk | FTP | other *** search
/ Chip 2003 May / CHIP_CD_2003-05.iso / games / aero / AeroStyle.LZH / AeroStyle / mat / Frame.x < prev    next >
Text File  |  2001-12-15  |  7KB  |  347 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.  33;
  136.  0.00000;0.31127;0.00000;,
  137.  0.15845;0.25183;-0.09148;,
  138.  0.00000;0.25183;-0.18296;,
  139.  0.00000;0.31127;0.00000;,
  140.  0.15845;0.25183;0.09148;,
  141.  -0.00000;0.25183;0.18296;,
  142.  -0.15845;0.25183;0.09148;,
  143.  -0.15845;0.25183;-0.09148;,
  144.  0.25638;0.09619;-0.14802;,
  145.  0.00000;0.09619;-0.29604;,
  146.  0.15845;0.25183;0.09148;,
  147.  0.25638;0.09619;0.14802;,
  148.  -0.00000;0.25183;0.18296;,
  149.  -0.00000;0.09619;0.29604;,
  150.  -0.25638;0.09619;0.14802;,
  151.  -0.00000;0.09619;0.29604;,
  152.  -0.25638;0.09619;-0.14802;,
  153.  0.25638;-0.09619;-0.14802;,
  154.  0.00000;-0.09619;-0.29604;,
  155.  0.25638;-0.09619;0.14802;,
  156.  -0.00000;-0.09619;0.29604;,
  157.  -0.25638;-0.09619;0.14802;,
  158.  -0.00000;-0.09619;0.29604;,
  159.  -0.25638;-0.09619;-0.14802;,
  160.  0.15845;-0.25183;-0.09148;,
  161.  0.00000;-0.25183;-0.18296;,
  162.  0.15845;-0.25183;0.09148;,
  163.  -0.00000;-0.25183;0.18296;,
  164.  -0.15845;-0.25183;0.09148;,
  165.  -0.00000;-0.25183;0.18296;,
  166.  -0.15845;-0.25183;-0.09148;,
  167.  0.00000;-0.31127;-0.00000;,
  168.  0.00000;-0.31127;-0.00000;;
  169.  
  170.  30;
  171.  3;0,1,2;,
  172.  3;3,4,1;,
  173.  3;3,5,4;,
  174.  3;3,6,5;,
  175.  3;3,7,6;,
  176.  3;3,2,7;,
  177.  4;2,1,8,9;,
  178.  4;1,10,11,8;,
  179.  4;10,12,13,11;,
  180.  4;5,6,14,15;,
  181.  4;6,7,16,14;,
  182.  4;7,2,9,16;,
  183.  4;9,8,17,18;,
  184.  4;8,11,19,17;,
  185.  4;11,13,20,19;,
  186.  4;15,14,21,22;,
  187.  4;14,16,23,21;,
  188.  4;16,9,18,23;,
  189.  4;18,17,24,25;,
  190.  4;17,19,26,24;,
  191.  4;19,20,27,26;,
  192.  4;22,21,28,29;,
  193.  4;21,23,30,28;,
  194.  4;23,18,25,30;,
  195.  3;25,24,31;,
  196.  3;24,26,31;,
  197.  3;26,27,32;,
  198.  3;29,28,31;,
  199.  3;28,30,31;,
  200.  3;30,25,31;;
  201.  
  202.  MeshMaterialList {
  203.   1;
  204.   30;
  205.   0,
  206.   0,
  207.   0,
  208.   0,
  209.   0,
  210.   0,
  211.   0,
  212.   0,
  213.   0,
  214.   0,
  215.   0,
  216.   0,
  217.   0,
  218.   0,
  219.   0,
  220.   0,
  221.   0,
  222.   0,
  223.   0,
  224.   0,
  225.   0,
  226.   0,
  227.   0,
  228.   0,
  229.   0,
  230.   0,
  231.   0,
  232.   0,
  233.   0,
  234.   0;;
  235.   Material {
  236.    1.000000;1.000000;1.000000;0.500000;;
  237.    5.000000;
  238.    0.000000;0.000000;0.000000;;
  239.    0.830000;0.830000;0.830000;;
  240.    TextureFilename {
  241.     "mat\\Frame00.bmp";
  242.    }
  243.   }
  244.  }
  245.  MeshNormals {
  246.   31;
  247.   0.000000;1.000000;-0.000000;,
  248.   0.000000;0.816865;-0.576829;,
  249.   0.499548;0.816865;-0.288414;,
  250.   0.499548;0.816865;0.288414;,
  251.   -0.000000;0.816865;0.576829;,
  252.   -0.499548;0.816865;0.288414;,
  253.   -0.499548;0.816865;-0.288414;,
  254.   0.000000;0.315986;-0.948764;,
  255.   0.821654;0.315986;-0.474382;,
  256.   0.821654;0.315986;0.474382;,
  257.   -0.000000;0.315986;0.948764;,
  258.   -0.821654;0.315986;0.474382;,
  259.   -0.821654;0.315986;-0.474382;,
  260.   0.191421;-0.407769;-0.892795;,
  261.   0.677473;-0.407769;-0.612173;,
  262.   0.868893;-0.407769;0.280622;,
  263.   0.191421;-0.407769;0.892795;,
  264.   -0.677473;-0.407769;0.612173;,
  265.   -0.868893;-0.407769;-0.280622;,
  266.   -0.000000;-0.816865;-0.576829;,
  267.   0.499548;-0.816865;-0.288414;,
  268.   0.499548;-0.816865;0.288414;,
  269.   -0.000000;-0.816865;0.576829;,
  270.   -0.499548;-0.816865;0.288414;,
  271.   -0.499548;-0.816865;-0.288414;,
  272.   -0.000000;-1.000000;0.000000;,
  273.   1.000000;0.000000;0.000000;,
  274.   0.500000;0.000000;0.866025;,
  275.   -0.500000;0.000000;0.866025;,
  276.   -1.000000;0.000000;0.000000;,
  277.   -0.500000;0.000000;-0.866025;;
  278.   30;
  279.   3;0,2,1;,
  280.   3;0,3,2;,
  281.   3;0,4,3;,
  282.   3;0,5,4;,
  283.   3;0,6,5;,
  284.   3;0,1,6;,
  285.   4;1,2,8,7;,
  286.   4;2,3,9,8;,
  287.   4;3,4,10,9;,
  288.   4;4,5,11,10;,
  289.   4;5,6,12,11;,
  290.   4;6,1,7,12;,
  291.   4;7,8,14,13;,
  292.   4;8,9,15,26;,
  293.   4;9,10,16,27;,
  294.   4;10,11,17,28;,
  295.   4;11,12,18,29;,
  296.   4;12,7,30,30;,
  297.   4;13,14,20,19;,
  298.   4;14,15,21,20;,
  299.   4;15,16,22,21;,
  300.   4;16,17,23,22;,
  301.   4;17,18,24,23;,
  302.   4;18,13,19,24;,
  303.   3;19,20,25;,
  304.   3;20,21,25;,
  305.   3;21,22,25;,
  306.   3;22,23,25;,
  307.   3;23,24,25;,
  308.   3;24,19,25;;
  309.  }
  310.  MeshTextureCoords {
  311.   33;
  312.   0.750000;0.000000;
  313.   0.176210;0.225000;
  314.   0.000000;0.207650;
  315.   -0.250000;0.000000;
  316.   -0.676210;0.225000;
  317.   -0.500000;0.207650;
  318.   -0.323790;0.225000;
  319.   -0.176210;0.225000;
  320.   0.176210;0.414160;
  321.   0.000000;0.404600;
  322.   0.323790;0.225000;
  323.   0.323790;0.414160;
  324.   0.500000;0.207650;
  325.   0.500000;0.404600;
  326.   -0.323790;0.414160;
  327.   -0.500000;0.404600;
  328.   -0.176210;0.414160;
  329.   0.176210;0.585840;
  330.   0.000000;0.595400;
  331.   0.323790;0.585840;
  332.   0.500000;0.595400;
  333.   -0.323790;0.585840;
  334.   -0.500000;0.595400;
  335.   -0.176210;0.585840;
  336.   0.176210;0.775000;
  337.   0.000000;0.792350;
  338.   0.323790;0.775000;
  339.   0.500000;0.792350;
  340.   -0.323790;0.775000;
  341.   -0.500000;0.792350;
  342.   -0.176210;0.775000;
  343.   -0.250000;1.000000;
  344.   0.750000;1.000000;;
  345.  }
  346. }
  347.