1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-01-10 15:39:02 +00:00
OpenMW/apps/opencs/model/tools/gmstcheck.cpp

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

149 lines
5.3 KiB
C++
Raw Normal View History

2016-01-18 02:55:03 +00:00
#include "gmstcheck.hpp"
#include <sstream>
2022-10-19 17:02:00 +00:00
#include <stddef.h>
#include <apps/opencs/model/doc/messages.hpp>
#include <apps/opencs/model/prefs/category.hpp>
#include <apps/opencs/model/prefs/setting.hpp>
#include <apps/opencs/model/world/idcollection.hpp>
#include <apps/opencs/model/world/record.hpp>
#include <apps/opencs/model/world/universalid.hpp>
#include <components/esm3/loadgmst.hpp>
#include "../prefs/state.hpp"
2016-01-18 02:55:03 +00:00
#include "../world/defaultgmsts.hpp"
CSMTools::GmstCheckStage::GmstCheckStage(const CSMWorld::IdCollection<ESM::GameSetting>& gameSettings)
2016-01-18 02:55:03 +00:00
: mGameSettings(gameSettings)
{
mIgnoreBaseRecords = false;
}
2016-01-18 02:55:03 +00:00
int CSMTools::GmstCheckStage::setup()
2016-01-18 02:55:03 +00:00
{
mIgnoreBaseRecords = CSMPrefs::get()["Reports"]["ignore-base-records"].isTrue();
2016-01-18 02:55:03 +00:00
return mGameSettings.getSize();
}
void CSMTools::GmstCheckStage::perform(int stage, CSMDoc::Messages& messages)
2016-01-18 02:55:03 +00:00
{
const CSMWorld::Record<ESM::GameSetting>& record = mGameSettings.getRecord(stage);
2022-09-22 18:26:05 +00:00
// Skip "Base" records (setting!) and "Deleted" records
if ((mIgnoreBaseRecords && record.mState == CSMWorld::RecordBase::State_BaseOnly) || record.isDeleted())
2016-01-18 02:55:03 +00:00
return;
2022-09-22 18:26:05 +00:00
2016-01-18 02:55:03 +00:00
const ESM::GameSetting& gmst = record.get();
2022-09-22 18:26:05 +00:00
2016-01-18 02:55:03 +00:00
CSMWorld::UniversalId id(CSMWorld::UniversalId::Type_Gmst, gmst.mId);
const std::string& gmstIdString = gmst.mId.getRefIdString();
2016-01-18 02:55:03 +00:00
// Test for empty string
if (gmst.mValue.getType() == ESM::VT_String && gmst.mValue.getString().empty())
messages.add(id, gmstIdString + " is an empty string", "", CSMDoc::Message::Severity_Warning);
2022-09-22 18:26:05 +00:00
2016-01-18 02:55:03 +00:00
// Checking type and limits
// optimization - compare it to lists based on naming convention (f-float,i-int,s-string)
if (gmst.mId.startsWith("f"))
2016-01-18 02:55:03 +00:00
{
for (size_t i = 0; i < CSMWorld::DefaultGmsts::FloatCount; ++i)
2016-01-18 02:55:03 +00:00
{
if (gmst.mId == ESM::RefId::stringRefId(CSMWorld::DefaultGmsts::Floats[i]))
2016-01-18 02:55:03 +00:00
{
if (gmst.mValue.getType() != ESM::VT_Float)
{
std::ostringstream stream;
stream << "Expected float type for " << gmst.mId << " but found "
<< varTypeToString(gmst.mValue.getType()) << " type";
2022-09-22 18:26:05 +00:00
messages.add(id, stream.str(), "", CSMDoc::Message::Severity_Error);
}
2022-09-22 18:26:05 +00:00
if (gmst.mValue.getFloat() < CSMWorld::DefaultGmsts::FloatLimits[i * 2])
messages.add(
id, gmstIdString + " is less than the suggested range", "", CSMDoc::Message::Severity_Warning);
2022-09-22 18:26:05 +00:00
if (gmst.mValue.getFloat() > CSMWorld::DefaultGmsts::FloatLimits[i * 2 + 1])
messages.add(
id, gmstIdString + " is more than the suggested range", "", CSMDoc::Message::Severity_Warning);
2022-09-22 18:26:05 +00:00
2016-01-18 02:55:03 +00:00
break; // for loop
}
}
}
else if (gmst.mId.startsWith("i"))
2016-01-18 02:55:03 +00:00
{
for (size_t i = 0; i < CSMWorld::DefaultGmsts::IntCount; ++i)
2016-01-18 02:55:03 +00:00
{
if (gmst.mId == ESM::RefId::stringRefId(CSMWorld::DefaultGmsts::Ints[i]))
2016-01-18 02:55:03 +00:00
{
if (gmst.mValue.getType() != ESM::VT_Int)
{
std::ostringstream stream;
stream << "Expected int type for " << gmst.mId << " but found "
<< varTypeToString(gmst.mValue.getType()) << " type";
2022-09-22 18:26:05 +00:00
messages.add(id, stream.str(), "", CSMDoc::Message::Severity_Error);
}
2022-09-22 18:26:05 +00:00
if (gmst.mValue.getInteger() < CSMWorld::DefaultGmsts::IntLimits[i * 2])
messages.add(
id, gmstIdString + " is less than the suggested range", "", CSMDoc::Message::Severity_Warning);
2022-09-22 18:26:05 +00:00
if (gmst.mValue.getInteger() > CSMWorld::DefaultGmsts::IntLimits[i * 2 + 1])
messages.add(
id, gmstIdString + " is more than the suggested range", "", CSMDoc::Message::Severity_Warning);
2022-09-22 18:26:05 +00:00
2016-01-18 02:55:03 +00:00
break; // for loop
}
}
}
else if (gmst.mId.startsWith("s"))
2016-01-18 02:55:03 +00:00
{
for (size_t i = 0; i < CSMWorld::DefaultGmsts::StringCount; ++i)
2016-01-18 02:55:03 +00:00
{
if (gmst.mId == ESM::RefId::stringRefId(CSMWorld::DefaultGmsts::Strings[i]))
2016-01-18 02:55:03 +00:00
{
ESM::VarType type = gmst.mValue.getType();
2022-09-22 18:26:05 +00:00
2016-01-18 02:55:03 +00:00
if (type != ESM::VT_String && type != ESM::VT_None)
{
std::ostringstream stream;
stream << "Expected string or none type for " << gmstIdString << " but found "
<< varTypeToString(gmst.mValue.getType()) << " type";
2022-09-22 18:26:05 +00:00
messages.add(id, stream.str(), "", CSMDoc::Message::Severity_Error);
}
2022-09-22 18:26:05 +00:00
2016-01-18 02:55:03 +00:00
break; // for loop
}
}
}
}
std::string CSMTools::GmstCheckStage::varTypeToString(ESM::VarType type)
{
switch (type)
{
case ESM::VT_Unknown:
return "unknown";
case ESM::VT_None:
return "none";
case ESM::VT_Short:
return "short";
case ESM::VT_Int:
return "int";
case ESM::VT_Long:
return "long";
case ESM::VT_Float:
return "float";
case ESM::VT_String:
return "string";
default:
return "unhandled";
}
}