JoyCtrl.cpp 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. #include "JoyCtrl.h"
  2. JoyCtrl::JoyCtrl(InputAndJoy* input)
  3. :HardCtrl(input)
  4. {
  5. //ctor
  6. }
  7. JoyCtrl::~JoyCtrl()
  8. {
  9. //dtor
  10. }
  11. void JoyCtrl::update()
  12. {
  13. ///Deplacement
  14. m_mvt.setVecteur( (float)m_input->getAxeValue(0) / 32768, (float)m_input->getAxeValue(1) / -32768);
  15. ///Visee
  16. Vec move( (float)m_input->getAxeValue(3) / 14000, (float)m_input->getAxeValue(4) / -14000 );
  17. float norme( move.norme() );
  18. move.setX( move.getX() * norme * norme * norme );
  19. move.setY( move.getY() * norme * norme * norme );
  20. m_visee += move;
  21. if ( m_visee.getX() > m_input->getWinHalfW() )
  22. m_visee.setX( m_input->getWinHalfW() );
  23. else if ( m_visee.getX() < -m_input->getWinHalfW() )
  24. m_visee.setX( -m_input->getWinHalfW() );
  25. if ( m_visee.getY() > m_input->getWinHalfH() )
  26. m_visee.setY( m_input->getWinHalfH() );
  27. else if ( m_visee.getY() < -m_input->getWinHalfH() )
  28. m_visee.setY( -m_input->getWinHalfH() );
  29. ///Tir
  30. m_tir[ L_HAND ] = m_input->getBoutonPad(4); // Xbox pad = LB
  31. m_tir[ R_HAND ] = m_input->getBoutonPad(5); // Xbox pad = RB
  32. ///Recherche
  33. m_search[ L_HAND ] = m_input->getBoutonPad(2); // Xbox pad = A
  34. m_search[ R_HAND ] = m_input->getBoutonPad(1); // Xbox pad = B
  35. ///Craft
  36. m_craft = m_input->getBoutonPad(3); // Xbox pad = Y
  37. }