| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100 | 
							- /*
 
-  * MapReaderH3M.h, part of VCMI engine
 
-  *
 
-  * Authors: listed in file AUTHORS in main folder
 
-  *
 
-  * License: GNU General Public License v2.0 or later
 
-  * Full text of license available in license.txt file, in main folder
 
-  *
 
-  */
 
- #pragma once
 
- #include "../GameConstants.h"
 
- #include "../ResourceSet.h"
 
- #include "MapFeaturesH3M.h"
 
- #include "MapIdentifiersH3M.h"
 
- VCMI_LIB_NAMESPACE_BEGIN
 
- class CBinaryReader;
 
- class CInputStream;
 
- struct MapFormatFeaturesH3M;
 
- class int3;
 
- enum class EMapFormat : uint8_t;
 
- class MapReaderH3M
 
- {
 
- public:
 
- 	explicit MapReaderH3M(CInputStream * stream);
 
- 	void setFormatLevel(const MapFormatFeaturesH3M & features);
 
- 	void setIdentifierRemapper(const MapIdentifiersH3M & remapper);
 
- 	ArtifactID readArtifact();
 
- 	ArtifactID readArtifact32();
 
- 	CreatureID readCreature();
 
- 	HeroTypeID readHero();
 
- 	int32_t readHeroPortrait();
 
- 	TerrainId readTerrain();
 
- 	RoadId readRoad();
 
- 	RiverId readRiver();
 
- 	SecondarySkill readSkill();
 
- 	SpellID readSpell();
 
- 	SpellID readSpell32();
 
- 	PlayerColor readPlayer();
 
- 	PlayerColor readPlayer32();
 
- 	void readBitmaskBuildings(std::set<BuildingID> & dest, std::optional<FactionID> faction);
 
- 	void readBitmaskFactions(std::set<FactionID> & dest, bool invert);
 
- 	void readBitmaskPlayers(std::set<PlayerColor> & dest, bool invert);
 
- 	void readBitmaskResources(std::set<GameResID> & dest, bool invert);
 
- 	void readBitmaskHeroClassesSized(std::set<HeroClassID> & dest, bool invert);
 
- 	void readBitmaskHeroes(std::vector<bool> & dest, bool invert);
 
- 	void readBitmaskHeroesSized(std::vector<bool> & dest, bool invert);
 
- 	void readBitmaskArtifacts(std::vector<bool> & dest, bool invert);
 
- 	void readBitmaskArtifactsSized(std::vector<bool> & dest, bool invert);
 
- 	void readBitmaskSpells(std::vector<bool> & dest, bool invert);
 
- 	void readBitmaskSpells(std::set<SpellID> & dest, bool invert);
 
- 	void readBitmaskSkills(std::vector<bool> & dest, bool invert);
 
- 	void readBitmaskSkills(std::set<SecondarySkill> & dest, bool invert);
 
- 	int3 readInt3();
 
- 	std::shared_ptr<ObjectTemplate> readObjectTemplate();
 
- 	void skipUnused(size_t amount);
 
- 	void skipZero(size_t amount);
 
- 	void readResourses(TResources & resources);
 
- 	bool readBool();
 
- 	ui8 readUInt8();
 
- 	si8 readInt8();
 
- 	ui16 readUInt16();
 
- 	si16 readInt16();
 
- 	ui32 readUInt32();
 
- 	si32 readInt32();
 
- 	std::string readBaseString();
 
- 	CBinaryReader & getInternalReader();
 
- private:
 
- 	template<class Identifier>
 
- 	Identifier remapIdentifier(const Identifier & identifier);
 
- 	template<class Identifier>
 
- 	void readBitmask(std::set<Identifier> & dest, int bytesToRead, int objectsToRead, bool invert);
 
- 	template<class Identifier>
 
- 	void readBitmask(std::vector<bool> & dest, int bytesToRead, int objectsToRead, bool invert);
 
- 	MapFormatFeaturesH3M features;
 
- 	MapIdentifiersH3M remapper;
 
- 	std::unique_ptr<CBinaryReader> reader;
 
- };
 
- VCMI_LIB_NAMESPACE_END
 
 
  |