Brute.cpp 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. #include "Brute.h"
  2. Brute::Brute(Persos_Gest* persosGest, bool allie)
  3. : IACtrl(persosGest, allie), m_aglStrafe(0.0f), m_focusID(65535), m_cote()
  4. {
  5. if ( rand()%2 ) m_cote = 1;
  6. else m_cote = -1;
  7. }
  8. Brute::~Brute()
  9. {}//Ne rien détruire
  10. void Brute::update()
  11. {
  12. ///Rafraichit focus
  13. if ( !m_persosGest->getVivant(m_focusID, !m_allie) ) m_focusID = focusProche( !m_allie );
  14. ///Visee
  15. m_visee = m_persosGest->getPos( m_focusID, !m_allie ) - m_moi->getPos();
  16. ///Mouvement
  17. if ( m_focusID == NO_FOCUS )
  18. {
  19. m_mvt.setVecteur(0.0f,0.0f,0.0f);
  20. }
  21. else
  22. {
  23. m_mvt = m_visee;
  24. if ( m_mvt.norme() < 350.0 && ( m_aglStrafe <= 90.f || m_aglStrafe >= 90.f )) m_aglStrafe += 4.5f*m_cote;
  25. else if ( m_aglStrafe != 0.0f ) m_aglStrafe -= 4.5f*m_cote;
  26. m_mvt.rotateD( m_aglStrafe );
  27. }
  28. ///Tir
  29. if ( m_mvt.norme() < 380.0 && m_focusID != NO_FOCUS ) m_tir[ L_HAND ] = m_tir[ R_HAND ] = true;
  30. else m_tir[ L_HAND ] = m_tir[ R_HAND ] = false;
  31. m_mvt.normaliser();
  32. }
  33. ///END FICHIER