mirror of
				https://github.com/OpenMW/openmw.git
				synced 2025-11-04 06:26:39 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			46 lines
		
	
	
	
		
			1.3 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			46 lines
		
	
	
	
		
			1.3 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
#include "spellcheck.hpp"
 | 
						|
 | 
						|
#include <sstream>
 | 
						|
#include <map>
 | 
						|
 | 
						|
#include <components/esm/loadspel.hpp>
 | 
						|
 | 
						|
#include "../prefs/state.hpp"
 | 
						|
 | 
						|
#include "../world/universalid.hpp"
 | 
						|
 | 
						|
CSMTools::SpellCheckStage::SpellCheckStage (const CSMWorld::IdCollection<ESM::Spell>& spells)
 | 
						|
: mSpells (spells)
 | 
						|
{
 | 
						|
    mIgnoreBaseRecords = false;
 | 
						|
}
 | 
						|
 | 
						|
int CSMTools::SpellCheckStage::setup()
 | 
						|
{
 | 
						|
    mIgnoreBaseRecords = CSMPrefs::get()["Reports"]["ignore-base-records"].isTrue();
 | 
						|
 | 
						|
    return mSpells.getSize();
 | 
						|
}
 | 
						|
 | 
						|
void CSMTools::SpellCheckStage::perform (int stage, CSMDoc::Messages& messages)
 | 
						|
{
 | 
						|
    const CSMWorld::Record<ESM::Spell>& record = mSpells.getRecord (stage);
 | 
						|
 | 
						|
    // Skip "Base" records (setting!) and "Deleted" records
 | 
						|
    if ((mIgnoreBaseRecords && record.mState == CSMWorld::RecordBase::State_BaseOnly) || record.isDeleted())
 | 
						|
        return;
 | 
						|
 | 
						|
    const ESM::Spell& spell = record.get();
 | 
						|
 | 
						|
    CSMWorld::UniversalId id (CSMWorld::UniversalId::Type_Spell, spell.mId);
 | 
						|
 | 
						|
    // test for empty name
 | 
						|
    if (spell.mName.empty())
 | 
						|
        messages.add(id, "Name is missing", "", CSMDoc::Message::Severity_Error);
 | 
						|
 | 
						|
    // test for invalid cost values
 | 
						|
    if (spell.mData.mCost<0)
 | 
						|
        messages.add(id, "Spell cost is negative", "", CSMDoc::Message::Severity_Error);
 | 
						|
 | 
						|
    /// \todo check data members that can't be edited in the table view
 | 
						|
}
 |