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.
55 lines
1.2 KiB
C++
55 lines
1.2 KiB
C++
#ifndef OPENMW_COMPONENTS_ESMLOADER_ESMDATA_H
|
|
#define OPENMW_COMPONENTS_ESMLOADER_ESMDATA_H
|
|
|
|
#include <components/esm/defs.hpp>
|
|
#include <components/esm/refid.hpp>
|
|
|
|
#include <string_view>
|
|
#include <vector>
|
|
|
|
namespace ESM
|
|
{
|
|
struct Activator;
|
|
struct Cell;
|
|
struct Container;
|
|
struct Door;
|
|
struct GameSetting;
|
|
struct Land;
|
|
struct Static;
|
|
class Variant;
|
|
class RefId;
|
|
}
|
|
|
|
namespace EsmLoader
|
|
{
|
|
struct RefIdWithType
|
|
{
|
|
ESM::RefId mId;
|
|
ESM::RecNameInts mType;
|
|
};
|
|
|
|
struct EsmData
|
|
{
|
|
std::vector<ESM::Activator> mActivators;
|
|
std::vector<ESM::Cell> mCells;
|
|
std::vector<ESM::Container> mContainers;
|
|
std::vector<ESM::Door> mDoors;
|
|
std::vector<ESM::GameSetting> mGameSettings;
|
|
std::vector<ESM::Land> mLands;
|
|
std::vector<ESM::Static> mStatics;
|
|
std::vector<RefIdWithType> mRefIdTypes;
|
|
|
|
EsmData() = default;
|
|
EsmData(const EsmData&) = delete;
|
|
EsmData(EsmData&&) = default;
|
|
|
|
~EsmData();
|
|
};
|
|
|
|
std::string_view getModel(const EsmData& content, const ESM::RefId& refId, ESM::RecNameInts type);
|
|
|
|
ESM::Variant getGameSetting(const std::vector<ESM::GameSetting>& records, std::string_view id);
|
|
}
|
|
|
|
#endif
|