Car.cpp 6.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296
  1. # include "Car.h"
  2. Car::Car()
  3. :m_imgCar( 0x0 ), m_imgWheel( 0x0 ),
  4. m_bodyCar( 0x0 ),
  5. m_cmd( FREE ),
  6. m_currentTorque( 0.0f ), m_currentSpeed( 0.0f ), m_sense( 1.0f ), m_latence( 40.0f ),
  7. m_goTorque( 0.9f ), m_minTorque( 0.0025f ), m_maxSpeed( 60.0f )
  8. {
  9. // Constructeur
  10. m_currentTorque = m_minTorque ;
  11. m_currentSpeed = 0.0f ;
  12. }
  13. Car::~Car()
  14. {
  15. if ( !m_imgCar )
  16. SDL_FreeSurface( m_imgCar );
  17. if ( !m_imgWheel )
  18. SDL_FreeSurface( m_imgWheel );
  19. }
  20. void Car::destroy( b2World &world )
  21. {
  22. /// Détruire les liaisons
  23. // Les moteurs
  24. while ( !m_motorAxe.empty() )
  25. {
  26. world.DestroyJoint( m_motorAxe.back() );
  27. m_motorAxe.back() = nullptr;
  28. m_motorAxe.pop_back();
  29. }
  30. // Les roues libres
  31. while ( !m_fwdAxe.empty() )
  32. {
  33. world.DestroyJoint( m_fwdAxe.back() );
  34. m_fwdAxe.back() = nullptr;
  35. m_fwdAxe.pop_back();
  36. }
  37. /// Détruire les entités
  38. // Les roues
  39. while ( !m_bodyWheel.empty() )
  40. {
  41. world.DestroyBody( m_bodyWheel.back() );
  42. m_bodyWheel.back() = nullptr;
  43. m_bodyWheel.pop_back();
  44. }
  45. // Le carénage
  46. if ( m_bodyCar )
  47. world.DestroyBody( m_bodyCar );
  48. m_bodyCar = nullptr;
  49. }
  50. void Car::drive( command cmd )
  51. {
  52. // Commande
  53. m_cmd = cmd ;
  54. // Actions
  55. if ( m_cmd == FREE )
  56. {
  57. m_currentSpeed = 0.0f ;
  58. m_currentTorque = m_minTorque ;
  59. }
  60. else if ( m_cmd == BREAK )
  61. {
  62. m_currentSpeed = 0.0f ;
  63. m_currentTorque = m_goTorque ;
  64. }
  65. else if ( m_cmd == GO )
  66. {
  67. m_sense = -1.0f ;
  68. m_currentSpeed = m_maxSpeed ;
  69. m_currentTorque = m_goTorque / 20.0f ;
  70. }
  71. else if ( m_cmd == REVERSE )
  72. {
  73. m_sense = 0.5f ;
  74. m_currentSpeed = m_maxSpeed ;
  75. m_currentTorque = m_goTorque / 20.0f ;
  76. }
  77. }
  78. void Car::jump( float32 correction )
  79. {
  80. // Jump
  81. b2Vec2 spring;
  82. b2Vec2 forcePoint;
  83. spring.Set( 0.0f, -1.7f );
  84. forcePoint.Set( 0.0f, 0.0f );
  85. m_bodyCar->ApplyLinearImpulse( spring, forcePoint, true );
  86. // Correction
  87. m_bodyCar->ApplyAngularImpulse( - m_bodyCar->GetAngle() * correction, true );
  88. }
  89. void Car::spin( float32 tq )
  90. {
  91. // Couple sur le carénage
  92. m_bodyCar->ApplyAngularImpulse( tq, true );
  93. }
  94. void Car::update()
  95. {
  96. // Update state
  97. if ( m_cmd == GO || m_cmd == REVERSE )
  98. {
  99. m_currentTorque = ( m_latence * m_currentTorque + m_goTorque ) / ( m_latence + 1.0f ) ;
  100. }
  101. // Update motor
  102. for ( unsigned int i(0); i < m_motorAxe.size() ; i++ )
  103. {
  104. m_motorAxe[i]->SetMotorSpeed( m_sense * m_currentSpeed );
  105. m_motorAxe[i]->SetMaxMotorTorque( m_currentTorque );
  106. }
  107. }
  108. b2Vec2 Car::GetPosition()
  109. {
  110. return m_bodyCar->GetPosition();
  111. }
  112. b2Vec2 Car::GetVelocity()
  113. {
  114. return m_bodyCar->GetLinearVelocity();
  115. }
  116. float32 Car::GetTorque()
  117. {
  118. return m_currentTorque;
  119. }
  120. float32 Car::GetSpeed()
  121. {
  122. return m_currentSpeed;
  123. }
  124. bool Car::GetIsOnGround()
  125. {
  126. bool rep( false );
  127. for ( b2ContactEdge* ce( m_bodyWheel.front()->GetContactList() ); ce && !rep; ce = ce->next )
  128. rep = ce->contact->IsTouching() ;
  129. return rep;
  130. }
  131. void Car::createMotorWheel( b2World &world, b2Vec2 rel, float32 friction, float32 density )
  132. {
  133. // Vérifie la présence d'image
  134. if ( m_imgWheel == 0x0 )
  135. {
  136. std::cout << "Car::createMotorWheel > pas d'image." << std::endl ;
  137. return ;
  138. }
  139. // Vérifie la présence de carénage
  140. if ( m_bodyCar == 0x0 )
  141. {
  142. std::cout << "Car::createMotorWheel > pas de carénage." << std::endl ;
  143. return ;
  144. }
  145. // Dimensions
  146. float32 rwheel;
  147. rwheel = (float32)m_imgWheel->h / MULTI / 2 ;
  148. // Définition body
  149. b2BodyDef bodyDef;
  150. b2CircleShape dynamicCircle;
  151. b2FixtureDef fixtureDef;
  152. bodyDef.type = b2_dynamicBody;
  153. // Roue moteur
  154. bodyDef.userData = m_imgWheel ;
  155. bodyDef.position = m_bodyCar->GetPosition() + rel ;
  156. dynamicCircle.m_radius = rwheel ;
  157. fixtureDef.shape = &dynamicCircle;
  158. fixtureDef.density = density;
  159. fixtureDef.friction = friction;
  160. m_bodyWheel.push_back( world.CreateBody(&bodyDef) );
  161. m_bodyWheel.back()->CreateFixture(&fixtureDef);
  162. // Création pivot arrière
  163. b2RevoluteJointDef myJointDef;
  164. myJointDef.collideConnected = false ;
  165. myJointDef.Initialize( m_bodyWheel.back(), m_bodyCar, m_bodyWheel.back()->GetPosition() );
  166. myJointDef.maxMotorTorque = 0.05f;
  167. myJointDef.motorSpeed = 0.0f;
  168. myJointDef.enableMotor = true;
  169. m_motorAxe.push_back( (b2RevoluteJoint*)world.CreateJoint(&myJointDef) );
  170. // Fin
  171. return ;
  172. }
  173. void Car::createFreeWheel( b2World &world, b2Vec2 rel, float32 friction, float32 density )
  174. {
  175. // Vérifie la présence d'image
  176. if ( m_imgWheel == 0x0 )
  177. {
  178. std::cout << "Car::createFreeWheel > pas d'image." << std::endl ;
  179. return ;
  180. }
  181. // Vérifie la présence de carénage
  182. if ( m_bodyCar == 0x0 )
  183. {
  184. std::cout << "Car::createFreeWheel > pas de carénage." << std::endl ;
  185. return ;
  186. }
  187. // Dimensions
  188. float32 rwheel;
  189. rwheel = (float32)m_imgWheel->h / MULTI / 2 ;
  190. // Définition body
  191. b2BodyDef bodyDef;
  192. b2CircleShape dynamicCircle;
  193. b2FixtureDef fixtureDef;
  194. bodyDef.type = b2_dynamicBody;
  195. // Roue avant
  196. bodyDef.userData = m_imgWheel ;
  197. bodyDef.position = m_bodyCar->GetPosition() + rel ;
  198. dynamicCircle.m_radius = rwheel ;
  199. fixtureDef.shape = &dynamicCircle;
  200. fixtureDef.density = density;
  201. fixtureDef.friction = friction;
  202. m_bodyWheel.push_back( world.CreateBody(&bodyDef) );
  203. m_bodyWheel.back()->CreateFixture(&fixtureDef);
  204. // Création pivot avant
  205. b2RevoluteJointDef myJointDef;
  206. myJointDef.collideConnected = false ;
  207. myJointDef.Initialize( m_bodyWheel.back(), m_bodyCar, m_bodyWheel.back()->GetPosition() );
  208. m_fwdAxe.push_back( (b2RevoluteJoint*)world.CreateJoint(&myJointDef) );
  209. // Fin
  210. return ;
  211. }
  212. void Car::createCarenage( b2World &world, float32 x, float32 y, float32 friction, float32 density )
  213. {
  214. // Vérifie si présence de carénage
  215. if ( m_bodyCar != 0x0 )
  216. {
  217. world.DestroyBody( m_bodyCar );
  218. m_bodyCar = 0x0 ;
  219. }
  220. // Dimensions
  221. float32 wtruck, htruck ;
  222. wtruck = (float32)m_imgCar->w / MULTI / 2 ;
  223. htruck = (float32)m_imgCar->h / MULTI / 2 ;
  224. // Définition body
  225. b2BodyDef bodyDef;
  226. b2PolygonShape dynamicBox;
  227. b2FixtureDef fixtureDef;
  228. bodyDef.type = b2_dynamicBody;
  229. // Carrosserie
  230. bodyDef.userData = m_imgCar ;
  231. bodyDef.position.Set( x, y );
  232. dynamicBox.SetAsBox( wtruck, htruck );
  233. fixtureDef.shape = &dynamicBox;
  234. fixtureDef.density = density;
  235. fixtureDef.friction = friction;
  236. m_bodyCar = world.CreateBody( &bodyDef );
  237. m_bodyCar->CreateFixture( &fixtureDef );
  238. }