2013-04-06 15:35:36 +00:00
|
|
|
#ifndef CSM_TOOLS_RACECHECK_H
|
|
|
|
#define CSM_TOOLS_RACECHECK_H
|
|
|
|
|
|
|
|
#include "../world/idcollection.hpp"
|
|
|
|
|
2013-09-14 12:56:23 +00:00
|
|
|
#include "../doc/stage.hpp"
|
2013-04-06 15:35:36 +00:00
|
|
|
|
2022-10-19 17:02:00 +00:00
|
|
|
namespace CSMDoc
|
|
|
|
{
|
|
|
|
class Messages;
|
|
|
|
}
|
|
|
|
|
|
|
|
namespace ESM
|
|
|
|
{
|
|
|
|
struct Race;
|
|
|
|
}
|
|
|
|
|
2013-04-06 15:35:36 +00:00
|
|
|
namespace CSMTools
|
|
|
|
{
|
|
|
|
/// \brief VerifyStage: make sure that race records are internally consistent
|
2013-09-14 12:56:23 +00:00
|
|
|
class RaceCheckStage : public CSMDoc::Stage
|
2013-04-06 15:35:36 +00:00
|
|
|
{
|
|
|
|
const CSMWorld::IdCollection<ESM::Race>& mRaces;
|
2013-04-06 17:20:59 +00:00
|
|
|
bool mPlayable;
|
2018-06-19 22:20:03 +00:00
|
|
|
bool mIgnoreBaseRecords;
|
2013-04-06 17:20:59 +00:00
|
|
|
|
2014-12-07 17:57:47 +00:00
|
|
|
void performPerRecord(int stage, CSMDoc::Messages& messages);
|
2013-04-06 17:20:59 +00:00
|
|
|
|
2014-12-07 17:57:47 +00:00
|
|
|
void performFinal(CSMDoc::Messages& messages);
|
2013-04-06 15:35:36 +00:00
|
|
|
|
|
|
|
public:
|
|
|
|
RaceCheckStage(const CSMWorld::IdCollection<ESM::Race>& races);
|
|
|
|
|
|
|
|
int setup() override;
|
|
|
|
///< \return number of steps
|
|
|
|
|
2020-10-16 18:18:54 +00:00
|
|
|
void perform(int stage, CSMDoc::Messages& messages) override;
|
2013-04-06 15:35:36 +00:00
|
|
|
///< Messages resulting from this tage will be appended to \a messages.
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|