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/spelllist.cpp

33 lines
645 B
C++

#include "spelllist.hpp"
#include "esmreader.hpp"
#include "esmwriter.hpp"
#include <components/misc/strings/algorithm.hpp>
namespace ESM
{
void SpellList::add(ESMReader& esm)
{
mList.push_back(esm.getRefId());
}
void SpellList::save(ESMWriter& esm) const
{
for (auto it = mList.begin(); it != mList.end(); ++it)
{
esm.writeHNRefId("NPCS", *it, 32);
}
}
bool SpellList::exists(const ESM::RefId& spell) const
{
for (auto it = mList.begin(); it != mList.end(); ++it)
if (*it == spell)
return true;
return false;
}
}