Skip to content

Commit

Permalink
Merge branch 'openmw-cs-error-verify-refnums' into 'master'
Browse files Browse the repository at this point in the history
OpenMW-CS verify duplicate RefNums

See merge request OpenMW/openmw!4012
  • Loading branch information
psi29a committed Jun 24, 2024
2 parents cd365b4 + 57e7bf3 commit 64dd6e3
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 0 deletions.
11 changes: 11 additions & 0 deletions apps/opencs/model/tools/referencecheck.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,16 @@ void CSMTools::ReferenceCheckStage::perform(int stage, CSMDoc::Messages& message
const CSMWorld::CellRef& cellRef = record.get();
const CSMWorld::UniversalId id(CSMWorld::UniversalId::Type_Reference, cellRef.mId);

// Check RefNum is unique per content file, otherwise can cause load issues
const auto refNum = cellRef.mRefNum;
const auto insertResult = mUsedReferenceIDs.emplace(refNum, cellRef.mId);
if (!insertResult.second)
messages.add(id,
"Duplicate RefNum: " + std::to_string(refNum.mContentFile) + std::string("-")
+ std::to_string(refNum.mIndex) + " shared with cell reference "
+ insertResult.first->second.toString(),
"", CSMDoc::Message::Severity_Error);

// Check reference id
if (cellRef.mRefID.empty())
messages.add(id, "Instance is not based on an object", "", CSMDoc::Message::Severity_Error);
Expand Down Expand Up @@ -109,6 +119,7 @@ void CSMTools::ReferenceCheckStage::perform(int stage, CSMDoc::Messages& message
int CSMTools::ReferenceCheckStage::setup()
{
mIgnoreBaseRecords = CSMPrefs::get()["Reports"]["ignore-base-records"].isTrue();
mUsedReferenceIDs.clear();

return mReferences.getSize();
}
1 change: 1 addition & 0 deletions apps/opencs/model/tools/referencecheck.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ namespace CSMTools
const CSMWorld::IdCollection<CSMWorld::Cell>& mCells;
const CSMWorld::IdCollection<ESM::Faction>& mFactions;
const CSMWorld::IdCollection<ESM::BodyPart>& mBodyParts;
std::unordered_map<ESM::RefNum, ESM::RefId> mUsedReferenceIDs;
bool mIgnoreBaseRecords;
};
}
Expand Down

0 comments on commit 64dd6e3

Please sign in to comment.