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.
69 lines
2.0 KiB
C++
69 lines
2.0 KiB
C++
|
|
#include "classcheck.hpp"
|
|
|
|
#include <sstream>
|
|
#include <map>
|
|
|
|
#include <components/esm/loadclas.hpp>
|
|
#include <components/esm/loadskil.hpp>
|
|
|
|
#include "../world/universalid.hpp"
|
|
|
|
CSMTools::ClassCheckStage::ClassCheckStage (const CSMWorld::IdCollection<ESM::Class>& classes)
|
|
: mClasses (classes)
|
|
{}
|
|
|
|
int CSMTools::ClassCheckStage::setup()
|
|
{
|
|
return mClasses.getSize();
|
|
}
|
|
|
|
void CSMTools::ClassCheckStage::perform (int stage, CSMDoc::Messages& messages)
|
|
{
|
|
const CSMWorld::Record<ESM::Class>& record = mClasses.getRecord (stage);
|
|
|
|
if (record.isDeleted())
|
|
return;
|
|
|
|
const ESM::Class& class_ = record.get();
|
|
|
|
CSMWorld::UniversalId id (CSMWorld::UniversalId::Type_Class, class_.mId);
|
|
|
|
// test for empty name and description
|
|
if (class_.mName.empty())
|
|
messages.push_back (std::make_pair (id, class_.mId + " has an empty name"));
|
|
|
|
if (class_.mDescription.empty())
|
|
messages.push_back (std::make_pair (id, class_.mId + " has an empty description"));
|
|
|
|
// test for invalid attributes
|
|
for (int i=0; i<2; ++i)
|
|
if (class_.mData.mAttribute[i]==-1)
|
|
{
|
|
std::ostringstream stream;
|
|
|
|
stream << "Attribute #" << i << " of " << class_.mId << " is not set";
|
|
|
|
messages.push_back (std::make_pair (id, stream.str()));
|
|
}
|
|
|
|
if (class_.mData.mAttribute[0]==class_.mData.mAttribute[1] && class_.mData.mAttribute[0]!=-1)
|
|
{
|
|
messages.push_back (std::make_pair (id, "Class lists same attribute twice"));
|
|
}
|
|
|
|
// test for non-unique skill
|
|
std::map<int, int> skills; // ID, number of occurrences
|
|
|
|
for (int i=0; i<5; ++i)
|
|
for (int i2=0; i2<2; ++i2)
|
|
++skills[class_.mData.mSkills[i][i2]];
|
|
|
|
for (std::map<int, int>::const_iterator iter (skills.begin()); iter!=skills.end(); ++iter)
|
|
if (iter->second>1)
|
|
{
|
|
messages.push_back (std::make_pair (id,
|
|
ESM::Skill::indexToId (iter->first) + " is listed more than once"));
|
|
}
|
|
}
|