mirror of https://github.com/OpenMW/openmw.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
52 lines
1.3 KiB
C++
52 lines
1.3 KiB
C++
#ifndef CSM_TOOLS_REFERENCECHECK_H
|
|
#define CSM_TOOLS_REFERENCECHECK_H
|
|
|
|
#include "../world/idcollection.hpp"
|
|
#include "../world/refcollection.hpp"
|
|
|
|
#include "../doc/stage.hpp"
|
|
|
|
namespace ESM
|
|
{
|
|
struct BodyPart;
|
|
struct Faction;
|
|
}
|
|
|
|
namespace CSMDoc
|
|
{
|
|
class Messages;
|
|
}
|
|
|
|
namespace CSMWorld
|
|
{
|
|
class RefIdCollection;
|
|
class RefIdData;
|
|
struct Cell;
|
|
}
|
|
|
|
namespace CSMTools
|
|
{
|
|
class ReferenceCheckStage : public CSMDoc::Stage
|
|
{
|
|
public:
|
|
ReferenceCheckStage(const CSMWorld::RefCollection& references, const CSMWorld::RefIdCollection& referencables,
|
|
const CSMWorld::IdCollection<CSMWorld::Cell>& cells, const CSMWorld::IdCollection<ESM::Faction>& factions,
|
|
const CSMWorld::IdCollection<ESM::BodyPart>& bodyparts);
|
|
|
|
void perform(int stage, CSMDoc::Messages& messages) override;
|
|
int setup() override;
|
|
|
|
private:
|
|
const CSMWorld::RefCollection& mReferences;
|
|
const CSMWorld::RefIdCollection& mObjects;
|
|
const CSMWorld::RefIdData& mDataSet;
|
|
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;
|
|
};
|
|
}
|
|
|
|
#endif // CSM_TOOLS_REFERENCECHECK_H
|