mirror of
https://github.com/vcmi/vcmi.git
synced 2024-11-24 08:32:34 +02:00
39 lines
1.0 KiB
C++
39 lines
1.0 KiB
C++
#ifndef CGAMEINTERFACE_H
|
|
#define CGAMEINTERFACE_H
|
|
#include "global.h"
|
|
#include "CCallback.h"
|
|
BOOST_TRIBOOL_THIRD_STATE(outOfRange)
|
|
|
|
using namespace boost::logic;
|
|
class CCallback;
|
|
class CGlobalAI;
|
|
class CGHeroInstance;
|
|
|
|
class CGameInterface
|
|
{
|
|
public:
|
|
bool human;
|
|
int playerID, serialID;
|
|
|
|
virtual void init(CCallback * CB)=0{};
|
|
virtual void yourTurn()=0{};
|
|
virtual void heroKilled(const CGHeroInstance*)=0{};
|
|
virtual void heroCreated(const CGHeroInstance*)=0{};
|
|
virtual void heroPrimarySkillChanged(const CGHeroInstance * hero, int which, int val)=0{};
|
|
virtual void heroMoved(const HeroMoveDetails & details)=0{};
|
|
virtual void receivedResource(int type, int val){};
|
|
};
|
|
class CAIHandler
|
|
{
|
|
public:
|
|
static CGlobalAI * getNewAI(CCallback * cb, std::string dllname);
|
|
};
|
|
class CGlobalAI : public CGameInterface // AI class (to derivate)
|
|
{
|
|
public:
|
|
//CGlobalAI();
|
|
virtual void yourTurn(){};
|
|
virtual void heroKilled(const CGHeroInstance*){};
|
|
virtual void heroCreated(const CGHeroInstance*){};
|
|
};
|
|
#endif //CGAMEINTERFACE_H
|