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.
54 lines
1.1 KiB
C++
54 lines
1.1 KiB
C++
#include "importplayer.hpp"
|
|
|
|
#include <components/esm/esmreader.hpp>
|
|
|
|
namespace ESSImport
|
|
{
|
|
|
|
void REFR::load(ESM::ESMReader &esm)
|
|
{
|
|
esm.getHNT(mRefNum.mIndex, "FRMR");
|
|
|
|
mRefID = esm.getHNString("NAME");
|
|
|
|
if (esm.isNextSub("STPR"))
|
|
esm.skipHSub(); // ESS TODO
|
|
|
|
mActorData.load(esm);
|
|
|
|
esm.getHNOT(mPos, "DATA", 24);
|
|
}
|
|
|
|
void PCDT::load(ESM::ESMReader &esm)
|
|
{
|
|
if (esm.isNextSub("PNAM"))
|
|
esm.skipHSub();
|
|
if (esm.isNextSub("SNAM"))
|
|
esm.skipHSub();
|
|
if (esm.isNextSub("NAM9"))
|
|
esm.skipHSub();
|
|
|
|
mBounty = 0;
|
|
esm.getHNOT(mBounty, "CNAM");
|
|
|
|
mBirthsign = esm.getHNOString("BNAM");
|
|
|
|
if (esm.isNextSub("ENAM"))
|
|
esm.skipHSub();
|
|
|
|
if (esm.isNextSub("LNAM"))
|
|
esm.skipHSub();
|
|
|
|
while (esm.isNextSub("FNAM"))
|
|
{
|
|
FNAM fnam;
|
|
esm.getHT(fnam);
|
|
mFactions.push_back(fnam);
|
|
}
|
|
|
|
if (esm.isNextSub("KNAM"))
|
|
esm.skipHSub();
|
|
}
|
|
|
|
}
|