2011-01-04 14:58:22 +00:00
|
|
|
#ifndef GAME_MWWORLD_PLAYER_H
|
|
|
|
#define GAME_MWWORLD_PLAYER_H
|
2010-06-21 21:39:59 +00:00
|
|
|
|
|
|
|
#include "OgreCamera.h"
|
|
|
|
|
2010-07-05 10:09:04 +00:00
|
|
|
#include <components/esm_store/cell_store.hpp>
|
|
|
|
|
|
|
|
#include "../mwworld/refdata.hpp"
|
2010-07-26 10:59:50 +00:00
|
|
|
#include "../mwworld/ptr.hpp"
|
2010-07-05 10:09:04 +00:00
|
|
|
|
2012-04-08 10:25:33 +00:00
|
|
|
#include "../mwmechanics/drawstate.hpp"
|
|
|
|
|
2011-01-08 14:11:37 +00:00
|
|
|
namespace MWRender
|
2010-08-21 10:31:04 +00:00
|
|
|
{
|
2011-01-08 14:11:37 +00:00
|
|
|
class Player;
|
2010-08-21 10:31:04 +00:00
|
|
|
}
|
|
|
|
|
2011-01-04 14:58:22 +00:00
|
|
|
namespace MWWorld
|
2010-06-21 21:39:59 +00:00
|
|
|
{
|
2011-01-08 14:11:37 +00:00
|
|
|
class World;
|
|
|
|
|
|
|
|
/// \brief NPC object representing the player and additional player data
|
2012-04-08 17:43:04 +00:00
|
|
|
class Player
|
2010-07-26 10:59:50 +00:00
|
|
|
{
|
2011-01-06 09:07:01 +00:00
|
|
|
ESMS::LiveCellRef<ESM::NPC, MWWorld::RefData> mPlayer;
|
|
|
|
MWWorld::Ptr::CellStore *mCellStore;
|
2011-01-08 14:11:37 +00:00
|
|
|
MWRender::Player *mRenderer;
|
2011-01-06 09:07:01 +00:00
|
|
|
MWWorld::World& mWorld;
|
|
|
|
std::string mName;
|
|
|
|
bool mMale;
|
|
|
|
std::string mRace;
|
|
|
|
std::string mBirthsign;
|
|
|
|
ESM::Class *mClass;
|
2011-01-18 14:20:36 +00:00
|
|
|
bool mAutoMove;
|
2011-02-03 11:16:59 +00:00
|
|
|
int mForwardBackward;
|
2011-01-06 09:07:01 +00:00
|
|
|
public:
|
2010-06-22 08:15:22 +00:00
|
|
|
|
2011-01-08 14:11:37 +00:00
|
|
|
Player(MWRender::Player *renderer, const ESM::NPC *player, MWWorld::World& world);
|
2010-06-21 21:39:59 +00:00
|
|
|
|
2011-01-06 09:07:01 +00:00
|
|
|
~Player();
|
2010-06-21 21:39:59 +00:00
|
|
|
|
2011-01-06 09:07:01 +00:00
|
|
|
/// Set the player position. Uses Morrowind coordinates.
|
2011-09-04 07:48:50 +00:00
|
|
|
void setPos(float x, float y, float z);
|
2010-06-21 21:39:59 +00:00
|
|
|
|
2012-05-30 13:52:39 +00:00
|
|
|
/// Set where the player is looking at. Uses Morrowind (euler) angles
|
|
|
|
void setRot(float x, float y, float z);
|
|
|
|
|
2011-01-06 09:07:01 +00:00
|
|
|
void setCell (MWWorld::Ptr::CellStore *cellStore)
|
|
|
|
{
|
|
|
|
mCellStore = cellStore;
|
|
|
|
}
|
2010-06-21 21:39:59 +00:00
|
|
|
|
2010-07-26 11:09:44 +00:00
|
|
|
MWWorld::Ptr getPlayer()
|
2010-07-05 10:09:04 +00:00
|
|
|
{
|
2010-07-26 11:09:44 +00:00
|
|
|
MWWorld::Ptr ptr (&mPlayer, mCellStore);
|
|
|
|
return ptr;
|
2010-07-05 10:09:04 +00:00
|
|
|
}
|
2010-09-15 10:22:06 +00:00
|
|
|
|
2011-01-08 14:11:37 +00:00
|
|
|
MWRender::Player *getRenderer() { return mRenderer; }
|
|
|
|
|
2010-09-15 10:22:06 +00:00
|
|
|
void setName (const std::string& name)
|
|
|
|
{
|
|
|
|
mName = name;
|
|
|
|
}
|
|
|
|
|
2010-09-15 12:33:02 +00:00
|
|
|
void setGender (bool male)
|
|
|
|
{
|
|
|
|
mMale = male;
|
|
|
|
}
|
|
|
|
|
|
|
|
void setRace (const std::string& race)
|
|
|
|
{
|
|
|
|
mRace = race;
|
|
|
|
}
|
|
|
|
|
|
|
|
void setBirthsign (const std::string& birthsign)
|
|
|
|
{
|
|
|
|
mBirthsign = birthsign;
|
|
|
|
}
|
|
|
|
|
|
|
|
void setClass (const ESM::Class& class_);
|
|
|
|
|
2012-04-08 10:25:33 +00:00
|
|
|
void setDrawState(const DrawState& state);
|
|
|
|
|
2010-09-15 10:22:06 +00:00
|
|
|
std::string getName() const
|
|
|
|
{
|
|
|
|
return mName;
|
|
|
|
}
|
2010-09-15 12:33:02 +00:00
|
|
|
|
|
|
|
bool isMale() const
|
|
|
|
{
|
|
|
|
return mMale;
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string getRace() const
|
|
|
|
{
|
|
|
|
return mRace;
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string getBirthsign() const
|
|
|
|
{
|
|
|
|
return mBirthsign;
|
|
|
|
}
|
|
|
|
|
|
|
|
const ESM::Class& getClass() const
|
|
|
|
{
|
|
|
|
return *mClass;
|
|
|
|
}
|
2011-01-09 19:38:58 +00:00
|
|
|
|
2011-01-18 14:20:36 +00:00
|
|
|
bool getAutoMove()
|
|
|
|
{
|
|
|
|
return mAutoMove;
|
|
|
|
}
|
|
|
|
|
2012-04-08 17:43:04 +00:00
|
|
|
DrawState getDrawState();
|
2012-04-08 10:25:33 +00:00
|
|
|
|
2011-02-03 11:16:59 +00:00
|
|
|
void setAutoMove (bool enable);
|
2011-01-18 14:20:36 +00:00
|
|
|
|
2011-02-03 11:16:59 +00:00
|
|
|
void setLeftRight (int value);
|
2011-01-18 14:20:36 +00:00
|
|
|
|
2011-02-03 11:16:59 +00:00
|
|
|
void setForwardBackward (int value);
|
2012-03-25 02:03:08 +00:00
|
|
|
void setUpDown(int value);
|
2011-01-18 14:20:36 +00:00
|
|
|
|
2011-02-03 11:16:59 +00:00
|
|
|
void toggleRunning();
|
2011-01-18 14:20:36 +00:00
|
|
|
};
|
2010-06-21 21:39:59 +00:00
|
|
|
}
|
|
|
|
#endif
|