mirror of
https://github.com/rwengine/openrw.git
synced 2024-11-07 11:22:45 +01:00
34 lines
608 B
C++
34 lines
608 B
C++
#ifndef INGAMESTATE_HPP
|
|
#define INGAMESTATE_HPP
|
|
|
|
#include "State.hpp"
|
|
|
|
class PlayerController;
|
|
|
|
class IngameState : public State
|
|
{
|
|
ViewCamera _look;
|
|
glm::vec2 _lookAngles;
|
|
glm::vec3 _movement;
|
|
float autolookTimer;
|
|
public:
|
|
IngameState(RWGame* game, bool test = false);
|
|
|
|
void startTest();
|
|
void spawnPlayerVehicle();
|
|
|
|
/** shortcut for getWorld()->state.player->getCharacter() */
|
|
PlayerController* getPlayer();
|
|
|
|
virtual void enter();
|
|
virtual void exit();
|
|
|
|
virtual void tick(float dt);
|
|
|
|
virtual void handleEvent(const sf::Event& event);
|
|
|
|
const ViewCamera& getCamera();
|
|
};
|
|
|
|
#endif // INGAMESTATE_HPP
|