mirror of
https://github.com/OpenMW/openmw.git
synced 2025-01-19 20:53:52 +00:00
252ee7f8c4
Drop Potion-specific range check, it's irrelevant
59 lines
1.9 KiB
C++
59 lines
1.9 KiB
C++
#include "enchantmentcheck.hpp"
|
|
|
|
#include <stddef.h>
|
|
#include <string>
|
|
#include <vector>
|
|
|
|
#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 <components/esm3/loadench.hpp>
|
|
|
|
#include "../prefs/state.hpp"
|
|
|
|
#include "../world/universalid.hpp"
|
|
|
|
#include "effectlistcheck.hpp"
|
|
|
|
CSMTools::EnchantmentCheckStage::EnchantmentCheckStage(const CSMWorld::IdCollection<ESM::Enchantment>& enchantments)
|
|
: mEnchantments(enchantments)
|
|
{
|
|
mIgnoreBaseRecords = false;
|
|
}
|
|
|
|
int CSMTools::EnchantmentCheckStage::setup()
|
|
{
|
|
mIgnoreBaseRecords = CSMPrefs::get()["Reports"]["ignore-base-records"].isTrue();
|
|
|
|
return mEnchantments.getSize();
|
|
}
|
|
|
|
void CSMTools::EnchantmentCheckStage::perform(int stage, CSMDoc::Messages& messages)
|
|
{
|
|
const CSMWorld::Record<ESM::Enchantment>& record = mEnchantments.getRecord(stage);
|
|
|
|
// Skip "Base" records (setting!) and "Deleted" records
|
|
if ((mIgnoreBaseRecords && record.mState == CSMWorld::RecordBase::State_BaseOnly) || record.isDeleted())
|
|
return;
|
|
|
|
const ESM::Enchantment& enchantment = record.get();
|
|
|
|
CSMWorld::UniversalId id(CSMWorld::UniversalId::Type_Enchantment, enchantment.mId);
|
|
|
|
if (enchantment.mData.mType < 0 || enchantment.mData.mType > 3)
|
|
messages.add(id, "Invalid type", "", CSMDoc::Message::Severity_Error);
|
|
|
|
if (enchantment.mData.mCost < 0)
|
|
messages.add(id, "Cost is negative", "", CSMDoc::Message::Severity_Error);
|
|
|
|
if (enchantment.mData.mCharge < 0)
|
|
messages.add(id, "Charge is negative", "", CSMDoc::Message::Severity_Error);
|
|
|
|
if (enchantment.mData.mCost > enchantment.mData.mCharge)
|
|
messages.add(id, "Cost is higher than charge", "", CSMDoc::Message::Severity_Error);
|
|
|
|
effectListCheck(enchantment.mEffects.mList, messages, id);
|
|
}
|