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.
49 lines
1.1 KiB
C++
49 lines
1.1 KiB
C++
#include "records.hpp"
|
|
|
|
/** Implementation for some of the load() functions. Most are found in
|
|
the header files themselves, but this is a bit irritating to
|
|
compile if you're changing the functions often, as virtually the
|
|
entire engine depends on these headers.
|
|
*/
|
|
|
|
namespace ESM
|
|
{
|
|
void NPC::load(ESMReader &esm, const std::string& id)
|
|
{
|
|
mId = id;
|
|
|
|
npdt52.gold = -10;
|
|
|
|
model = esm.getHNOString("MODL");
|
|
name = esm.getHNOString("FNAM");
|
|
|
|
race = esm.getHNString("RNAM");
|
|
cls = esm.getHNString("CNAM");
|
|
faction = esm.getHNString("ANAM");
|
|
head = esm.getHNString("BNAM");
|
|
hair = esm.getHNString("KNAM");
|
|
|
|
script = esm.getHNOString("SCRI");
|
|
|
|
esm.getSubNameIs("NPDT");
|
|
esm.getSubHeader();
|
|
if(esm.getSubSize() == 52) esm.getExact(&npdt52, 52);
|
|
else if(esm.getSubSize() == 12) esm.getExact(&npdt12, 12);
|
|
else esm.fail("NPC_NPDT must be 12 or 52 bytes long");
|
|
|
|
esm.getHNT(flags, "FLAG");
|
|
|
|
inventory.load(esm);
|
|
spells.load(esm);
|
|
|
|
if(esm.isNextSub("AIDT"))
|
|
{
|
|
esm.getHExact(&AI, sizeof(AI));
|
|
hasAI = true;
|
|
}
|
|
else hasAI = false;
|
|
|
|
esm.skipRecord();
|
|
}
|
|
}
|