Home
last modified time | relevance | path

Searched refs:PlayerShipController (Results 1 – 6 of 6) sorted by relevance

/dports/games/pioneer/pioneer-20210723/src/ship/
H A DPlayerShipController.cpp20 REGISTER_INPUT_BINDING(PlayerShipController) in REGISTER_INPUT_BINDING() argument
48 PlayerShipController::PlayerShipController() : in PlayerShipController() function in PlayerShipController
106 PlayerShipController::~PlayerShipController() in ~PlayerShipController()
148 void PlayerShipController::PostLoadFixup(Space *space) in PostLoadFixup()
237 void PlayerShipController::CheckControlsLock() in CheckControlsLock()
242 vector3d PlayerShipController::GetMouseDir() const in GetMouseDir()
421 void PlayerShipController::ToggleRotationDamping() in ToggleRotationDamping()
426 void PlayerShipController::FireMissile() in FireMissile()
433 void PlayerShipController::ToggleSetSpeedMode() in ToggleSetSpeedMode()
445 Body *PlayerShipController::GetCombatTarget() const in GetCombatTarget()
[all …]
H A DPlayerShipController.h10 class PlayerShipController : public ShipController {
12 PlayerShipController();
13 ~PlayerShipController();
/dports/games/pioneer/pioneer-20210723/src/
H A DPlayer.cpp52 SetController(new PlayerShipController()); in Player()
231 PlayerShipController *Player::GetPlayerController() const in GetPlayerController()
233 return static_cast<PlayerShipController *>(GetController()); in GetPlayerController()
238 return static_cast<PlayerShipController *>(m_controller)->GetCombatTarget(); in GetCombatTarget()
243 return static_cast<PlayerShipController *>(m_controller)->GetNavTarget(); in GetNavTarget()
248 return static_cast<PlayerShipController *>(m_controller)->GetSetSpeedTarget(); in GetSetSpeedTarget()
253 static_cast<PlayerShipController *>(m_controller)->SetCombatTarget(target, setSpeedTo); in SetCombatTarget()
258 static_cast<PlayerShipController *>(m_controller)->SetNavTarget(target); in SetNavTarget()
263 static_cast<PlayerShipController *>(m_controller)->SetSetSpeedTarget(target); in SetSetSpeedTarget()
268 static_cast<PlayerShipController *>(m_controller)->ChangeSetSpeed(delta); in ChangeSetSpeed()
H A DPlayer.h10 class PlayerShipController; variable
33 PlayerShipController *GetPlayerController() const;
H A DShip.h66 friend class PlayerShipController; variable
H A DShip.cpp185 SetController(new PlayerShipController()); in Ship()