Journal verifier
parent
f4ed389496
commit
1ae402476d
@ -0,0 +1,79 @@
|
|||||||
|
#include "journalcheck.hpp"
|
||||||
|
|
||||||
|
#include <set>
|
||||||
|
#include <sstream>
|
||||||
|
|
||||||
|
CSMTools::JournalCheckStage::JournalCheckStage(const CSMWorld::IdCollection<ESM::Dialogue> &journals,
|
||||||
|
const CSMWorld::InfoCollection& journalInfos)
|
||||||
|
: mJournals(journals), mJournalInfos(journalInfos)
|
||||||
|
{}
|
||||||
|
|
||||||
|
int CSMTools::JournalCheckStage::setup()
|
||||||
|
{
|
||||||
|
return mJournals.getSize();
|
||||||
|
}
|
||||||
|
|
||||||
|
void CSMTools::JournalCheckStage::perform(int stage, CSMDoc::Messages& messages)
|
||||||
|
{
|
||||||
|
const CSMWorld::Record<ESM::Dialogue> &journalRecord = mJournals.getRecord(stage);
|
||||||
|
|
||||||
|
if (journalRecord.isDeleted())
|
||||||
|
return;
|
||||||
|
|
||||||
|
const ESM::Dialogue &journal = journalRecord.get();
|
||||||
|
int statusNamedCount = 0;
|
||||||
|
int totalInfoCount = 0;
|
||||||
|
std::set<int> questIndices;
|
||||||
|
|
||||||
|
CSMWorld::InfoCollection::Range range = mJournalInfos.getTopicRange(journal.mId);
|
||||||
|
|
||||||
|
for (CSMWorld::InfoCollection::RecordConstIterator it = range.first; it != range.second; ++it)
|
||||||
|
{
|
||||||
|
const CSMWorld::Record<CSMWorld::Info> infoRecord = (*it);
|
||||||
|
|
||||||
|
if (infoRecord.isDeleted())
|
||||||
|
continue;
|
||||||
|
|
||||||
|
const CSMWorld::Info& journalInfo = infoRecord.get();
|
||||||
|
|
||||||
|
totalInfoCount += 1;
|
||||||
|
|
||||||
|
if (journalInfo.mQuestStatus == ESM::DialInfo::QS_Name)
|
||||||
|
{
|
||||||
|
statusNamedCount += 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (journalInfo.mResponse.empty())
|
||||||
|
{
|
||||||
|
CSMWorld::UniversalId id(CSMWorld::UniversalId::Type_JournalInfo, journalInfo.mId);
|
||||||
|
|
||||||
|
messages.add(id, "Journal Info: missing description", "", CSMDoc::Message::Severity_Warning);
|
||||||
|
}
|
||||||
|
|
||||||
|
std::pair<std::set<int>::iterator, bool> result = questIndices.insert(journalInfo.mData.mJournalIndex);
|
||||||
|
|
||||||
|
// Duplicate index
|
||||||
|
if (result.second == false)
|
||||||
|
{
|
||||||
|
CSMWorld::UniversalId id(CSMWorld::UniversalId::Type_JournalInfo, journalInfo.mId);
|
||||||
|
|
||||||
|
std::ostringstream stream;
|
||||||
|
stream << "Journal: duplicated quest index " << journalInfo.mData.mJournalIndex;
|
||||||
|
|
||||||
|
messages.add(id, stream.str(), "", CSMDoc::Message::Severity_Error);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (totalInfoCount == 0)
|
||||||
|
{
|
||||||
|
CSMWorld::UniversalId id(CSMWorld::UniversalId::Type_Journal, journal.mId);
|
||||||
|
|
||||||
|
messages.add(id, "Journal: no defined Journal Infos", "", CSMDoc::Message::Severity_Warning);
|
||||||
|
}
|
||||||
|
else if (statusNamedCount > 1)
|
||||||
|
{
|
||||||
|
CSMWorld::UniversalId id(CSMWorld::UniversalId::Type_Journal, journal.mId);
|
||||||
|
|
||||||
|
messages.add(id, "Journal: multiple infos with quest status \"Named\"", "", CSMDoc::Message::Severity_Error);
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,35 @@
|
|||||||
|
#ifndef CSM_TOOLS_JOURNALCHECK_H
|
||||||
|
#define CSM_TOOLS_JOURNALCHECK_H
|
||||||
|
|
||||||
|
#include <components/esm/loaddial.hpp>
|
||||||
|
|
||||||
|
#include "../world/idcollection.hpp"
|
||||||
|
#include "../world/infocollection.hpp"
|
||||||
|
|
||||||
|
#include "../doc/stage.hpp"
|
||||||
|
|
||||||
|
namespace CSMTools
|
||||||
|
{
|
||||||
|
/// \brief VerifyStage: make sure that journal infos are good
|
||||||
|
class JournalCheckStage : public CSMDoc::Stage
|
||||||
|
{
|
||||||
|
public:
|
||||||
|
|
||||||
|
JournalCheckStage(const CSMWorld::IdCollection<ESM::Dialogue>& journals,
|
||||||
|
const CSMWorld::InfoCollection& journalInfos);
|
||||||
|
|
||||||
|
virtual int setup();
|
||||||
|
///< \return number of steps
|
||||||
|
|
||||||
|
virtual void perform(int stage, CSMDoc::Messages& messages);
|
||||||
|
///< Messages resulting from this stage will be appended to \a messages
|
||||||
|
|
||||||
|
private:
|
||||||
|
|
||||||
|
const CSMWorld::IdCollection<ESM::Dialogue>& mJournals;
|
||||||
|
const CSMWorld::InfoCollection& mJournalInfos;
|
||||||
|
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
#endif
|
Loading…
Reference in New Issue