mirror of https://github.com/OpenMW/openmw.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
44 lines
934 B
C++
44 lines
934 B
C++
#ifndef OPENMW_ESM_PLAYER_H
|
|
#define OPENMW_ESM_PLAYER_H
|
|
|
|
#include <string>
|
|
|
|
#include <components/esm/attr.hpp>
|
|
#include <components/esm/position.hpp>
|
|
|
|
#include "loadskil.hpp"
|
|
#include "npcstate.hpp"
|
|
|
|
namespace ESM
|
|
{
|
|
class ESMReader;
|
|
class ESMWriter;
|
|
|
|
// format 0, saved games only
|
|
|
|
struct Player
|
|
{
|
|
NpcState mObject;
|
|
RefId mCellId;
|
|
float mLastKnownExteriorPosition[3];
|
|
unsigned char mHasMark;
|
|
bool mSetWerewolfAcrobatics;
|
|
Position mMarkedPosition;
|
|
RefId mMarkedCell;
|
|
ESM::RefId mBirthsign;
|
|
|
|
int32_t mCurrentCrimeId;
|
|
int32_t mPaidCrimeId;
|
|
|
|
float mSaveAttributes[Attribute::Length];
|
|
float mSaveSkills[Skill::Length];
|
|
|
|
std::map<ESM::RefId, ESM::RefId> mPreviousItems; // previous equipped items, needed for bound spells
|
|
|
|
void load(ESMReader& esm);
|
|
void save(ESMWriter& esm) const;
|
|
};
|
|
}
|
|
|
|
#endif
|