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.
39 lines
965 B
C++
39 lines
965 B
C++
#include "transport.hpp"
|
|
|
|
#include <components/debug/debuglog.hpp>
|
|
|
|
#include <components/esm3/esmreader.hpp>
|
|
#include <components/esm3/esmwriter.hpp>
|
|
|
|
namespace ESM
|
|
{
|
|
|
|
void Transport::add(ESMReader& esm)
|
|
{
|
|
if (esm.retSubName().toInt() == fourCC("DODT"))
|
|
{
|
|
Dest dodt;
|
|
esm.getSubComposite(dodt.mPos);
|
|
mList.push_back(dodt);
|
|
}
|
|
else if (esm.retSubName().toInt() == fourCC("DNAM"))
|
|
{
|
|
std::string name = esm.getHString();
|
|
if (mList.empty())
|
|
Log(Debug::Warning) << "Encountered DNAM record without DODT record, skipped.";
|
|
else
|
|
mList.back().mCellName = std::move(name);
|
|
}
|
|
}
|
|
|
|
void Transport::save(ESMWriter& esm) const
|
|
{
|
|
for (const Dest& dest : mList)
|
|
{
|
|
esm.writeNamedComposite("DODT", dest.mPos);
|
|
esm.writeHNOCString("DNAM", dest.mCellName);
|
|
}
|
|
}
|
|
|
|
}
|