2009-04-16 14:14:13 +03:00
# ifndef __CCALLBACK_H__
# define __CCALLBACK_H__
# include "global.h"
# ifdef _WIN32
# include "tchar.h"
# else
# include "tchar_amigaos4.h" //XXX this is mingw header are we need this for something? for 'true'
//support of unicode we should use ICU or some boost wraper areound it
//(boost using this lib during compilation i dont know what for exactly)
# endif
2011-05-03 06:14:18 +03:00
# include "lib/IGameCallback.h"
2009-04-16 14:14:13 +03:00
2009-04-15 17:03:31 +03:00
/*
* CCallback . 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
*
2009-04-16 14:14:13 +03:00
*/
2009-08-05 03:21:06 +03:00
2009-04-16 14:14:13 +03:00
class CGHeroInstance ;
class CGameState ;
struct CPath ;
class CGObjectInstance ;
class CArmedInstance ;
struct BattleAction ;
class CGTownInstance ;
struct lua_State ;
class CClient ;
2009-07-26 06:33:13 +03:00
class IShipyard ;
2009-08-30 15:47:40 +03:00
struct CGPathNode ;
struct CGPath ;
2011-05-03 06:14:18 +03:00
struct CPathsInfo ;
2009-07-20 05:56:35 +03:00
2010-12-22 22:14:40 +02:00
class IBattleCallback
2009-04-16 14:14:13 +03:00
{
public :
2009-08-04 02:53:18 +03:00
bool waitTillRealize ; //if true, request functions will return after they are realized by server
2010-12-22 22:14:40 +02:00
//battle
virtual int battleMakeAction ( BattleAction * action ) = 0 ; //for casting spells by hero - DO NOT use it for moving active stack
2011-02-12 18:12:48 +02:00
virtual bool battleMakeTacticAction ( BattleAction * action ) = 0 ; // performs tactic phase actions
2010-12-22 22:14:40 +02:00
} ;
2011-05-03 06:14:18 +03:00
class IGameActionCallback
2010-12-22 22:14:40 +02:00
{
public :
2009-08-03 22:22:05 +03:00
//hero
2009-08-04 02:53:18 +03:00
virtual bool moveHero ( const CGHeroInstance * h , int3 dst ) = 0 ; //dst must be free, neighbouring tile (this function can move hero only by one tile)
2009-08-03 22:22:05 +03:00
virtual bool dismissHero ( const CGHeroInstance * hero ) = 0 ; //dismisses given hero; true - successfuly, false - not successfuly
2011-05-03 06:14:18 +03:00
virtual void dig ( const CGObjectInstance * hero ) = 0 ;
virtual void castSpell ( const CGHeroInstance * hero , int spellID , const int3 & pos = int3 ( - 1 , - 1 , - 1 ) ) = 0 ; //cast adventure map spell
2009-08-03 22:22:05 +03:00
//town
2010-07-09 02:03:27 +03:00
virtual void recruitHero ( const CGObjectInstance * townOrTavern , const CGHeroInstance * hero ) = 0 ;
2009-08-03 22:22:05 +03:00
virtual bool buildBuilding ( const CGTownInstance * town , si32 buildingID ) = 0 ;
2010-07-10 19:50:23 +03:00
virtual void recruitCreatures ( const CGObjectInstance * obj , ui32 ID , ui32 amount , si32 level = - 1 ) = 0 ;
2009-08-03 22:22:05 +03:00
virtual bool upgradeCreature ( const CArmedInstance * obj , int stackPos , int newID = - 1 ) = 0 ; //if newID==-1 then best possible upgrade will be made
virtual void swapGarrisonHero ( const CGTownInstance * town ) = 0 ;
2011-05-03 06:14:18 +03:00
2010-05-18 10:01:54 +03:00
virtual void trade ( const CGObjectInstance * market , int mode , int id1 , int id2 , int val1 , const CGHeroInstance * hero = NULL ) = 0 ; //mode==0: sell val1 units of id1 resource for id2 resiurce
2011-05-03 06:14:18 +03:00
2009-04-16 14:14:13 +03:00
virtual void selectionMade ( int selection , int asker ) = 0 ;
2011-05-03 06:14:18 +03:00
virtual int swapCreatures ( const CArmedInstance * s1 , const CArmedInstance * s2 , int p1 , int p2 ) = 0 ; //swaps creatures between two possibly different garrisons // TODO: AI-unsafe code - fix it!
virtual int mergeStacks ( const CArmedInstance * s1 , const CArmedInstance * s2 , int p1 , int p2 ) = 0 ; //joins first stack to the second (creatures must be same type)
2009-04-16 14:14:13 +03:00
virtual int splitStack ( const CArmedInstance * s1 , const CArmedInstance * s2 , int p1 , int p2 , int val ) = 0 ; //split creatures from the first stack
virtual bool swapArtifacts ( const CGHeroInstance * hero1 , ui16 pos1 , const CGHeroInstance * hero2 , ui16 pos2 ) = 0 ; //swaps artifacts between two given heroes
2010-02-16 16:39:56 +02:00
virtual bool assembleArtifacts ( const CGHeroInstance * hero , ui16 artifactSlot , bool assemble , ui32 assembleTo ) = 0 ;
2009-04-16 14:14:13 +03:00
virtual bool dismissCreature ( const CArmedInstance * obj , int stackPos ) = 0 ;
virtual void endTurn ( ) = 0 ;
virtual void buyArtifact ( const CGHeroInstance * hero , int aid ) = 0 ; //used to buy artifacts in towns (including spell book in the guild and war machines in blacksmith)
virtual void setFormation ( const CGHeroInstance * hero , bool tight ) = 0 ;
virtual void setSelection ( const CArmedInstance * obj ) = 0 ;
2009-08-03 22:22:05 +03:00
2011-05-03 06:14:18 +03:00
2009-04-16 14:14:13 +03:00
virtual void save ( const std : : string & fname ) = 0 ;
virtual void sendMessage ( const std : : string & mess ) = 0 ;
2009-07-26 06:33:13 +03:00
virtual void buildBoat ( const IShipyard * obj ) = 0 ;
2009-04-16 14:14:13 +03:00
} ;
2011-05-03 06:14:18 +03:00
class CBattleCallback : public IBattleCallback , public CBattleInfoCallback
2009-04-16 14:14:13 +03:00
{
private :
2010-12-22 22:14:40 +02:00
CBattleCallback ( CGameState * GS , int Player , CClient * C ) ;
protected :
template < typename T > void sendRequest ( const T * request ) ;
2009-04-16 14:14:13 +03:00
CClient * cl ;
2011-05-03 06:14:18 +03:00
//virtual bool hasAccess(int playerId) const;
2010-12-22 22:14:40 +02:00
public :
2011-01-07 12:48:31 +02:00
int battleMakeAction ( BattleAction * action ) OVERRIDE ; //for casting spells by hero - DO NOT use it for moving active stack
2011-02-12 18:12:48 +02:00
bool battleMakeTacticAction ( BattleAction * action ) OVERRIDE ; // performs tactic phase actions
2010-12-22 22:14:40 +02:00
2011-02-06 19:26:27 +02:00
friend class CCallback ;
friend class CClient ;
2010-12-22 22:14:40 +02:00
} ;
2011-05-03 06:14:18 +03:00
class CCallback : public CPlayerSpecificInfoCallback , public IGameActionCallback , public CBattleCallback
2010-12-22 22:14:40 +02:00
{
private :
CCallback ( CGameState * GS , int Player , CClient * C ) ;
2009-04-16 14:14:13 +03:00
public :
2011-05-03 06:14:18 +03:00
//client-specific functionalities (pathfinding)
virtual bool getPath ( int3 src , int3 dest , const CGHeroInstance * hero , CPath & ret ) ; //DEPRACATED!!!
virtual const CGPathNode * getPathInfo ( int3 tile ) ; //uses main, client pathfinder info
virtual bool getPath2 ( int3 dest , CGPath & ret ) ; //uses main, client pathfinder info
virtual void calculatePaths ( const CGHeroInstance * hero , CPathsInfo & out , int3 src = int3 ( - 1 , - 1 , - 1 ) , int movement = - 1 ) ;
virtual void recalculatePaths ( ) ; //updates main, client pathfinder info (should be called when moving hero is over)
2009-04-16 14:14:13 +03:00
//commands
2009-08-04 02:53:18 +03:00
bool moveHero ( const CGHeroInstance * h , int3 dst ) ; //dst must be free, neighbouring tile (this function can move hero only by one tile)
2010-06-30 22:27:35 +03:00
bool teleportHero ( const CGHeroInstance * who , const CGTownInstance * where ) ;
2009-04-16 14:14:13 +03:00
void selectionMade ( int selection , int asker ) ;
int swapCreatures ( const CArmedInstance * s1 , const CArmedInstance * s2 , int p1 , int p2 ) ;
int mergeStacks ( const CArmedInstance * s1 , const CArmedInstance * s2 , int p1 , int p2 ) ; //first goes to the second
int splitStack ( const CArmedInstance * s1 , const CArmedInstance * s2 , int p1 , int p2 , int val ) ;
bool dismissHero ( const CGHeroInstance * hero ) ;
bool swapArtifacts ( const CGHeroInstance * hero1 , ui16 pos1 , const CGHeroInstance * hero2 , ui16 pos2 ) ;
2010-02-16 16:39:56 +02:00
bool assembleArtifacts ( const CGHeroInstance * hero , ui16 artifactSlot , bool assemble , ui32 assembleTo ) ;
2009-04-16 14:14:13 +03:00
bool buildBuilding ( const CGTownInstance * town , si32 buildingID ) ;
2010-07-10 19:50:23 +03:00
void recruitCreatures ( const CGObjectInstance * obj , ui32 ID , ui32 amount , si32 level = - 1 ) ;
2009-04-16 14:14:13 +03:00
bool dismissCreature ( const CArmedInstance * obj , int stackPos ) ;
bool upgradeCreature ( const CArmedInstance * obj , int stackPos , int newID = - 1 ) ;
void endTurn ( ) ;
void swapGarrisonHero ( const CGTownInstance * town ) ;
void buyArtifact ( const CGHeroInstance * hero , int aid ) ;
2010-05-18 10:01:54 +03:00
void trade ( const CGObjectInstance * market , int mode , int id1 , int id2 , int val1 , const CGHeroInstance * hero = NULL ) ;
2009-04-16 14:14:13 +03:00
void setFormation ( const CGHeroInstance * hero , bool tight ) ;
void setSelection ( const CArmedInstance * obj ) ;
2010-07-09 02:03:27 +03:00
void recruitHero ( const CGObjectInstance * townOrTavern , const CGHeroInstance * hero ) ;
2009-04-16 14:14:13 +03:00
void save ( const std : : string & fname ) ;
void sendMessage ( const std : : string & mess ) ;
2009-07-26 06:33:13 +03:00
void buildBoat ( const IShipyard * obj ) ;
2010-02-21 17:03:30 +02:00
void dig ( const CGObjectInstance * hero ) ;
2010-03-11 01:16:30 +02:00
void castSpell ( const CGHeroInstance * hero , int spellID , const int3 & pos = int3 ( - 1 , - 1 , - 1 ) ) ;
2009-04-16 14:14:13 +03:00
//friends
friend class CClient ;
} ;
# endif // __CCALLBACK_H__