#ifndef __CBUILDINGHANDLER_H__ #define __CBUILDINGHANDLER_H__ #include "../global.h" #include #include /* * CBuildingHandler.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 * */ //enum EbuildingType {NEUTRAL=-1, CASTLE, RAMPART, TOWER, INFERNO, NECROPOLIS, DUNGEON, STRONGHOLD, FORTRESS, CONFLUX}; class DLL_EXPORT CBuilding //a typical building encountered in every castle ;] { public: si32 tid, bid; //town ID and structure ID std::vector resources; std::string name; std::string description; const std::string &Name() const; const std::string &Description() const; template void serialize(Handler &h, const int version) { h & tid & bid & resources & name & description; } CBuilding(int TID = -1, int BID = -1); }; class DLL_EXPORT CBuildingHandler { public: std::map > buildings; ///< first int is the castle ID, second the building ID (in ERM-U format) std::map > > > > hall; //map >[5]> - external vector is the vector of buildings in the row, internal is the list of buildings for the specific slot void loadBuildings(); //main loader ~CBuildingHandler(); //d-tor template void serialize(Handler &h, const int version) { h & buildings & hall; } }; #endif // __CBUILDINGHANDLER_H__