jeu.cpp 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171
  1. #include "jeu.h"
  2. void tracerLigne(SDL_Surface *screen, int nbJoueurs)
  3. {
  4. SDL_Rect pos;
  5. SDL_Surface* pixel;
  6. pixel = SDL_CreateRGBSurface(SDL_HWSURFACE, 1, 1, 32, 0, 0, 0, 0);
  7. SDL_FillRect(pixel, 0, SDL_MapRGB(pixel->format, 255, 255, 255));
  8. for(int y = -RAYON_FENETRE; y<RAYON_FENETRE; y++)
  9. {
  10. for(int x = -RAYON_FENETRE; x<RAYON_FENETRE; x++)
  11. {
  12. pos.x = x+RAYON_FENETRE;
  13. pos.y = y+RAYON_FENETRE;
  14. if(nbJoueurs == 2)
  15. {
  16. if(x*x+y*y<RAYON_TERRAIN*RAYON_TERRAIN && y>-LARGEUR_LIGNE && y<LARGEUR_LIGNE)
  17. SDL_BlitSurface(pixel, 0, screen, &pos);
  18. }
  19. else if(nbJoueurs == 3)
  20. {
  21. if(x*x+y*y<RAYON_TERRAIN*RAYON_TERRAIN && ((y<0 && x>-LARGEUR_LIGNE && x<LARGEUR_LIGNE) || (y>-COTE/400 && abs(1.75*y)-abs(x)>-LARGEUR_LIGNE*2 && abs(1.75*y)-abs(x)<LARGEUR_LIGNE*2)))
  22. SDL_BlitSurface(pixel, 0, screen, &pos);
  23. }
  24. else if(nbJoueurs == 4)
  25. {
  26. if(x*x+y*y<RAYON_TERRAIN*RAYON_TERRAIN && abs(y)-abs(x)>-LARGEUR_LIGNE && abs(y)-abs(x)<LARGEUR_LIGNE)
  27. SDL_BlitSurface(pixel, 0, screen, &pos);
  28. }
  29. }
  30. }
  31. }
  32. int jeu(SDL_Surface *screen,int const nbJoueurs)
  33. {
  34. // [1] Préparation des composants
  35. //[1.1] Objets pratiques
  36. Uint32 tempsPrecedent(0);
  37. bool continuer(true);
  38. //[1.2] La surface point
  39. SDL_Surface* arene(0);
  40. arene = SDL_CreateRGBSurface(SDL_HWSURFACE, COTE, COTE, 32, 0, 0, 0, 0);
  41. Point point(COTE/2,SDL_MapRGB(screen->format,0,0,255));
  42. Point point2(COTE/2-COTE/36,SDL_MapRGB(screen->format,30,200,10));
  43. point.afficherPoint(arene, COTE/2, COTE/2);
  44. point2.afficherPoint(arene, COTE/2, COTE/2);
  45. tracerLigne(arene, nbJoueurs);
  46. //[1.2] Raquettes
  47. Raquette *tabRaquette[nbJoueurs];
  48. for(int i(0); i<nbJoueurs; i++)
  49. tabRaquette[i] = new Raquette(i, nbJoueurs, SDL_MapRGB(screen->format, 255, 0, 0));
  50. //[1.3] La balle
  51. Balle baballe(nbJoueurs);
  52. Balle baballe2(nbJoueurs);
  53. for (int i(0); i<nbJoueurs; i++)
  54. baballe.ajouterRaquette(i,tabRaquette[i]);
  55. if(nbJoueurs == 4)
  56. for (int i(0); i<nbJoueurs; i++)
  57. baballe2.ajouterRaquette(i,tabRaquette[i]);
  58. // [2] Program main loop
  59. Input input;
  60. bool pause = true, p = true;
  61. while (continuer && !input.getTouches(SDLK_ESCAPE))
  62. {
  63. //baballe.camenbertPerdant(screen);
  64. // [2.1] Gestion des evenement
  65. input.updateEvenement();
  66. continuer = input.continuer();
  67. if(nbJoueurs == 2)
  68. {
  69. if (input.getTouches(SDLK_v))
  70. tabRaquette[0]->deplacer(false);
  71. if (input.getTouches(SDLK_x))
  72. tabRaquette[0]->deplacer(true);
  73. if (input.getTouches(SDLK_RIGHT))
  74. tabRaquette[1]->deplacer(true);
  75. if (input.getTouches(SDLK_LEFT))
  76. tabRaquette[1]->deplacer(false);
  77. }
  78. if(nbJoueurs == 3)
  79. {
  80. if (input.getTouches(SDLK_v))
  81. tabRaquette[0]->deplacer(false);
  82. if (input.getTouches(SDLK_x))
  83. tabRaquette[0]->deplacer(true);
  84. if (input.getTouches(SDLK_q))
  85. tabRaquette[1]->deplacer(true);
  86. if (input.getTouches(SDLK_a))
  87. tabRaquette[1]->deplacer(false);
  88. if (input.getTouches(SDLK_KP3))
  89. tabRaquette[2]->deplacer(true);
  90. if (input.getTouches(SDLK_KP6))
  91. tabRaquette[2]->deplacer(false);
  92. }
  93. if(nbJoueurs == 4)
  94. {
  95. if (input.getTouches(SDLK_v))
  96. tabRaquette[0]->deplacer(false);
  97. if (input.getTouches(SDLK_x))
  98. tabRaquette[0]->deplacer(true);
  99. if (input.getTouches(SDLK_q))
  100. tabRaquette[1]->deplacer(true);
  101. if (input.getTouches(SDLK_a))
  102. tabRaquette[1]->deplacer(false);
  103. if (input.getTouches(SDLK_RIGHT))
  104. tabRaquette[2]->deplacer(true);
  105. if (input.getTouches(SDLK_LEFT))
  106. tabRaquette[2]->deplacer(false);
  107. if (input.getTouches(SDLK_KP3))
  108. tabRaquette[3]->deplacer(true);
  109. if (input.getTouches(SDLK_KP6))
  110. tabRaquette[3]->deplacer(false);
  111. }
  112. if(input.getTouches(SDLK_SPACE) && p)
  113. {
  114. pause = true;
  115. p = false;
  116. }
  117. else if(!input.getTouches(SDLK_SPACE))
  118. p = true;
  119. // [3] Calcul
  120. baballe.bouger(screen);
  121. //if(nbJoueurs == 4)
  122. //baballe2.bouger(screen);
  123. // [4] Dessin
  124. SDL_BlitSurface(arene, 0, screen, 0);
  125. for(int i(0); i<nbJoueurs; i++)
  126. tabRaquette[i]->afficher(screen);
  127. baballe.afficher(screen);
  128. if(nbJoueurs == 4)
  129. baballe2.afficher(screen);
  130. SDL_Flip(screen);
  131. //[5] Gestion du temps
  132. while (15>SDL_GetTicks()-tempsPrecedent || pause)
  133. {
  134. //ça bloque pendant 30 ms moins le temps de calcul
  135. if(pause)
  136. {
  137. input.updateEvenement();
  138. if(input.getTouches(SDLK_SPACE) && p)
  139. {
  140. pause = false;
  141. p = false;
  142. }
  143. else if(!input.getTouches(SDLK_SPACE))
  144. p = true;
  145. if(!input.continuer() || input.getTouches(SDLK_ESCAPE))
  146. {
  147. continuer = false;
  148. break;
  149. }
  150. }
  151. }
  152. tempsPrecedent=SDL_GetTicks();
  153. } ///Boucle évenementielle
  154. // [6] Nettoyage
  155. for(int i(0); i<nbJoueurs; i++)
  156. delete tabRaquette[i];
  157. // [END] Renvoi
  158. return 0;
  159. }