Cube.cpp 9.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237
  1. #include "Cube.h"
  2. #include "Textur.h"
  3. #include "Globals.h"
  4. #include "Model3DList.h"
  5. #include "TexturList.h"
  6. #include "DXBuffer.h"
  7. using namespace Framework;
  8. // Inhalt der Cube Klasse
  9. // Konstruktor
  10. // size: Die Größe des Würfels
  11. Cube::Cube( float size )
  12. : Model3D()
  13. {
  14. if( m3dRegister->hatModel( Standart3DTypes::cube ) )
  15. model = m3dRegister->getModel( Standart3DTypes::cube );
  16. else
  17. {
  18. model = new Model3DData();
  19. m3dRegister->addModel( model->getThis(), Standart3DTypes::cube );
  20. float stdSize = 100;
  21. float left, right, top, bottom;
  22. // Calculate the screen coordinates of the left side of the bitmap.
  23. left = (float)( ( stdSize / 2.0 ) * -1 );
  24. // Calculate the screen coordinates of the right side of the bitmap.
  25. right = left + (float)stdSize;
  26. // Calculate the screen coordinates of the top of the bitmap.
  27. top = (float)( stdSize / 2.0 );
  28. // Calculate the screen coordinates of the bottom of the bitmap.
  29. bottom = top - (float)stdSize;
  30. float front = -stdSize / 2;
  31. float back = front + stdSize;
  32. Vertex3D *vertecies = new Vertex3D[ 24 ];
  33. for( int i = 0; i < 24; i++ )
  34. vertecies[ i ].knochenId = 0;
  35. vertecies[ 0 ].pos = Vec3<float >( left, top, front );
  36. vertecies[ 0 ].tPos = Vec2< float >( 0.f, 0.f );
  37. vertecies[ 1 ].pos = Vec3<float >( right, top, front );
  38. vertecies[ 1 ].tPos = Vec2< float >( 1.f, 0.f );
  39. vertecies[ 2 ].pos = Vec3<float >( left, bottom, front );
  40. vertecies[ 2 ].tPos = Vec2< float >( 0.f, 1.f );
  41. vertecies[ 3 ].pos = Vec3<float >( right, bottom, front );
  42. vertecies[ 3 ].tPos = Vec2< float >( 1.f, 1.f );
  43. vertecies[ 4 ].pos = Vec3<float >( left, top, back );
  44. vertecies[ 4 ].tPos = Vec2< float >( 0.0f, 0.0f );
  45. vertecies[ 5 ].pos = Vec3<float >( right, top, back );
  46. vertecies[ 5 ].tPos = Vec2< float >( 1.0f, 0.0f );
  47. vertecies[ 6 ].pos = Vec3<float >( left, bottom, back );
  48. vertecies[ 6 ].tPos = Vec2< float >( 0.0f, 1.0f );
  49. vertecies[ 7 ].pos = Vec3<float >( right, bottom, back );
  50. vertecies[ 7 ].tPos = Vec2< float >( 1.0f, 1.0f );
  51. vertecies[ 8 ].pos = Vec3<float >( left, top, front );
  52. vertecies[ 8 ].tPos = Vec2< float >( 1.f, 0.f );
  53. vertecies[ 9 ].pos = Vec3<float >( right, top, front );
  54. vertecies[ 9 ].tPos = Vec2< float >( 0.f, 0.f );
  55. vertecies[ 10 ].pos = Vec3<float >( left, bottom, front );
  56. vertecies[ 10 ].tPos = Vec2< float >( 1.f, 1.f );
  57. vertecies[ 11 ].pos = Vec3<float >( right, bottom, front );
  58. vertecies[ 11 ].tPos = Vec2< float >( 0.f, 1.f );
  59. vertecies[ 12 ].pos = Vec3<float >( left, top, back );
  60. vertecies[ 12 ].tPos = Vec2< float >( 0.0f, 0.0f );
  61. vertecies[ 13 ].pos = Vec3<float >( right, top, back );
  62. vertecies[ 13 ].tPos = Vec2< float >( 1.0f, 0.0f );
  63. vertecies[ 14 ].pos = Vec3<float >( left, bottom, back );
  64. vertecies[ 14 ].tPos = Vec2< float >( 0.0f, 1.0f );
  65. vertecies[ 15 ].pos = Vec3<float >( right, bottom, back );
  66. vertecies[ 15 ].tPos = Vec2< float >( 1.0f, 1.0f );
  67. vertecies[ 16 ].pos = Vec3<float >( left, top, front );
  68. vertecies[ 16 ].tPos = Vec2< float >( 0.f, 1.f );
  69. vertecies[ 17 ].pos = Vec3<float >( right, top, front );
  70. vertecies[ 17 ].tPos = Vec2< float >( 1.f, 1.f );
  71. vertecies[ 18 ].pos = Vec3<float >( left, bottom, front );
  72. vertecies[ 18 ].tPos = Vec2< float >( 0.f, 0.f );
  73. vertecies[ 19 ].pos = Vec3<float >( right, bottom, front );
  74. vertecies[ 19 ].tPos = Vec2< float >( 1.f, 0.f );
  75. vertecies[ 20 ].pos = Vec3<float >( left, top, back );
  76. vertecies[ 20 ].tPos = Vec2< float >( 0.0f, 0.0f );
  77. vertecies[ 21 ].pos = Vec3<float >( right, top, back );
  78. vertecies[ 21 ].tPos = Vec2< float >( 1.0f, 0.0f );
  79. vertecies[ 22 ].pos = Vec3<float >( left, bottom, back );
  80. vertecies[ 22 ].tPos = Vec2< float >( 0.0f, 1.0f );
  81. vertecies[ 23 ].pos = Vec3<float >( right, bottom, back );
  82. vertecies[ 23 ].tPos = Vec2< float >( 1.0f, 1.0f );
  83. model->setVertecies( vertecies, 24 );
  84. // front side
  85. Polygon3D *p = new Polygon3D();
  86. p->indexAnz = 6;
  87. p->indexList = new int[ p->indexAnz ];
  88. p->indexBuffer->setLength( p->indexAnz * 4 );
  89. p->indexBuffer->setData( p->indexList );
  90. p->indexList[ 0 ] = 0;
  91. p->indexList[ 1 ] = 3;
  92. p->indexList[ 2 ] = 2;
  93. p->indexList[ 3 ] = 0;
  94. p->indexList[ 4 ] = 1;
  95. p->indexList[ 5 ] = 3;
  96. model->addPolygon( p );
  97. // back side
  98. p = new Polygon3D();
  99. p->indexAnz = 6;
  100. p->indexList = new int[ p->indexAnz ];
  101. p->indexBuffer->setLength( p->indexAnz * 4 );
  102. p->indexBuffer->setData( p->indexList );
  103. p->indexList[ 0 ] = 4;
  104. p->indexList[ 1 ] = 6;
  105. p->indexList[ 2 ] = 7;
  106. p->indexList[ 3 ] = 4;
  107. p->indexList[ 4 ] = 7;
  108. p->indexList[ 5 ] = 5;
  109. model->addPolygon( p );
  110. // right side
  111. p = new Polygon3D();
  112. p->indexAnz = 6;
  113. p->indexList = new int[ p->indexAnz ];
  114. p->indexBuffer->setLength( p->indexAnz * 4 );
  115. p->indexBuffer->setData( p->indexList );
  116. p->indexList[ 0 ] = 1 + 8;
  117. p->indexList[ 1 ] = 7 + 8;
  118. p->indexList[ 2 ] = 3 + 8;
  119. p->indexList[ 3 ] = 1 + 8;
  120. p->indexList[ 4 ] = 5 + 8;
  121. p->indexList[ 5 ] = 7 + 8;
  122. model->addPolygon( p );
  123. // left side
  124. p = new Polygon3D();
  125. p->indexAnz = 6;
  126. p->indexList = new int[ p->indexAnz ];
  127. p->indexBuffer->setLength( p->indexAnz * 4 );
  128. p->indexBuffer->setData( p->indexList );
  129. p->indexList[ 0 ] = 0 + 8;
  130. p->indexList[ 1 ] = 2 + 8;
  131. p->indexList[ 2 ] = 6 + 8;
  132. p->indexList[ 3 ] = 0 + 8;
  133. p->indexList[ 4 ] = 6 + 8;
  134. p->indexList[ 5 ] = 4 + 8;
  135. model->addPolygon( p );
  136. // top side
  137. p = new Polygon3D();
  138. p->indexAnz = 6;
  139. p->indexList = new int[ p->indexAnz ];
  140. p->indexBuffer->setLength( p->indexAnz * 4 );
  141. p->indexBuffer->setData( p->indexList );
  142. p->indexList[ 0 ] = 4 + 16;
  143. p->indexList[ 1 ] = 1 + 16;
  144. p->indexList[ 2 ] = 0 + 16;
  145. p->indexList[ 3 ] = 4 + 16;
  146. p->indexList[ 4 ] = 5 + 16;
  147. p->indexList[ 5 ] = 1 + 16;
  148. model->addPolygon( p );
  149. // down side
  150. p = new Polygon3D();
  151. p->indexAnz = 6;
  152. p->indexList = new int[ p->indexAnz ];
  153. p->indexBuffer->setLength( p->indexAnz * 4 );
  154. p->indexBuffer->setData( p->indexList );
  155. p->indexList[ 0 ] = 6 + 16;
  156. p->indexList[ 1 ] = 2 + 16;
  157. p->indexList[ 2 ] = 3 + 16;
  158. p->indexList[ 3 ] = 6 + 16;
  159. p->indexList[ 4 ] = 3 + 16;
  160. p->indexList[ 5 ] = 7 + 16;
  161. model->addPolygon( p );
  162. }
  163. textur = new Model3DTextur();
  164. }
  165. // Setzt die Textur des Würfels, so dass sie an allen Seiten gleich ist
  166. // textur: Die Textur als Bild
  167. void Cube::setTextur( Bild *textur )
  168. {
  169. Textur *t = new Textur();
  170. t->setBildZ( textur );
  171. this->textur->setPolygonTextur( LINKS, t->getThis() );
  172. this->textur->setPolygonTextur( OBEN, t->getThis() );
  173. this->textur->setPolygonTextur( RECHTS, t->getThis() );
  174. this->textur->setPolygonTextur( UNTEN, t->getThis() );
  175. this->textur->setPolygonTextur( VORNE, t->getThis() );
  176. this->textur->setPolygonTextur( HINTEN, t );
  177. rend = 1;
  178. }
  179. // Setzt die Textur des Würfels, so dass sie an allen Seiten gleich ist
  180. // id: Die id der Textur. Sie muss im Textur Register des Frameworks registriert sein
  181. void Cube::setTextur( int id )
  182. {
  183. Textur *t = texturRegister->getTextur( id );
  184. if( !t )
  185. return;
  186. this->textur->setPolygonTextur( LINKS, t->getThis() );
  187. this->textur->setPolygonTextur( OBEN, t->getThis() );
  188. this->textur->setPolygonTextur( RECHTS, t->getThis() );
  189. this->textur->setPolygonTextur( UNTEN, t->getThis() );
  190. this->textur->setPolygonTextur( VORNE, t->getThis() );
  191. this->textur->setPolygonTextur( HINTEN, t );
  192. rend = 1;
  193. }
  194. // Setzt die Textur von einer bestimmten Seite des Würfels
  195. // textur: Die Textur als Bild
  196. // s: Die Seite, die gesetzt werden soll
  197. void Cube::setTextur( Bild *textur, CubeSeite s )
  198. {
  199. Textur *t = new Textur();
  200. t->setBildZ( textur );
  201. this->textur->setPolygonTextur( s, t );
  202. rend = 1;
  203. }
  204. // Setzt die Textur von einer bestimmten Seite des Würfels
  205. // id: Die id der Textur. Sie muss im Textur Register des Frameworks registriert sein
  206. // s: Die Seite, die gesetzt werden soll
  207. void Cube::setTextur( int id, CubeSeite s )
  208. {
  209. Textur *t = texturRegister->getTextur( id );
  210. if( !t )
  211. return;
  212. this->textur->setPolygonTextur( s, t );
  213. rend = 1;
  214. }
  215. // Verringert den Reference Counting Zähler. Wenn der Zähler 0 erreicht, wird das Zeichnung automatisch gelöscht.
  216. // return: 0.
  217. Model3D *Cube::release()
  218. {
  219. ref--;
  220. if( !ref )
  221. delete this;
  222. return 0;
  223. }