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.
openmw/components/esm3/loaddoor.cpp

79 lines
2.0 KiB
C++

#include "loaddoor.hpp"
#include "esmreader.hpp"
#include "esmwriter.hpp"
namespace ESM
{
void Door::load(ESMReader& esm, bool& isDeleted)
{
isDeleted = false;
mRecordFlags = esm.getRecordFlags();
bool hasName = false;
while (esm.hasMoreSubs())
{
esm.getSubName();
switch (esm.retSubName().toInt())
{
case SREC_NAME:
mId = esm.getRefId();
hasName = true;
break;
case fourCC("MODL"):
mModel = esm.getHString();
break;
case fourCC("FNAM"):
mName = esm.getHString();
break;
case fourCC("SCRI"):
mScript = esm.getRefId();
break;
case fourCC("SNAM"):
mOpenSound = esm.getRefId();
break;
case fourCC("ANAM"):
mCloseSound = esm.getRefId();
break;
case SREC_DELE:
esm.skipHSub();
isDeleted = true;
break;
default:
esm.fail("Unknown subrecord");
break;
}
}
if (!hasName)
esm.fail("Missing NAME subrecord");
}
void Door::save(ESMWriter& esm, bool isDeleted) const
{
esm.writeHNCRefId("NAME", mId);
if (isDeleted)
{
esm.writeHNString("DELE", "", 3);
return;
}
esm.writeHNCString("MODL", mModel);
esm.writeHNOCString("FNAM", mName);
esm.writeHNOCRefId("SCRI", mScript);
esm.writeHNOCRefId("SNAM", mOpenSound);
esm.writeHNOCRefId("ANAM", mCloseSound);
}
void Door::blank()
{
mRecordFlags = 0;
mName.clear();
mModel.clear();
mScript = ESM::RefId();
mOpenSound = ESM::RefId();
mCloseSound = ESM::RefId();
}
}