2013-11-28 08:33:29 +01:00
|
|
|
//////////////////////////////////////////////////
|
|
|
|
//Created by Erik and Linda of the GameLogic team
|
|
|
|
//////////////////////////////////////////////////
|
2013-11-19 11:07:14 +01:00
|
|
|
#ifndef PLAYER_H
|
|
|
|
#define PLAYER_H
|
2013-12-10 09:57:05 +01:00
|
|
|
#include "GameLogicStates.h"
|
2013-12-10 11:17:25 +01:00
|
|
|
#include "OysterMath.h"
|
2013-12-12 09:36:14 +01:00
|
|
|
#include "Object.h"
|
2013-11-19 11:07:14 +01:00
|
|
|
|
|
|
|
namespace GameLogic
|
|
|
|
{
|
2013-12-12 09:36:14 +01:00
|
|
|
class Player : public Object
|
2013-11-19 11:07:14 +01:00
|
|
|
{
|
|
|
|
|
|
|
|
public:
|
2013-12-05 11:50:39 +01:00
|
|
|
Player(void);
|
2013-11-19 11:07:14 +01:00
|
|
|
~Player(void);
|
2013-11-29 09:05:01 +01:00
|
|
|
|
2013-12-05 11:50:39 +01:00
|
|
|
void Update();
|
2013-12-10 09:57:05 +01:00
|
|
|
void Move(const PLAYER_MOVEMENT &movement);
|
2013-12-12 09:36:14 +01:00
|
|
|
void UseWeapon(const WEAPON_FIRE &fireInput);
|
2013-12-10 09:57:05 +01:00
|
|
|
void Jump();
|
|
|
|
|
|
|
|
bool IsWalking();
|
|
|
|
bool IsJumping();
|
|
|
|
bool IsIdle();
|
|
|
|
|
2013-12-10 11:17:25 +01:00
|
|
|
Oyster::Math::Float3 GetPos();
|
2013-12-10 09:57:05 +01:00
|
|
|
void Respawn();
|
|
|
|
|
2013-11-19 18:35:35 +01:00
|
|
|
private:
|
2013-12-05 11:50:39 +01:00
|
|
|
struct PrivateData;
|
|
|
|
PrivateData *myData;
|
2013-11-19 11:07:14 +01:00
|
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|