1
0
mirror of https://github.com/vcmi/vcmi.git synced 2024-12-24 22:14:36 +02:00
vcmi/CHeroHandler.h

41 lines
1.0 KiB
C
Raw Normal View History

#ifndef CHEROHANDLER_H
#define CHEROHANDLER_H
#include <string>
#include <vector>
#include "CCreatureHandler.h"
#include "nodrze.h"
class CHero
{
public:
std::string name;
int ID;
int low1stack, high1stack, low2stack, high2stack, low3stack, high3stack; //amount of units; described below
std::string refType1stack, refType2stack, refType3stack; //reference names of units appearing in hero's army if he is recruited in tavern
std::string bonusName, shortBonus, longBonus; //for special abilities
std::string biography; //biography, of course
bool isAllowed; //true if we can play with this hero (depends on map)
bool operator<(CHero& drugi){if (ID < drugi.ID) return true; else return false;}
};
class CHeroInstance
{
public:
CHero type;
int x, y, z; //position
CCreatureSet army; //army
//TODO: armia, artefakty, itd.
};
class CHeroHandler
{
public:
nodrze<CHero> heroes;
void loadHeroes();
void loadSpecialAbilities();
void loadBiographies();
};
#endif //CHEROHANDLER_H