Jeu.cpp 6.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199
  1. #include "Jeu.h"
  2. Jeu::Jeu()
  3. :m_screen(0x0), m_sprites("Textures/"), m_cursor(0x0), m_terrain(0x0),
  4. m_input(0x0), m_tirsGest(0x0), m_armGest(0x0), m_persosGest(0x0),
  5. m_support(0x0), m_persoFocus(0x0), m_nbJoueurs(1)
  6. {}
  7. Jeu::~Jeu()
  8. {
  9. SDL_FreeSurface(m_screen);
  10. if ( m_terrain != 0x0 ) delete m_terrain;
  11. if ( m_input != 0x0 ) delete m_input;
  12. if ( m_tirsGest != 0x0 ) delete m_tirsGest;
  13. if ( m_persosGest != 0x0 ) delete m_persosGest;
  14. if ( m_armGest != 0x0 ) delete m_armGest;
  15. if ( m_support != 0x0 ) {
  16. if ( m_nbJoueurs > 1 )
  17. for ( Uint16 i(0); i<m_nbJoueurs; i++ )
  18. SDL_FreeSurface( m_support[i] );
  19. delete[] m_support;
  20. }
  21. if ( m_persoFocus != 0x0 ) delete[] m_persoFocus;
  22. SDL_Quit();
  23. }
  24. bool Jeu::init()
  25. {
  26. /// [1] Démarrage
  27. // [1.1] Démarrages SDL
  28. if ( SDL_Init( SDL_INIT_VIDEO ) < 0)
  29. {
  30. std::cout << "Impossible d'initialiser la SDL: " << SDL_GetError() << std::endl;
  31. return false;
  32. }
  33. // [1.2] Para-fenêtre
  34. SDL_WM_SetCaption("Hyper Gunner Bêta", 0);
  35. // [1.3] Nombres aléatoires
  36. srand( time(0) );
  37. /// [2] Préparation des composants
  38. // [2.1] Préparation des surfaces
  39. const SDL_VideoInfo* ecran = SDL_GetVideoInfo(); // Acquisition des dimensions de l'écran
  40. m_screen = SDL_SetVideoMode(/*ecran->current_w*/1366, /*ecran->current_h*/768, 32, SDL_HWSURFACE|SDL_DOUBLEBUF/*|SDL_FULLSCREEN*/);
  41. if ( !m_screen )
  42. {
  43. std::cout << "Impossible de créer une fenêtre " <<ecran->current_w<<'*'<<ecran->current_h<< " : " << SDL_GetError() << std::endl;
  44. return false;
  45. }
  46. else std::cout << "Création d'une fenêtre " <<ecran->current_w<<'*'<<ecran->current_h<< std::endl;
  47. m_cursor = m_sprites.takeSprite("ViseurUsiane");
  48. SDL_SetColorKey(m_cursor, SDL_SRCCOLORKEY, SDL_MapRGB(m_cursor->format, 255, 255, 255));
  49. // [2.2] Préparation terrain
  50. m_terrain = new Terrain(m_sprites.takeSprite("SiteCrash"));
  51. m_sprites.destroySprite("SiteCrash"); // Le terrain s'en servait pour remplir ses chunks, il faut la libérer
  52. // [2.3] Préparation input
  53. m_input = new InputAndJoy;
  54. m_input->placerPtr(m_screen);
  55. m_input->afficherPointeur(false);
  56. if ( m_input->getMainCtrl() == MANETTE ) m_nbJoueurs++;
  57. // [2.3.1] Préparation écran scindé
  58. m_persoFocus = new Perso*[m_nbJoueurs];
  59. m_support = new SDL_Surface*[m_nbJoueurs];
  60. if ( m_nbJoueurs > 1 ) { // Multijoueur
  61. for ( Uint16 i(0); i < m_nbJoueurs; i++ ) {
  62. m_support[i] = SDL_CreateRGBSurface( SDL_HWSURFACE, ecran->current_w/m_nbJoueurs, ecran->current_h, 32, 0, 0, 0, 0);
  63. SDL_FillRect( m_support[i], 0, 0xff0000 );
  64. }
  65. m_scinde.x = ecran->current_w/m_nbJoueurs;
  66. m_scinde.y = 0;
  67. }
  68. else { // Solo
  69. m_support[0] = m_screen;
  70. }
  71. // [2.4.1] Préaparation du gestionnaire de tirs
  72. m_tirsGest = new Tirs_Gest(m_sprites.takeSprite("BlueTir"), m_sprites.takeSprite("RedTir"));
  73. // [2.4.2] Préparation du gestionnaire des armes
  74. m_armGest = new Armes_Gest( &m_sprites );
  75. /* TEST ARMES
  76. m_armGest->drop( Vec( 250.0f, -10.0f ), new Shotgun( m_tirsGest ) );
  77. m_armGest->drop( Vec( -250.0f, 10.0f ), new Bomber( m_tirsGest ) );*/
  78. // [2.5] Préparation perso(s) focus
  79. HardCtrl* ctrl(0x0);
  80. if ( m_input->getMainCtrl() != CLAVIER_SOURIS && m_input->getMainCtrl() != MANETTE ) return false;
  81. ctrl = new ClavierCtrl(m_input);
  82. m_persoFocus[0] = new Perso(m_sprites.takeSprite("Allie"), m_sprites.takeSprite("Mort"), ctrl, m_tirsGest, true, m_armGest);
  83. if ( m_nbJoueurs == 2 ) {
  84. ctrl = new JoyCtrl(m_input);
  85. m_persoFocus[1] = new Perso(m_sprites.takeSprite("Allie"), m_sprites.takeSprite("Mort"), ctrl, m_tirsGest, true, m_armGest);
  86. }
  87. // [2.6] Préparation du gestionnaire de persos
  88. m_persosGest = new Persos_Gest();
  89. for ( Uint16 i(0); i < m_nbJoueurs; i++ )
  90. m_persosGest->addAllie(m_persoFocus[i]);
  91. /* TEST IA*/
  92. IACtrl* IAFriend( 0x0 );
  93. Perso* ami ( 0x0 );
  94. for (int i(0); i < 3; i++)
  95. {
  96. IAFriend = new Brute( m_persosGest, true );
  97. ami = new Perso(m_sprites.takeSprite("Allie"), m_sprites.takeSprite("Mort"), IAFriend, m_tirsGest, true, m_armGest, rand() % 1000, rand() % 1000);
  98. IAFriend->setPersoMoi( ami );
  99. m_persosGest->addAllie( ami );
  100. }
  101. /// [3] Renvoi succès
  102. return true;
  103. }
  104. int Jeu::mainLoop()
  105. {
  106. /// [1] Boucle principale
  107. Uint32 tDepart(SDL_GetTicks()), tDif, tFps(1000/50); // 50fps
  108. bool done = false;
  109. Uint32 nbFrame(0), usedTime(0);///DEBUG
  110. while (!done)
  111. {
  112. // [3.1] Gestion évènements
  113. m_input->updateEvenements();
  114. if (m_input->terminer()) done = true;
  115. if (m_input->getTouche(SDLK_ESCAPE)) done = true;
  116. // [3.2] Calculs
  117. m_persosGest->allMove();
  118. m_tirsGest->allMove();
  119. m_persosGest->nextWave(m_sprites, m_tirsGest, m_armGest);
  120. // [3.3] Dessin des composants
  121. for ( unsigned int i(0); i<m_nbJoueurs; i++ )
  122. afficher(m_persoFocus[i], m_support[i]);
  123. if ( m_nbJoueurs == 2 ) {
  124. SDL_BlitSurface( m_support[0], 0, m_screen, 0);
  125. SDL_BlitSurface( m_support[1], 0, m_screen, &m_scinde);
  126. }
  127. SDL_Flip(m_screen);
  128. // [3.4] Gestion du temps
  129. tDif = SDL_GetTicks() - tDepart;
  130. nbFrame++;///DEBUG
  131. usedTime += tDif;///DEBUG
  132. if (tDif < tFps) SDL_Delay(tFps - tDif);
  133. tDepart = SDL_GetTicks();
  134. }
  135. std::cout << "Environ " << (float)usedTime/nbFrame <<" ms sont utilisées par frame sur " << tFps << std::endl;
  136. return 0;
  137. }
  138. void Jeu::afficher( const Perso* focus, SDL_Surface* support )
  139. {
  140. // Focus OU Caméra libre
  141. if ( focus->estVivant() ) {
  142. m_look = focus->getPos();
  143. }
  144. else {
  145. #define CAM_FREE_SPEED 12.0f
  146. if (m_input->getTouche(SDLK_RIGHT)) m_look.setX(m_look.getX() + CAM_FREE_SPEED);
  147. if (m_input->getTouche(SDLK_LEFT)) m_look.setX(m_look.getX() - CAM_FREE_SPEED);
  148. if (m_input->getTouche(SDLK_UP)) m_look.setY(m_look.getY() + CAM_FREE_SPEED);
  149. if (m_input->getTouche(SDLK_DOWN)) m_look.setY(m_look.getY() - CAM_FREE_SPEED);
  150. }
  151. // Nettoyage
  152. SDL_FillRect( support, 0, 0x141213 );
  153. // Elements
  154. m_terrain->afficher(m_look, support);
  155. m_armGest->allDisplay(m_look, support);
  156. m_tirsGest->allDisplay(m_look, support);
  157. m_persosGest->allDisplay(m_look, support);
  158. // Curseur
  159. Vec viseur = focus->getVisee();
  160. SDL_Rect posCurseur;
  161. posCurseur.x = viseur.getX() + support->w/2 - 32;
  162. posCurseur.y = support->h/2 - viseur.getY() - 32;
  163. SDL_BlitSurface(m_cursor, 0, support, &posCurseur);
  164. }
  165. ///FICHIER END