Cube.cpp 9.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270
  1. #include "Cube.h"
  2. #include "DXBuffer.h"
  3. #include "Textur.h"
  4. #include "Globals.h"
  5. #include "Model3DList.h"
  6. #include "TexturList.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. for( int i = 0; i < 6; i++ )
  15. texturUpdate[ i ] = 0;
  16. if( m3dRegister->hatModel( Standart3DTypes::würfel ) )
  17. model = m3dRegister->getModel( Standart3DTypes::würfel );
  18. else
  19. {
  20. model = new Model3DData();
  21. m3dRegister->addModel( model->getThis(), Standart3DTypes::würfel );
  22. float stdSize = 100;
  23. float left, right, top, bottom;
  24. // Calculate the screen coordinates of the left side of the bitmap.
  25. left = (float)( ( stdSize / 2.0 ) * -1 );
  26. // Calculate the screen coordinates of the right side of the bitmap.
  27. right = left + (float)stdSize;
  28. // Calculate the screen coordinates of the top of the bitmap.
  29. top = (float)( stdSize / 2.0 );
  30. // Calculate the screen coordinates of the bottom of the bitmap.
  31. bottom = top - (float)stdSize;
  32. float front = -stdSize / 2;
  33. float back = front + stdSize;
  34. Vertex3D *vertecies = new Vertex3D[ 24 ];
  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->setLänge( 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->setLänge( 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->setLänge( 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->setLänge( 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->setLänge( 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->setLänge( 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. // Destruktor
  166. Cube::~Cube()
  167. {
  168. }
  169. // Setzt die Textur des Würfels, so dass sie an allen Seiten gleich ist
  170. // textur: Die Textur als Bild
  171. void Cube::setTextur( Bild *textur )
  172. {
  173. Textur *t = new Textur();
  174. t->setBildZ( textur );
  175. this->textur->setPolygonTextur( LINKS, t->getThis() );
  176. this->textur->setPolygonTextur( OBEN, t->getThis() );
  177. this->textur->setPolygonTextur( RECHTS, t->getThis() );
  178. this->textur->setPolygonTextur( UNTEN, t->getThis() );
  179. this->textur->setPolygonTextur( VORNE, t->getThis() );
  180. this->textur->setPolygonTextur( HINTEN, t );
  181. for( int i = 0; i < 6; i++ )
  182. texturUpdate[ i ] = 1;
  183. rend = 1;
  184. }
  185. // Setzt die Textur des Würfels, so dass sie an allen Seiten gleich ist
  186. // id: Die id der Textur. Sie muss im Textur Register des Frameworks registriert sein
  187. void Cube::setTextur( int id )
  188. {
  189. Textur *t = texturRegister->getTextur( id );
  190. if( !t )
  191. return;
  192. this->textur->setPolygonTextur( LINKS, t->getThis() );
  193. this->textur->setPolygonTextur( OBEN, t->getThis() );
  194. this->textur->setPolygonTextur( RECHTS, t->getThis() );
  195. this->textur->setPolygonTextur( UNTEN, t->getThis() );
  196. this->textur->setPolygonTextur( VORNE, t->getThis() );
  197. this->textur->setPolygonTextur( HINTEN, t );
  198. for( int i = 0; i < 6; i++ )
  199. texturUpdate[ i ] = 1;
  200. rend = 1;
  201. }
  202. // Setzt die Textur von einer bestimmten Seite des Würfels
  203. // textur: Die Textur als Bild
  204. // s: Die Seite, die gesetzt werden soll
  205. void Cube::setTextur( Bild *textur, CubeSeite s )
  206. {
  207. Textur *t = new Textur();
  208. t->setBildZ( textur );
  209. this->textur->setPolygonTextur( s, t );
  210. texturUpdate[ s ] = 1;
  211. rend = 1;
  212. }
  213. // Setzt die Textur von einer bestimmten Seite des Würfels
  214. // id: Die id der Textur. Sie muss im Textur Register des Frameworks registriert sein
  215. // s: Die Seite, die gesetzt werden soll
  216. void Cube::setTextur( int id, CubeSeite s )
  217. {
  218. Textur *t = texturRegister->getTextur( id );
  219. if( !t )
  220. return;
  221. this->textur->setPolygonTextur( s, t );
  222. texturUpdate[ s ] = 1;
  223. rend = 1;
  224. }
  225. // Zeichnet den Würfel
  226. // zRObj: Ein Zeiger auf das Objekt, das zum Zeichnen verwendet werden soll (ohne erhöhten Reference Counter)
  227. void Cube::render( Render3D *zRObj )
  228. {
  229. Array< Textur* > tmp;
  230. for( int i = 0; i < 6; i++ )
  231. {
  232. if( texturUpdate[ i ] )
  233. {
  234. Textur *t = textur->zPolygonTextur( i );
  235. if( tmp.getWertIndex( t ) < 0 )
  236. {
  237. //t->updateTextur( zRObj );
  238. tmp.add( t );
  239. }
  240. texturUpdate[ i ] = 0;
  241. }
  242. }
  243. __super::render( zRObj );
  244. }
  245. // Verringert den Reference Counting Zähler. Wenn der Zähler 0 erreicht, wird das Zeichnung automatisch gelöscht.
  246. // return: 0.
  247. Model3D *Cube::release()
  248. {
  249. ref--;
  250. if( !ref )
  251. delete this;
  252. return 0;
  253. }