1
0
mirror of https://github.com/vcmi/vcmi.git synced 2024-11-26 08:41:13 +02:00
vcmi/hch/CTownHandler.h

50 lines
1.3 KiB
C
Raw Normal View History

2007-07-26 15:00:18 +03:00
#ifndef CTOWNHANDLER_H
#define CTOWNHANDLER_H
#include "../global.h"
#include <set>
class CBuilding;
class CSpell;
class CHero;
class CGTownInstance;
2008-06-17 20:48:32 +03:00
class DLL_EXPORT CTown
2007-07-26 15:00:18 +03:00
{
public:
std::string name; //name of type
std::vector<std::string> names; //names of the town instances
std::vector<int> basicCreatures; //level (from 0) -> ID
std::vector<int> upgradedCreatures; //level (from 0) -> ID
std::map<int,int> hordeLvl; //[0] - first horde building creature level; [1] - second horde building (-1 if not present)
2007-07-26 15:00:18 +03:00
int bonus; //pic number
int typeID;
2007-07-26 15:00:18 +03:00
};
struct DLL_EXPORT Structure
{
int ID;
int3 pos;
std::string defName, borderName, areaName, name;
2008-01-27 15:18:18 +02:00
int townID, group;
bool operator<(const Structure & p2) const
{
if(pos.z != p2.pos.z)
return (pos.z) < (p2.pos.z);
else
return (ID) < (p2.ID);
}
};
class DLL_EXPORT CTownHandler
2007-07-26 15:00:18 +03:00
{
public:
std::vector<CTown> towns;
2008-03-11 23:36:59 +02:00
std::vector<std::string> tcommands, hcommands;
2008-01-27 15:18:18 +02:00
std::map<int,std::map<int, Structure*> > structures; // <town ID, <structure ID, structure>>
std::map<int, std::map<int,std::set<int> > > requirements; //requirements[town_id][structure_id] -> set of required buildings
CTownHandler();
~CTownHandler();
void loadNames();
2007-07-26 15:00:18 +03:00
};
#endif //CTOWNHANDLER_H