mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2024-12-28 18:18:52 +00:00
6d261d38dd
To be later changed with another implementation.
33 lines
645 B
C++
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;
|
|
}
|
|
|
|
}
|