2007-08-01 17:06:04 +03:00
|
|
|
#ifndef CGAMEINTERFACE_H
|
|
|
|
#define CGAMEINTERFACE_H
|
2007-11-19 00:58:28 +02:00
|
|
|
#include "global.h"
|
|
|
|
#include "CCallback.h"
|
2007-08-04 00:47:34 +03:00
|
|
|
BOOST_TRIBOOL_THIRD_STATE(outOfRange)
|
2007-09-18 16:30:26 +03:00
|
|
|
|
2007-08-04 00:47:34 +03:00
|
|
|
using namespace boost::logic;
|
2007-09-14 16:11:10 +03:00
|
|
|
class CCallback;
|
2007-11-19 00:58:28 +02:00
|
|
|
class CGlobalAI;
|
2007-10-27 22:38:48 +03:00
|
|
|
class CGHeroInstance;
|
2007-11-19 00:58:28 +02:00
|
|
|
|
2007-08-04 00:47:34 +03:00
|
|
|
class CGameInterface
|
|
|
|
{
|
2007-08-04 22:01:22 +03:00
|
|
|
public:
|
|
|
|
bool human;
|
2007-08-06 07:03:34 +03:00
|
|
|
int playerID, serialID;
|
2007-08-04 22:01:22 +03:00
|
|
|
|
2007-10-21 19:45:13 +03:00
|
|
|
virtual void init(CCallback * CB)=0{};
|
2007-08-04 22:01:22 +03:00
|
|
|
virtual void yourTurn()=0{};
|
2007-10-27 22:38:48 +03:00
|
|
|
virtual void heroKilled(const CGHeroInstance*)=0{};
|
|
|
|
virtual void heroCreated(const CGHeroInstance*)=0{};
|
2007-11-19 00:58:28 +02:00
|
|
|
virtual void heroPrimarySkillChanged(const CGHeroInstance * hero, int which, int val)=0{};
|
2007-11-29 20:45:47 +02:00
|
|
|
virtual void heroMoved(const HeroMoveDetails & details)=0{};
|
2007-11-25 15:16:45 +02:00
|
|
|
virtual void receivedResource(int type, int val){};
|
2007-08-04 00:47:34 +03:00
|
|
|
};
|
2007-10-21 19:45:13 +03:00
|
|
|
class CAIHandler
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
static CGlobalAI * getNewAI(CCallback * cb, std::string dllname);
|
|
|
|
};
|
2007-08-25 07:56:25 +03:00
|
|
|
class CGlobalAI : public CGameInterface // AI class (to derivate)
|
2007-08-04 00:47:34 +03:00
|
|
|
{
|
2007-08-04 22:01:22 +03:00
|
|
|
public:
|
2007-10-21 19:45:13 +03:00
|
|
|
//CGlobalAI();
|
2007-08-04 22:01:22 +03:00
|
|
|
virtual void yourTurn(){};
|
2007-10-27 22:38:48 +03:00
|
|
|
virtual void heroKilled(const CGHeroInstance*){};
|
|
|
|
virtual void heroCreated(const CGHeroInstance*){};
|
2007-07-28 12:44:10 +03:00
|
|
|
};
|
2007-08-01 17:06:04 +03:00
|
|
|
#endif //CGAMEINTERFACE_H
|