home *** CD-ROM | disk | FTP | other *** search
/ ring.yamanashi.ac.jp/pub/pc/freem/action/ / action.zip / so.lzh / so / x / wepon / DUST_BOX.X < prev    next >
Text File  |  2000-03-10  |  6KB  |  308 lines

  1. xof 0302txt 0064
  2.  
  3. template Header {
  4.  <3D82AB43-62DA-11cf-AB39-0020AF71E433>
  5.  WORD major;
  6.  WORD minor;
  7.  DWORD flags;
  8. }
  9.  
  10. template Vector {
  11.  <3D82AB5E-62DA-11cf-AB39-0020AF71E433>
  12.  FLOAT x;
  13.  FLOAT y;
  14.  FLOAT z;
  15. }
  16.  
  17. template Coords2d {
  18.  <F6F23F44-7686-11cf-8F52-0040333594A3>
  19.  FLOAT u;
  20.  FLOAT v;
  21. }
  22.  
  23. template Matrix4x4 {
  24.  <F6F23F45-7686-11cf-8F52-0040333594A3>
  25.  array FLOAT matrix[16];
  26. }
  27.  
  28. template ColorRGBA {
  29.  <35FF44E0-6C7C-11cf-8F52-0040333594A3>
  30.  FLOAT red;
  31.  FLOAT green;
  32.  FLOAT blue;
  33.  FLOAT alpha;
  34. }
  35.  
  36. template ColorRGB {
  37.  <D3E16E81-7835-11cf-8F52-0040333594A3>
  38.  FLOAT red;
  39.  FLOAT green;
  40.  FLOAT blue;
  41. }
  42.  
  43. template IndexedColor {
  44.  <1630B820-7842-11cf-8F52-0040333594A3>
  45.  DWORD index;
  46.  ColorRGBA indexColor;
  47. }
  48.  
  49. template Boolean {
  50.  <4885AE61-78E8-11cf-8F52-0040333594A3>
  51.  WORD truefalse;
  52. }
  53.  
  54. template Boolean2d {
  55.  <4885AE63-78E8-11cf-8F52-0040333594A3>
  56.  Boolean u;
  57.  Boolean v;
  58. }
  59.  
  60. template MaterialWrap {
  61.  <4885AE60-78E8-11cf-8F52-0040333594A3>
  62.  Boolean u;
  63.  Boolean v;
  64. }
  65.  
  66. template TextureFilename {
  67.  <A42790E1-7810-11cf-8F52-0040333594A3>
  68.  STRING filename;
  69. }
  70.  
  71. template Material {
  72.  <3D82AB4D-62DA-11cf-AB39-0020AF71E433>
  73.  ColorRGBA faceColor;
  74.  FLOAT power;
  75.  ColorRGB specularColor;
  76.  ColorRGB emissiveColor;
  77.  [...]
  78. }
  79.  
  80. template MeshFace {
  81.  <3D82AB5F-62DA-11cf-AB39-0020AF71E433>
  82.  DWORD nFaceVertexIndices;
  83.  array DWORD faceVertexIndices[nFaceVertexIndices];
  84. }
  85.  
  86. template MeshFaceWraps {
  87.  <4885AE62-78E8-11cf-8F52-0040333594A3>
  88.  DWORD nFaceWrapValues;
  89.  Boolean2d faceWrapValues;
  90. }
  91.  
  92. template MeshTextureCoords {
  93.  <F6F23F40-7686-11cf-8F52-0040333594A3>
  94.  DWORD nTextureCoords;
  95.  array Coords2d textureCoords[nTextureCoords];
  96. }
  97.  
  98. template MeshMaterialList {
  99.  <F6F23F42-7686-11cf-8F52-0040333594A3>
  100.  DWORD nMaterials;
  101.  DWORD nFaceIndexes;
  102.  array DWORD faceIndexes[nFaceIndexes];
  103.  [Material]
  104. }
  105.  
  106. template MeshNormals {
  107.  <F6F23F43-7686-11cf-8F52-0040333594A3>
  108.  DWORD nNormals;
  109.  array Vector normals[nNormals];
  110.  DWORD nFaceNormals;
  111.  array MeshFace faceNormals[nFaceNormals];
  112. }
  113.  
  114. template MeshVertexColors {
  115.  <1630B821-7842-11cf-8F52-0040333594A3>
  116.  DWORD nVertexColors;
  117.  array IndexedColor vertexColors[nVertexColors];
  118. }
  119.  
  120. template Mesh {
  121.  <3D82AB44-62DA-11cf-AB39-0020AF71E433>
  122.  DWORD nVertices;
  123.  array Vector vertices[nVertices];
  124.  DWORD nFaces;
  125.  array MeshFace faces[nFaces];
  126.  [...]
  127. }
  128.  
  129. Header {
  130.  1;
  131.  0;
  132.  1;
  133. }
  134.  
  135. Material Mathuta {
  136.  1.000000;1.000000;1.000000;1.000000;;
  137.  21.333333;
  138.  0.000000;0.000000;0.000000;;
  139.  0.000000;0.000000;0.000000;;
  140.  TextureFilename {
  141.   "tex/wpn/é▓é▌öáé╙é╜.bmp";
  142.  }
  143. }
  144. Material Matsita {
  145.  1.000000;1.000000;1.000000;1.000000;;
  146.  21.333333;
  147.  0.000000;0.000000;0.000000;;
  148.  0.000000;0.000000;0.000000;;
  149.  TextureFilename {
  150.   "tex/wpn/é▓é▌öáÆΩ.bmp";
  151.  }
  152. }
  153. Material Mathako {
  154.  1.000000;1.000000;1.000000;1.000000;;
  155.  21.333333;
  156.  0.000000;0.000000;0.000000;;
  157.  0.000000;0.000000;0.000000;;
  158.  TextureFilename {
  159.   "tex/wpn/é▓é▌öá.bmp";
  160.  }
  161. }
  162. Mesh {
  163.  32;
  164.  0.200000;0.346410;-0.500000;,
  165.  0.400000;0.000000;-0.500000;,
  166.  0.200000;-0.346410;-0.500000;,
  167.  -0.200000;-0.346410;-0.500000;,
  168.  -0.400000;-0.000000;-0.500000;,
  169.  -0.200000;0.346410;-0.500000;,
  170.  0.250000;0.433013;0.500000;,
  171.  0.500000;0.000000;0.500000;,
  172.  0.250000;-0.433013;0.500000;,
  173.  -0.250000;-0.433013;0.500000;,
  174.  -0.500000;-0.000000;0.500000;,
  175.  -0.250000;0.433013;0.500000;,
  176.  0.225000;0.389711;0.600000;,
  177.  -0.225000;0.389711;0.600000;,
  178.  -0.450000;-0.000000;0.600000;,
  179.  -0.225000;-0.389711;0.600000;,
  180.  0.225000;-0.389711;0.600000;,
  181.  0.450000;0.000000;0.600000;,
  182.  0.250000;0.433013;0.500000;,
  183.  0.500000;0.000000;0.500000;,
  184.  0.400000;0.000000;-0.500000;,
  185.  0.200000;0.346410;-0.500000;,
  186.  0.250000;-0.433013;0.500000;,
  187.  0.200000;-0.346410;-0.500000;,
  188.  -0.250000;-0.433013;0.500000;,
  189.  -0.200000;-0.346410;-0.500000;,
  190.  -0.250000;-0.433013;0.500000;,
  191.  -0.500000;-0.000000;0.500000;,
  192.  -0.400000;-0.000000;-0.500000;,
  193.  -0.200000;-0.346410;-0.500000;,
  194.  -0.250000;0.433013;0.500000;,
  195.  -0.200000;0.346410;-0.500000;;
  196.  
  197.  14;
  198.  4;13,12,6,11;,
  199.  4;14,13,11,10;,
  200.  4;15,14,10,9;,
  201.  4;16,15,9,8;,
  202.  4;17,16,8,7;,
  203.  4;12,17,7,6;,
  204.  6;0,1,2,3,4,5;,
  205.  4;18,19,20,21;,
  206.  4;19,22,23,20;,
  207.  4;22,24,25,23;,
  208.  4;26,27,28,29;,
  209.  4;27,30,31,28;,
  210.  4;30,18,21,31;,
  211.  6;12,13,14,15,16,17;;
  212.  
  213.  MeshMaterialList {
  214.   3;
  215.   14;
  216.   0,
  217.   0,
  218.   0,
  219.   0,
  220.   0,
  221.   0,
  222.   1,
  223.   2,
  224.   2,
  225.   2,
  226.   2,
  227.   2,
  228.   2,
  229.   0;;
  230.   {Mathuta}
  231.   {Matsita}
  232.   {Mathako}
  233.  }
  234.  MeshNormals {
  235.   19;
  236.   0.000000;0.000000;-1.000000;,
  237.   -0.331498;0.574171;0.748623;,
  238.   0.331498;0.574171;0.748623;,
  239.   0.491420;0.851165;0.184458;,
  240.   -0.491420;0.851165;0.184458;,
  241.   -0.662996;-0.000000;0.748623;,
  242.   -0.982840;-0.000000;0.184458;,
  243.   -0.331498;-0.574171;0.748623;,
  244.   -0.491420;-0.851165;0.184458;,
  245.   0.331498;-0.574171;0.748623;,
  246.   0.491420;-0.851165;0.184458;,
  247.   0.662996;0.000000;0.748623;,
  248.   0.982840;0.000000;0.184458;,
  249.   0.827114;0.000000;-0.562034;,
  250.   0.413557;0.716302;-0.562034;,
  251.   0.413557;-0.716302;-0.562034;,
  252.   -0.413557;-0.716302;-0.562034;,
  253.   -0.827114;0.000000;-0.562034;,
  254.   -0.413557;0.716302;-0.562034;;
  255.  
  256.   14;
  257.   4;1,2,3,4;,
  258.   4;5,1,4,6;,
  259.   4;7,5,6,8;,
  260.   4;9,7,8,10;,
  261.   4;11,9,10,12;,
  262.   4;2,11,12,3;,
  263.   6;0,0,0,0,0,0;,
  264.   4;3,12,13,14;,
  265.   4;12,10,15,13;,
  266.   4;10,8,16,15;,
  267.   4;8,6,17,16;,
  268.   4;6,4,18,17;,
  269.   4;4,3,14,18;,
  270.   6;2,1,5,7,9,11;;
  271.  }
  272.  MeshTextureCoords {
  273.   32;
  274.   0.750000;0.000000;
  275.   1.000000;0.500000;
  276.   0.750000;1.000000;
  277.   0.250000;1.000000;
  278.   0.000000;0.500000;
  279.   0.250000;0.000000;
  280.   0.750000;0.000000;
  281.   1.000000;0.500000;
  282.   0.750000;1.000000;
  283.   0.250000;1.000000;
  284.   0.000000;0.500000;
  285.   0.250000;0.000000;
  286.   0.725000;0.050000;
  287.   0.275000;0.050000;
  288.   0.050000;0.500000;
  289.   0.275000;0.950000;
  290.   0.725000;0.950000;
  291.   0.950000;0.500000;
  292.   0.500919;0.000000;
  293.   0.750000;0.000000;
  294.   0.750000;1.000000;
  295.   0.500919;1.000000;
  296.   0.999081;0.000000;
  297.   0.999081;1.000000;
  298.   1.000919;0.000000;
  299.   1.000919;1.000000;
  300.   0.000919;0.000000;
  301.   0.250000;0.000000;
  302.   0.250000;1.000000;
  303.   0.000919;1.000000;
  304.   0.499081;0.000000;
  305.   0.499081;1.000000;;
  306.  }
  307. }
  308.