home *** CD-ROM | disk | FTP | other *** search
/ DOS/V Power Report 2000 July / VPR0007A.BIN / OLS / IDINA101 / idina101.lzh / mesh / boss2p3R.X < prev    next >
Text File  |  1999-12-04  |  9KB  |  391 lines

  1. xof 0303txt 0032
  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.  <537da6a0-ca37-11d0-941c-0080c80cfa7b>
  50.  DWORD 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.  <ed1ec5c0-c0a8-11d0-941c-0080c80cfa7b>
  87.  DWORD nFaceWrapValues;
  88.  array Boolean2d faceWrapValues[nFaceWrapValues];
  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 <3d82ab4d-62da-11cf-ab39-0020af71e433>]
  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.  
  129. Header {
  130.  1;
  131.  0;
  132.  1;
  133. }
  134.  
  135. Mesh {
  136.  98;
  137.  2.747773;-6.686503;5.584144;,
  138.  2.747773;-6.686503;5.584144;,
  139.  3.794834;-2.466764;5.584144;,
  140.  3.794834;-2.466764;5.584144;,
  141.  3.794834;-2.466764;3.084144;,
  142.  3.794834;-2.466764;3.084144;,
  143.  2.271515;-10.565320;3.084144;,
  144.  2.271515;-10.565320;3.084144;,
  145.  3.794834;-2.466764;13.584145;,
  146.  3.794834;-2.466764;13.584145;,
  147.  3.794834;-2.466764;13.584145;,
  148.  2.908140;-5.380422;11.584145;,
  149.  2.908140;-5.380422;11.584145;,
  150.  2.908140;-5.380422;11.584145;,
  151.  -3.212303;-9.891992;3.084144;,
  152.  -3.212303;-9.891992;3.084144;,
  153.  -2.736044;-6.013175;5.584144;,
  154.  -2.736044;-6.013175;5.584144;,
  155.  -2.575678;-4.707093;11.584145;,
  156.  -2.575678;-4.707093;11.584145;,
  157.  -2.575678;-4.707093;11.584145;,
  158.  -2.656715;-1.674614;5.584144;,
  159.  -2.656715;-1.674614;5.584144;,
  160.  -2.656715;-1.674614;3.084144;,
  161.  -2.656715;-1.674614;3.084144;,
  162.  -2.656715;-1.674614;13.584145;,
  163.  -2.656715;-1.674614;13.584145;,
  164.  -2.656715;-1.674614;13.584145;,
  165.  3.794834;-2.466764;-5.915856;,
  166.  3.794834;-2.466764;-5.915856;,
  167.  2.327416;-10.110040;-9.373117;,
  168.  2.327416;-10.110040;-9.373117;,
  169.  -3.156401;-9.436711;-9.373117;,
  170.  -3.156401;-9.436711;-9.373117;,
  171.  -2.656715;-1.674614;-5.915856;,
  172.  -2.656715;-1.674614;-5.915856;,
  173.  3.956129;-1.153123;-11.347093;,
  174.  3.956129;-1.153123;-11.347093;,
  175.  3.956129;-1.153123;-11.347093;,
  176.  2.822710;-6.076190;-13.584145;,
  177.  2.822710;-6.076190;-13.584145;,
  178.  2.822710;-6.076190;-13.584145;,
  179.  -2.661106;-5.402862;-13.584145;,
  180.  -2.661106;-5.402862;-13.584145;,
  181.  -2.661106;-5.402862;-13.584145;,
  182.  -2.495420;-0.360973;-11.347093;,
  183.  -2.495420;-0.360973;-11.347093;,
  184.  -2.495420;-0.360973;-11.347093;,
  185.  2.594025;10.565320;10.584145;,
  186.  2.594025;10.565320;10.584145;,
  187.  2.594025;10.565320;10.584145;,
  188.  2.594025;10.565320;-3.915856;,
  189.  2.594025;10.565320;-3.915856;,
  190.  3.857850;2.143422;-3.915856;,
  191.  3.857850;2.143422;-3.915856;,
  192.  3.857850;2.143422;13.584145;,
  193.  3.857850;2.143422;13.584145;,
  194.  3.857850;2.143422;13.584145;,
  195.  3.770695;3.139617;-9.415855;,
  196.  3.770695;3.139617;-9.415855;,
  197.  3.770695;3.139617;-9.415855;,
  198.  2.768336;8.572931;-9.415855;,
  199.  2.768336;8.572931;-9.415855;,
  200.  2.768336;8.572931;-9.415855;,
  201.  -2.909950;10.083785;10.584145;,
  202.  -2.909950;10.083785;10.584145;,
  203.  -2.909950;10.083785;10.584145;,
  204.  -2.909950;10.083785;-3.915856;,
  205.  -2.909950;10.083785;-3.915856;,
  206.  -2.735640;8.091395;-9.415855;,
  207.  -2.735640;8.091395;-9.415855;,
  208.  -2.735640;8.091395;-9.415855;,
  209.  -2.704571;2.573105;-9.415855;,
  210.  -2.704571;2.573105;-9.415855;,
  211.  -2.704571;2.573105;-9.415855;,
  212.  -2.617414;1.576910;-3.915856;,
  213.  -2.617414;1.576910;-3.915856;,
  214.  -2.617414;1.576910;13.584145;,
  215.  -2.617414;1.576910;13.584145;,
  216.  -2.617414;1.576910;13.584145;,
  217.  -7.000000;-3.160747;5.844144;,
  218.  -7.000000;-0.112337;7.604145;,
  219.  -4.500000;-0.112337;9.584145;,
  220.  -4.500000;-0.112337;9.584145;,
  221.  -4.500000;-4.875477;6.834144;,
  222.  -4.500000;-4.875477;6.834144;,
  223.  -7.000000;2.936072;5.844144;,
  224.  -4.500000;4.650803;6.834144;,
  225.  -4.500000;4.650803;6.834144;,
  226.  -7.000000;2.936072;2.324144;,
  227.  -4.500000;4.650803;1.334144;,
  228.  -4.500000;4.650803;1.334144;,
  229.  -7.000000;-0.112337;0.564144;,
  230.  -4.500000;-0.112337;-1.415856;,
  231.  -4.500000;-0.112337;-1.415856;,
  232.  -7.000000;-3.160747;2.324144;,
  233.  -4.500000;-4.875477;1.334144;,
  234.  -4.500000;-4.875477;1.334144;;
  235.  36;
  236.  4;47,37,39,44;,
  237.  4;20,13,9,27;,
  238.  4;74,69,63,59;,
  239.  4;66,77,56,49;,
  240.  6;83,85,97,94,91,88;,
  241.  4;0,7,5,3;,
  242.  4;8,11,0,3;,
  243.  4;21,23,14,17;,
  244.  4;26,21,17,19;,
  245.  4;7,30,28,5;,
  246.  4;14,23,34,33;,
  247.  4;38,28,30,40;,
  248.  4;43,33,34,45;,
  249.  4;50,57,53,51;,
  250.  4;58,62,51,53;,
  251.  4;64,68,76,79;,
  252.  4;71,72,76,68;,
  253.  4;80,84,82,81;,
  254.  4;81,82,87,86;,
  255.  4;86,87,90,89;,
  256.  4;89,90,93,92;,
  257.  4;92,93,96,95;,
  258.  4;95,96,84,80;,
  259.  6;81,86,89,92,95,80;,
  260.  4;15,6,1,16;,
  261.  4;12,18,16,1;,
  262.  4;4,24,22,2;,
  263.  4;25,10,2,22;,
  264.  4;32,31,6,15;,
  265.  4;35,24,4,29;,
  266.  4;41,31,32,42;,
  267.  4;36,46,35,29;,
  268.  4;48,52,67,65;,
  269.  4;61,70,67,52;,
  270.  4;60,54,75,73;,
  271.  4;55,78,75,54;;
  272.  
  273.  MeshMaterialList {
  274.   1;
  275.   1;
  276.   0;
  277.  
  278.   Material {
  279.    1.000000;1.000000;1.000000;1.000000;;
  280.    21.333332;
  281.    0.000000;0.000000;0.000000;;
  282.    0.000000;0.000000;0.000000;;
  283.  
  284.    TextureFilename {
  285.     "boss2p3R.bmp";
  286.    }
  287.   }
  288.  }
  289.  
  290.  MeshTextureCoords {
  291.   98;
  292.   0.628906;0.119141;,
  293.   0.621094;0.166016;,
  294.   0.623047;0.244141;,
  295.   0.628906;0.253906;,
  296.   0.558594;0.236328;,
  297.   0.558594;0.255859;,
  298.   0.566406;0.111328;,
  299.   0.558594;0.052734;,
  300.   0.828125;0.257813;,
  301.   0.787109;0.234375;,
  302.   0.832031;0.248047;,
  303.   0.798828;0.199219;,
  304.   0.742188;0.195313;,
  305.   0.736328;0.205078;,
  306.   0.556641;0.056641;,
  307.   0.550781;0.054688;,
  308.   0.634766;0.109375;,
  309.   0.630859;0.123047;,
  310.   0.753906;0.158203;,
  311.   0.798828;0.199219;,
  312.   0.734375;0.160156;,
  313.   0.628906;0.253906;,
  314.   0.623047;0.283203;,
  315.   0.558594;0.255859;,
  316.   0.554688;0.277344;,
  317.   0.828125;0.289063;,
  318.   0.828125;0.261719;,
  319.   0.794922;0.193359;,
  320.   0.294922;0.259766;,
  321.   0.294922;0.248047;,
  322.   0.207031;0.064453;,
  323.   0.234375;0.128906;,
  324.   0.199219;0.087891;,
  325.   0.205078;0.064453;,
  326.   0.298828;0.257813;,
  327.   0.302734;0.287109;,
  328.   0.169922;0.302734;,
  329.   0.152344;0.312500;,
  330.   0.173828;0.310547;,
  331.   0.091797;0.187500;,
  332.   0.099609;0.166016;,
  333.   0.128906;0.158203;,
  334.   0.119141;0.130859;,
  335.   0.105469;0.166016;,
  336.   0.068359;0.195313;,
  337.   0.171875;0.310547;,
  338.   0.183594;0.341797;,
  339.   0.117188;0.310547;,
  340.   0.703125;0.904297;,
  341.   0.812500;0.619141;,
  342.   0.695313;0.927734;,
  343.   0.292969;0.935547;,
  344.   0.291016;0.904297;,
  345.   0.294922;0.705078;,
  346.   0.292969;0.720703;,
  347.   0.761719;0.740234;,
  348.   0.796875;0.464844;,
  349.   0.746094;0.707031;,
  350.   0.167969;0.730469;,
  351.   0.166016;0.732422;,
  352.   0.179688;0.753906;,
  353.   0.177734;0.880859;,
  354.   0.167969;0.892578;,
  355.   0.148438;0.876953;,
  356.   0.695313;0.923828;,
  357.   0.703125;0.949219;,
  358.   0.917969;0.621094;,
  359.   0.292969;0.953125;,
  360.   0.291016;0.935547;,
  361.   0.107422;0.861328;,
  362.   0.181641;0.925781;,
  363.   0.166016;0.896484;,
  364.   0.164063;0.728516;,
  365.   0.173828;0.695313;,
  366.   0.109375;0.734375;,
  367.   0.277344;0.660156;,
  368.   0.291016;0.705078;,
  369.   0.935547;0.466797;,
  370.   0.763672;0.689453;,
  371.   0.750000;0.703125;,
  372.   0.347656;0.464844;,
  373.   0.314453;0.527344;,
  374.   0.267578;0.531250;,
  375.   0.712891;0.519531;,
  376.   0.326172;0.423828;,
  377.   0.681641;0.451172;,
  378.   0.355469;0.591797;,
  379.   0.328125;0.630859;,
  380.   0.673828;0.595703;,
  381.   0.431641;0.591797;,
  382.   0.460938;0.630859;,
  383.   0.597656;0.593750;,
  384.   0.472656;0.525391;,
  385.   0.519531;0.521484;,
  386.   0.564453;0.523438;,
  387.   0.433594;0.462891;,
  388.   0.451172;0.421875;,
  389.   0.595703;0.453125;;
  390.  }
  391. }