forked from mirror/openmw-tes3mp
added verifier for region record
This commit is contained in:
parent
c9424f577f
commit
593646436e
4 changed files with 66 additions and 1 deletions
|
@ -35,7 +35,7 @@ opencs_units (model/tools
|
||||||
)
|
)
|
||||||
|
|
||||||
opencs_units_noqt (model/tools
|
opencs_units_noqt (model/tools
|
||||||
stage verifier mandatoryid skillcheck classcheck factioncheck racecheck soundcheck
|
stage verifier mandatoryid skillcheck classcheck factioncheck racecheck soundcheck regioncheck
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
|
|
33
apps/opencs/model/tools/regioncheck.cpp
Normal file
33
apps/opencs/model/tools/regioncheck.cpp
Normal file
|
@ -0,0 +1,33 @@
|
||||||
|
|
||||||
|
#include "regioncheck.hpp"
|
||||||
|
|
||||||
|
#include <sstream>
|
||||||
|
#include <map>
|
||||||
|
|
||||||
|
#include <components/esm/loadregn.hpp>
|
||||||
|
|
||||||
|
#include "../world/universalid.hpp"
|
||||||
|
|
||||||
|
CSMTools::RegionCheckStage::RegionCheckStage (const CSMWorld::IdCollection<ESM::Region>& regions)
|
||||||
|
: mRegions (regions)
|
||||||
|
{}
|
||||||
|
|
||||||
|
int CSMTools::RegionCheckStage::setup()
|
||||||
|
{
|
||||||
|
return mRegions.getSize();
|
||||||
|
}
|
||||||
|
|
||||||
|
void CSMTools::RegionCheckStage::perform (int stage, std::vector<std::string>& messages)
|
||||||
|
{
|
||||||
|
const ESM::Region& region = mRegions.getRecord (stage).get();
|
||||||
|
|
||||||
|
CSMWorld::UniversalId id (CSMWorld::UniversalId::Type_Region, region.mId);
|
||||||
|
|
||||||
|
// test for empty name
|
||||||
|
if (region.mName.empty())
|
||||||
|
messages.push_back (id.toString() + "|" + region.mId + " has an empty name");
|
||||||
|
|
||||||
|
/// \todo test that the ID in mSleeplist exists
|
||||||
|
|
||||||
|
/// \todo check data members that can't be edited in the table view
|
||||||
|
}
|
29
apps/opencs/model/tools/regioncheck.hpp
Normal file
29
apps/opencs/model/tools/regioncheck.hpp
Normal file
|
@ -0,0 +1,29 @@
|
||||||
|
#ifndef CSM_TOOLS_REGIONCHECK_H
|
||||||
|
#define CSM_TOOLS_REGIONCHECK_H
|
||||||
|
|
||||||
|
#include <components/esm/loadregn.hpp>
|
||||||
|
|
||||||
|
#include "../world/idcollection.hpp"
|
||||||
|
|
||||||
|
#include "stage.hpp"
|
||||||
|
|
||||||
|
namespace CSMTools
|
||||||
|
{
|
||||||
|
/// \brief VerifyStage: make sure that region records are internally consistent
|
||||||
|
class RegionCheckStage : public Stage
|
||||||
|
{
|
||||||
|
const CSMWorld::IdCollection<ESM::Region>& mRegions;
|
||||||
|
|
||||||
|
public:
|
||||||
|
|
||||||
|
RegionCheckStage (const CSMWorld::IdCollection<ESM::Region>& regions);
|
||||||
|
|
||||||
|
virtual int setup();
|
||||||
|
///< \return number of steps
|
||||||
|
|
||||||
|
virtual void perform (int stage, std::vector<std::string>& messages);
|
||||||
|
///< Messages resulting from this tage will be appended to \a messages.
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
#endif
|
|
@ -17,6 +17,7 @@
|
||||||
#include "factioncheck.hpp"
|
#include "factioncheck.hpp"
|
||||||
#include "racecheck.hpp"
|
#include "racecheck.hpp"
|
||||||
#include "soundcheck.hpp"
|
#include "soundcheck.hpp"
|
||||||
|
#include "regioncheck.hpp"
|
||||||
|
|
||||||
CSMTools::Operation *CSMTools::Tools::get (int type)
|
CSMTools::Operation *CSMTools::Tools::get (int type)
|
||||||
{
|
{
|
||||||
|
@ -66,6 +67,8 @@ CSMTools::Verifier *CSMTools::Tools::getVerifier()
|
||||||
mVerifier->appendStage (new RaceCheckStage (mData.getRaces()));
|
mVerifier->appendStage (new RaceCheckStage (mData.getRaces()));
|
||||||
|
|
||||||
mVerifier->appendStage (new SoundCheckStage (mData.getSounds()));
|
mVerifier->appendStage (new SoundCheckStage (mData.getSounds()));
|
||||||
|
|
||||||
|
mVerifier->appendStage (new RegionCheckStage (mData.getRegions()));
|
||||||
}
|
}
|
||||||
|
|
||||||
return mVerifier;
|
return mVerifier;
|
||||||
|
|
Loading…
Reference in a new issue