forked from mirror/openmw-tes3mp
92 lines
3.7 KiB
C++
92 lines
3.7 KiB
C++
|
#include "gmstcheck.hpp"
|
||
|
|
||
|
#include "../world/defaultgmsts.hpp"
|
||
|
|
||
|
CSMTools::GMSTCheckStage::GMSTCheckStage(const CSMWorld::IdCollection<ESM::GameSetting>& gameSettings)
|
||
|
: mGameSettings(gameSettings)
|
||
|
{}
|
||
|
|
||
|
int CSMTools::GMSTCheckStage::setup()
|
||
|
{
|
||
|
return mGameSettings.getSize();
|
||
|
}
|
||
|
|
||
|
void CSMTools::GMSTCheckStage::perform(int stage, CSMDoc::Messages& messages)
|
||
|
{
|
||
|
const CSMWorld::Record<ESM::GameSetting>& record = mGameSettings.getRecord (stage);
|
||
|
|
||
|
if (record.isDeleted())
|
||
|
return;
|
||
|
|
||
|
const ESM::GameSetting& gmst = record.get();
|
||
|
|
||
|
CSMWorld::UniversalId id (CSMWorld::UniversalId::Type_Gmst, gmst.mId);
|
||
|
|
||
|
// Test for empty string
|
||
|
if (gmst.mValue.getType() == ESM::VT_String && gmst.mValue.getString().empty())
|
||
|
messages.add(id, gmst.mId + " is an empty string", "", CSMDoc::Message::Severity_Warning);
|
||
|
|
||
|
// Checking type and limits
|
||
|
// optimization - compare it to lists based on naming convention (f-float,i-int,s-string)
|
||
|
if (gmst.mId[0] == 'f')
|
||
|
{
|
||
|
for (size_t i = 0; i < CSMWorld::DefaultGMSTs::FloatCount; ++i)
|
||
|
{
|
||
|
if (gmst.mId == CSMWorld::DefaultGMSTs::Floats[i])
|
||
|
{
|
||
|
if (gmst.mValue.getType() != ESM::VT_Float)
|
||
|
messages.add(id, "The type of " + gmst.mId + " is incorrect",
|
||
|
"Change the GMST type to a float", CSMDoc::Message::Severity_Error);
|
||
|
|
||
|
if (gmst.mValue.getFloat() < CSMWorld::DefaultGMSTs::FloatLimits[i*2])
|
||
|
messages.add(id, gmst.mId + " is less than the suggested range", "Change the value",
|
||
|
CSMDoc::Message::Severity_Warning);
|
||
|
|
||
|
if (gmst.mValue.getFloat() > CSMWorld::DefaultGMSTs::FloatLimits[i*2+1])
|
||
|
messages.add(id, gmst.mId + " is more than the suggested range", "Change the value",
|
||
|
CSMDoc::Message::Severity_Warning);
|
||
|
|
||
|
break; // for loop
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
else if (gmst.mId[0] == 'i')
|
||
|
{
|
||
|
for (size_t i = 0; i < CSMWorld::DefaultGMSTs::IntCount; ++i)
|
||
|
{
|
||
|
if (gmst.mId == CSMWorld::DefaultGMSTs::Ints[i])
|
||
|
{
|
||
|
if (gmst.mValue.getType() != ESM::VT_Int)
|
||
|
messages.add(id, "The type of " + gmst.mId + " is incorrect",
|
||
|
"Change the GMST type to an int", CSMDoc::Message::Severity_Error);
|
||
|
|
||
|
if (gmst.mValue.getInteger() < CSMWorld::DefaultGMSTs::IntLimits[i*2])
|
||
|
messages.add(id, gmst.mId + " is less than the suggested range", "Change the value",
|
||
|
CSMDoc::Message::Severity_Warning);
|
||
|
|
||
|
if (gmst.mValue.getInteger() > CSMWorld::DefaultGMSTs::IntLimits[i*2+1])
|
||
|
messages.add(id, gmst.mId + " is more than the suggested range", "Change the value",
|
||
|
CSMDoc::Message::Severity_Warning);
|
||
|
|
||
|
break; // for loop
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
else if (gmst.mId[0] == 's')
|
||
|
{
|
||
|
for (size_t i = 0; i < CSMWorld::DefaultGMSTs::StringCount; ++i)
|
||
|
{
|
||
|
if (gmst.mId == CSMWorld::DefaultGMSTs::Strings[i])
|
||
|
{
|
||
|
ESM::VarType type = gmst.mValue.getType();
|
||
|
|
||
|
if (type != ESM::VT_String && type != ESM::VT_None)
|
||
|
messages.add(id, "The type of " + gmst.mId + " is incorrect",
|
||
|
"Change the GMST type to a string", CSMDoc::Message::Severity_Error);
|
||
|
|
||
|
break; // for loop
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|