forked from mirror/openmw-tes3mp
9d61d76e92
Adds a boolean setting to the user preferences. This setting is locally saved to all OpenMW-CS check stages. When a verification is done, the setting is updated on setup for each check stage. If set to true, the boolean value is then used to skip the verification process for every base record - minus some special cases where, e.g., counters are to be set first. Related issue: - Fixes #4466: Editor: Add option to ignore base records when running verifier (https://gitlab.com/OpenMW/openmw/issues/4466) Tests: The changes were successfully tested in OpenMW-CS by creating faulty "Base" and "Modified" records for every record type (if possible) and, then, running the verifier with and without the option respectively.
50 lines
1.5 KiB
C++
50 lines
1.5 KiB
C++
#include "birthsigncheck.hpp"
|
|
|
|
#include <sstream>
|
|
#include <map>
|
|
|
|
#include <components/esm/loadbsgn.hpp>
|
|
|
|
#include "../prefs/state.hpp"
|
|
|
|
#include "../world/universalid.hpp"
|
|
|
|
CSMTools::BirthsignCheckStage::BirthsignCheckStage (const CSMWorld::IdCollection<ESM::BirthSign>& birthsigns)
|
|
: mBirthsigns (birthsigns)
|
|
{
|
|
mIgnoreBaseRecords = CSMPrefs::get()["Reports"]["ignore-base-records"].isTrue();
|
|
}
|
|
|
|
int CSMTools::BirthsignCheckStage::setup()
|
|
{
|
|
mIgnoreBaseRecords = CSMPrefs::get()["Reports"]["ignore-base-records"].isTrue();
|
|
|
|
return mBirthsigns.getSize();
|
|
}
|
|
|
|
void CSMTools::BirthsignCheckStage::perform (int stage, CSMDoc::Messages& messages)
|
|
{
|
|
const CSMWorld::Record<ESM::BirthSign>& record = mBirthsigns.getRecord (stage);
|
|
|
|
// Skip "Base" records (setting!) and "Deleted" records
|
|
if ((mIgnoreBaseRecords && record.isBaseOnly()) || record.isDeleted())
|
|
return;
|
|
|
|
const ESM::BirthSign& birthsign = record.get();
|
|
|
|
CSMWorld::UniversalId id (CSMWorld::UniversalId::Type_Birthsign, birthsign.mId);
|
|
|
|
// test for empty name, description and texture
|
|
if (birthsign.mName.empty())
|
|
messages.push_back (std::make_pair (id, birthsign.mId + " has an empty name"));
|
|
|
|
if (birthsign.mDescription.empty())
|
|
messages.push_back (std::make_pair (id, birthsign.mId + " has an empty description"));
|
|
|
|
if (birthsign.mTexture.empty())
|
|
messages.push_back (std::make_pair (id, birthsign.mId + " is missing a texture"));
|
|
|
|
/// \todo test if the texture exists
|
|
|
|
/// \todo check data members that can't be edited in the table view
|
|
}
|