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
2009-05-20 13:08:56 +03:00
# include "lib/CGameState.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 ;
class SComponent ;
class IChosen ;
class CSelectableComponent ;
struct BattleAction ;
class CGTownInstance ;
struct StartInfo ;
class CStack ;
struct lua_State ;
class CClient ;
struct TerrainTile ;
2009-07-20 04:47:49 +03:00
class CHeroClass ;
2009-07-26 06:33:13 +03:00
class IShipyard ;
2009-08-04 02:53:18 +03:00
struct CPackForServer ;
2009-07-20 04:47:49 +03:00
struct InfoAboutHero
{
struct Details
{
std : : vector < int > primskills ;
int mana , luck , morale ;
} * details ;
char owner ;
const CHeroClass * hclass ;
std : : string name ;
int portrait ;
CCreatureSet army ; //numbers of creatures are exact numbers if detailed else they are quantity ids (0 - a few, 1 - several and so on)
InfoAboutHero ( ) ;
~ InfoAboutHero ( ) ;
void initFromHero ( const CGHeroInstance * h , bool detailed ) ;
} ;
2009-04-16 14:14:13 +03:00
2009-07-20 05:56:35 +03:00
struct InfoAboutTown
{
struct Details
{
int hallLevel , goldIncome ;
bool customRes ;
bool garrisonedHero ;
} * details ;
char fortLevel ; //0 - none
char owner ;
std : : string name ;
CTown * tType ;
bool built ;
CCreatureSet army ; //numbers of creatures are valid only if details
InfoAboutTown ( ) ;
~ InfoAboutTown ( ) ;
void initFromTown ( const CGTownInstance * t , bool detailed ) ;
} ;
2009-04-16 14:14:13 +03:00
class ICallback
{
public :
2009-08-04 02:53:18 +03:00
bool waitTillRealize ; //if true, request functions will return after they are realized by server
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
//town
virtual void recruitHero ( const CGTownInstance * town , const CGHeroInstance * hero ) = 0 ;
virtual bool buildBuilding ( const CGTownInstance * town , si32 buildingID ) = 0 ;
virtual void recruitCreatures ( const CGObjectInstance * obj , ui32 ID , ui32 amount ) = 0 ;
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 ;
virtual void trade ( int mode , int id1 , int id2 , int val1 ) = 0 ; //mode==0: sell val1 units of id1 resource for id2 resiurce
2009-04-16 14:14:13 +03:00
virtual void selectionMade ( int selection , int asker ) = 0 ;
virtual int swapCreatures ( const CArmedInstance * s1 , const CArmedInstance * s2 , int p1 , int p2 ) = 0 ; //swaps creatures between two posiibly 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 tothe second (creatures must be same type)
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
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
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
//get info
virtual bool verifyPath ( CPath * path , bool blockSea ) const = 0 ;
virtual int getDate ( int mode = 0 ) const = 0 ; //mode=0 - total days in game, mode=1 - day of week, mode=2 - current week, mode=3 - current month
virtual std : : vector < std : : vector < std : : vector < unsigned char > > > & getVisibilityMap ( ) const = 0 ; //returns visibility map (TODO: make it const)
virtual int getResourceAmount ( int type ) const = 0 ;
virtual bool isVisible ( int3 pos ) const = 0 ;
virtual int getMyColor ( ) const = 0 ;
virtual int getMySerial ( ) const = 0 ;
virtual int getHeroSerial ( const CGHeroInstance * hero ) const = 0 ;
virtual const StartInfo * getStartInfo ( ) const = 0 ;
2009-08-02 09:56:32 +03:00
//hero
virtual int howManyHeroes ( bool includeGarrisoned = true ) const = 0 ;
virtual const CGHeroInstance * getHeroInfo ( int val , int mode = 2 ) const = 0 ; //mode = 0 -> val = serial; mode = 1 -> val = ID
virtual std : : vector < const CGHeroInstance * > getHeroesInfo ( bool onlyOur = true ) const = 0 ;
virtual bool getHeroInfo ( const CGObjectInstance * hero , InfoAboutHero & dest ) const = 0 ;
virtual bool getPath ( int3 src , int3 dest , const CGHeroInstance * hero , CPath & ret ) = 0 ;
//map
2009-04-16 14:14:13 +03:00
virtual std : : vector < const CGObjectInstance * > getBlockingObjs ( int3 pos ) const = 0 ;
virtual std : : vector < const CGObjectInstance * > getVisitableObjs ( int3 pos ) const = 0 ;
virtual std : : vector < const CGObjectInstance * > getFlaggableObjects ( int3 pos ) const = 0 ;
2009-08-02 09:56:32 +03:00
virtual std : : vector < std : : string > getObjDescriptions ( int3 pos ) const = 0 ; //returns descriptions of objects at pos in order from the lowest to the highest
//town
virtual int howManyTowns ( ) const = 0 ;
virtual const CGTownInstance * getTownInfo ( int val , bool mode ) const = 0 ; //mode = 0 -> val = serial; mode = 1 -> val = ID
virtual std : : vector < const CGTownInstance * > getTownsInfo ( bool onlyOur = true ) const = 0 ;
2009-04-16 14:14:13 +03:00
virtual std : : vector < const CGHeroInstance * > getAvailableHeroes ( const CGTownInstance * town ) const = 0 ; //heroes that can be recruited
virtual int canBuildStructure ( const CGTownInstance * t , int ID ) = 0 ; //// 0 - no more than one capitol, 1 - lack of water, 2 - forbidden, 3 - Add another level to Mage Guild, 4 - already built, 5 - cannot build, 6 - cannot afford, 7 - build, 8 - lack of requirements
2009-08-02 09:56:32 +03:00
virtual void getMarketOffer ( int t1 , int t2 , int & give , int & rec , int mode = 0 ) const = 0 ; //t1 - type of given resource, t2 - type of received resource; give is the amount of resource t1 that can be traded for amount rec of resource t2 (one of them is 1)
2009-07-20 05:56:35 +03:00
virtual bool getTownInfo ( const CGObjectInstance * town , InfoAboutTown & dest ) const = 0 ;
2009-04-16 14:14:13 +03:00
2009-08-02 09:56:32 +03:00
virtual UpgradeInfo getUpgradeInfo ( const CArmedInstance * obj , int stackPos ) const = 0 ;
virtual const CCreatureSet * getGarrison ( const CGObjectInstance * obj ) const = 0 ;
virtual int3 getMapSize ( ) const = 0 ; //returns size of map - z is 1 for one - level map and 2 for two level map
virtual const TerrainTile * getTileInfo ( int3 tile ) const = 0 ;
2009-04-16 14:14:13 +03:00
//battle
virtual int battleGetBattlefieldType ( ) = 0 ; // 1. sand/shore 2. sand/mesas 3. dirt/birches 4. dirt/hills 5. dirt/pines 6. grass/hills 7. grass/pines 8. lava 9. magic plains 10. snow/mountains 11. snow/trees 12. subterranean 13. swamp/trees 14. fiery fields 15. rock lands 16. magic clouds 17. lucid pools 18. holy ground 19. clover field 20. evil fog 21. "favourable winds" text on magic plains background 22. cursed ground 23. rough 24. ship to ship 25. ship
virtual int battleGetObstaclesAtTile ( int tile ) = 0 ; //returns bitfield
virtual std : : vector < CObstacleInstance > battleGetAllObstacles ( ) = 0 ; //returns all obstacles on the battlefield
2009-08-05 15:46:08 +03:00
virtual int battleGetStack ( int pos , bool onlyAlive ) = 0 ; //returns ID of stack on the tile
virtual const CStack * battleGetStackByID ( int ID , bool onlyAlive = true ) = 0 ; //returns stack info by given ID
virtual const CStack * battleGetStackByPos ( int pos , bool onlyAlive = true ) = 0 ; //returns stack info by given pos
2009-04-16 14:14:13 +03:00
virtual int battleGetPos ( int stack ) = 0 ; //returns position (tile ID) of stack
virtual int battleMakeAction ( BattleAction * action ) = 0 ; //for casting spells by hero - DO NOT use it for moving active stack
virtual std : : map < int , CStack > battleGetStacks ( ) = 0 ; //returns stacks on battlefield
virtual std : : vector < CStack > battleGetStackQueue ( ) = 0 ; //returns vector of stack in order of their move sequence
virtual CCreature battleGetCreature ( int number ) = 0 ; //returns type of creature by given number of stack
//virtual bool battleMoveCreature(int ID, int dest)=0; //moves creature with id ID to dest if possible
virtual std : : vector < int > battleGetAvailableHexes ( int ID , bool addOccupiable ) = 0 ; //reutrns numbers of hexes reachable by creature with id ID
virtual bool battleIsStackMine ( int ID ) = 0 ; //returns true if stack with id ID belongs to caller
virtual bool battleCanShoot ( int ID , int dest ) = 0 ; //returns true if unit with id ID can shoot to dest
2009-04-16 17:01:27 +03:00
virtual bool battleCanCastSpell ( ) = 0 ; //returns true, if caller can cast a spell
2009-08-16 16:44:17 +03:00
virtual bool battleCanFlee ( ) = 0 ; //returns true if caller can flee from the battle
2009-04-16 14:14:13 +03:00
} ;
struct HeroMoveDetails
{
HeroMoveDetails ( ) { } ;
HeroMoveDetails ( int3 Src , int3 Dst , CGHeroInstance * Ho ) ;
int3 src , dst ; //source and destination points
CGHeroInstance * ho ; //object instance of this hero
int owner , style ; //style: 0 - normal move, 1 - teleport, 2 - instant jump
bool successful ;
} ;
class CCallback : public ICallback
{
private :
2009-08-04 02:53:18 +03:00
CCallback ( CGameState * GS , int Player , CClient * C ) ; ;
2009-04-16 14:14:13 +03:00
CGameState * gs ;
CClient * cl ;
bool isVisible ( int3 pos , int Player ) const ;
2009-07-20 05:56:35 +03:00
bool isVisible ( const CGObjectInstance * obj , int Player ) const ;
2009-08-04 02:53:18 +03:00
template < typename T > void sendRequest ( const T * request ) ;
2009-04-16 14:14:13 +03:00
protected :
int player ;
public :
//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)
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 ) ;
bool buildBuilding ( const CGTownInstance * town , si32 buildingID ) ;
void recruitCreatures ( const CGObjectInstance * obj , ui32 ID , ui32 amount ) ;
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 ) ;
void trade ( int mode , int id1 , int id2 , int val1 ) ;
void setFormation ( const CGHeroInstance * hero , bool tight ) ;
void setSelection ( const CArmedInstance * obj ) ;
void recruitHero ( const CGTownInstance * town , const CGHeroInstance * hero ) ;
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 ) ;
2009-04-16 14:14:13 +03:00
//get info
bool verifyPath ( CPath * path , bool blockSea ) const ;
int getDate ( int mode = 0 ) const ; //mode=0 - total days in game, mode=1 - day of week, mode=2 - current week, mode=3 - current month
std : : vector < std : : vector < std : : vector < unsigned char > > > & getVisibilityMap ( ) const ; //returns visibility map (TODO: make it const)
const CGHeroInstance * getHeroInfo ( int val , int mode = 2 ) const ; //mode = 0 -> val = serial; mode = 1 -> val = hero type id (subID); mode = 2 -> val = global object serial id (id)
2009-07-30 15:49:45 +03:00
const CGObjectInstance * getObjectInfo ( int ID ) const ; //global object serial id (ID)
2009-04-16 14:14:13 +03:00
int getResourceAmount ( int type ) const ;
std : : vector < si32 > getResourceAmount ( ) const ;
int howManyHeroes ( bool includeGarrisoned = true ) const ;
const CGTownInstance * getTownInfo ( int val , bool mode ) const ; //mode = 0 -> val = serial; mode = 1 -> val = ID
std : : vector < const CGTownInstance * > getTownsInfo ( bool onlyOur = true ) const ;
int howManyTowns ( ) const ;
std : : vector < std : : string > getObjDescriptions ( int3 pos ) const ; //returns descriptions of objects at pos in order from the lowest to the highest
std : : vector < const CGHeroInstance * > getHeroesInfo ( bool onlyOur = true ) const ;
bool isVisible ( int3 pos ) const ;
int getMyColor ( ) const ;
int getHeroSerial ( const CGHeroInstance * hero ) const ;
int getMySerial ( ) const ;
const CCreatureSet * getGarrison ( const CGObjectInstance * obj ) const ;
UpgradeInfo getUpgradeInfo ( const CArmedInstance * obj , int stackPos ) const ;
const StartInfo * getStartInfo ( ) const ;
std : : vector < const CGObjectInstance * > getBlockingObjs ( int3 pos ) const ;
std : : vector < const CGObjectInstance * > getVisitableObjs ( int3 pos ) const ;
2009-05-07 20:20:41 +03:00
void getMarketOffer ( int t1 , int t2 , int & give , int & rec , int mode = 0 ) const ; //t1 - type of given resource, t2 - type of received resource; give is the amount of resource t1 that can be traded for amount rec of resource t2 (one of them is 1)
2009-04-16 14:14:13 +03:00
std : : vector < const CGObjectInstance * > getFlaggableObjects ( int3 pos ) const ;
int3 getMapSize ( ) const ; //returns size of map - z is 1 for one - level map and 2 for two level map
std : : vector < const CGHeroInstance * > getAvailableHeroes ( const CGTownInstance * town ) const ; //heroes that can be recruited
const TerrainTile * getTileInfo ( int3 tile ) const ;
int canBuildStructure ( const CGTownInstance * t , int ID ) ; //// 0 - no more than one capitol, 1 - lack of water, 2 - forbidden, 3 - Add another level to Mage Guild, 4 - already built, 5 - cannot build, 6 - cannot afford, 7 - build, 8 - lack of requirements
2009-06-11 20:21:06 +03:00
bool getPath ( int3 src , int3 dest , const CGHeroInstance * hero , CPath & ret ) ;
2009-07-20 04:47:49 +03:00
bool getHeroInfo ( const CGObjectInstance * hero , InfoAboutHero & dest ) const ;
2009-07-20 05:56:35 +03:00
bool getTownInfo ( const CGObjectInstance * town , InfoAboutTown & dest ) const ;
2009-04-16 14:14:13 +03:00
//battle
int battleGetBattlefieldType ( ) ; // 1. sand/shore 2. sand/mesas 3. dirt/birches 4. dirt/hills 5. dirt/pines 6. grass/hills 7. grass/pines 8. lava 9. magic plains 10. snow/mountains 11. snow/trees 12. subterranean 13. swamp/trees 14. fiery fields 15. rock lands 16. magic clouds 17. lucid pools 18. holy ground 19. clover field 20. evil fog 21. "favourable winds" text on magic plains background 22. cursed ground 23. rough 24. ship to ship 25. ship
int battleGetObstaclesAtTile ( int tile ) ; //returns bitfield
std : : vector < CObstacleInstance > battleGetAllObstacles ( ) ; //returns all obstacles on the battlefield
2009-08-05 15:46:08 +03:00
int battleGetStack ( int pos , bool onlyAlive = true ) ; //returns ID of stack on the tile
const CStack * battleGetStackByID ( int ID , bool onlyAlive = true ) ; //returns stack info by given ID
const CStack * battleGetStackByPos ( int pos , bool onlyAlive = true ) ; //returns stack info by given pos
2009-04-16 14:14:13 +03:00
int battleGetPos ( int stack ) ; //returns position (tile ID) of stack
int battleMakeAction ( BattleAction * action ) ; //for casting spells by hero - DO NOT use it for moving active stack
std : : map < int , CStack > battleGetStacks ( ) ; //returns stacks on battlefield
std : : vector < CStack > battleGetStackQueue ( ) ; //returns vector of stack in order of their move sequence
CCreature battleGetCreature ( int number ) ; //returns type of creature by given number of stack
std : : vector < int > battleGetAvailableHexes ( int ID , bool addOccupiable ) ; //reutrns numbers of hexes reachable by creature with id ID
bool battleIsStackMine ( int ID ) ; //returns true if stack with id ID belongs to caller
bool battleCanShoot ( int ID , int dest ) ; //returns true if unit with id ID can shoot to dest
2009-04-16 17:01:27 +03:00
bool battleCanCastSpell ( ) ; //returns true, if caller can cast a spell
2009-08-16 16:44:17 +03:00
bool battleCanFlee ( ) ; //returns true if caller can flee from the battle
2009-04-16 14:14:13 +03:00
//XXX hmmm _tmain on _GNUC_ wtf?
//friends
friend class CClient ;
# ifndef __GNUC__
friend int _tmain ( int argc , _TCHAR * argv [ ] ) ;
# else
friend int main ( int argc , char * * argv ) ;
# endif
} ;
# endif // __CCALLBACK_H__