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
*/
2017-07-13 10:26:03 +02:00
# pragma once
# include "lib/CGameInfoCallback.h"
Entities redesign and a few ERM features
* Made most Handlers derived from CHandlerBase and moved service API there.
* Declared existing Entity APIs.
* Added basic script context caching
* Started Lua script module
* Started Lua spell effect API
* Started script state persistence
* Started battle info callback binding
* CommitPackage removed
* Extracted spells::Caster to own header; Expanded Spell API.
* implemented !!MC:S, !!FU:E, !!FU:P, !!MA, !!VR:H, !!VR:C
* !!BU:C, !!BU:E, !!BU:G, !!BU:M implemented
* Allow use of "MC:S@varName@" to declare normal variable (technically v-variable with string key)
* Re-enabled VERM macros.
* !?GM0 added
* !?TM implemented
* Added !!MF:N
* Started !?OB, !!BM, !!HE, !!OW, !!UN
* Added basic support of w-variables
* Added support for ERM indirect variables
* Made !?FU regular trigger
* !!re (ERA loop receiver) implemented
* Fixed ERM receivers with zero args.
2018-03-17 16:58:30 +02:00
# include "lib/battle/CPlayerBattleCallback.h"
2017-07-13 10:26:03 +02:00
# include "lib/int3.h" // for int3
2009-08-05 03:21:06 +03:00
2022-07-26 15:07:42 +02:00
VCMI_LIB_NAMESPACE_BEGIN
2009-04-16 14:14:13 +03:00
class CGHeroInstance ;
class CGameState ;
struct CPath ;
class CGObjectInstance ;
class CArmedInstance ;
2017-07-20 06:08:49 +02:00
class BattleAction ;
2009-04-16 14:14:13 +03:00
class CGTownInstance ;
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 ;
2018-10-07 13:51:27 +02:00
class PathfinderConfig ;
2011-08-26 03:27:58 +03:00
struct CPack ;
2022-07-26 15:07:42 +02:00
struct CPackForServer ;
2013-06-23 19:09:15 +03:00
class IBattleEventsReceiver ;
class IGameEventsReceiver ;
2014-04-20 10:13:37 +03:00
struct ArtifactLocation ;
2022-10-14 10:24:29 +02:00
class BattleStateInfoForRetreat ;
2023-04-28 03:14:27 +02:00
class IMarket ;
2014-04-20 10:13:37 +03:00
2022-07-26 15:07:42 +02:00
VCMI_LIB_NAMESPACE_END
2023-02-26 11:18:24 +02:00
// in static AI build this file gets included into libvcmi
# ifdef STATIC_AI
VCMI_LIB_USING_NAMESPACE
# endif
2022-07-26 15:07:42 +02:00
class CClient ;
struct lua_State ;
2010-12-22 22:14:40 +02:00
class IBattleCallback
2009-04-16 14:14:13 +03:00
{
public :
2022-09-22 10:02:16 +02:00
virtual ~ IBattleCallback ( ) = default ;
2023-07-18 18:55:59 +02:00
bool waitTillRealize = false ; //if true, request functions will return after they are realized by server
bool unlockGsWhenWaiting = false ; //if true after sending each request, gs mutex will be unlocked so the changes can be applied; NOTICE caller must have gs mx locked prior to any call to actiob callback!
2010-12-22 22:14:40 +02:00
//battle
2023-08-28 17:59:12 +02:00
virtual void battleMakeSpellAction ( const BattleID & battleID , const BattleAction & action ) = 0 ;
virtual void battleMakeUnitAction ( const BattleID & battleID , const BattleAction & action ) = 0 ;
virtual void battleMakeTacticAction ( const BattleID & battleID , const BattleAction & action ) = 0 ;
virtual std : : optional < BattleAction > makeSurrenderRetreatDecision ( const BattleID & battleID , const BattleStateInfoForRetreat & battleState ) = 0 ;
virtual std : : shared_ptr < CPlayerBattleCallback > getBattle ( const BattleID & battleID ) = 0 ;
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
2015-03-08 16:04:09 +02:00
virtual bool moveHero ( const CGHeroInstance * h , int3 dst , bool transit ) = 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
2013-02-12 18:46:43 +03:00
virtual void dig ( const CGObjectInstance * hero ) = 0 ;
2013-02-11 02:24:57 +03:00
virtual void castSpell ( const CGHeroInstance * hero , SpellID spellID , const int3 & pos = int3 ( - 1 , - 1 , - 1 ) ) = 0 ; //cast adventure map spell
2011-05-03 06:14:18 +03:00
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 ;
2013-02-11 22:11:34 +03:00
virtual bool buildBuilding ( const CGTownInstance * town , BuildingID buildingID ) = 0 ;
2014-09-19 00:18:49 +03:00
virtual void recruitCreatures ( const CGDwelling * obj , const CArmedInstance * dst , CreatureID ID , ui32 amount , si32 level = - 1 ) = 0 ;
2013-02-16 17:03:47 +03:00
virtual bool upgradeCreature ( const CArmedInstance * obj , SlotID stackPos , CreatureID newID = CreatureID : : NONE ) = 0 ; //if newID==-1 then best possible upgrade will be made
2009-08-03 22:22:05 +03:00
virtual void swapGarrisonHero ( const CGTownInstance * town ) = 0 ;
2011-05-03 06:14:18 +03:00
2023-08-19 20:43:50 +02:00
virtual void trade ( const IMarket * market , EMarketMode mode , ui32 id1 , ui32 id2 , ui32 val1 , const CGHeroInstance * hero = nullptr ) = 0 ; //mode==0: sell val1 units of id1 resource for id2 resiurce
virtual void trade ( const IMarket * market , EMarketMode mode , const std : : vector < ui32 > & id1 , const std : : vector < ui32 > & id2 , const std : : vector < ui32 > & val1 , const CGHeroInstance * hero = nullptr ) = 0 ;
2011-05-03 06:14:18 +03:00
2013-05-27 13:53:28 +03:00
virtual int selectionMade ( int selection , QueryID queryID ) = 0 ;
2017-06-06 06:53:51 +02:00
virtual int sendQueryReply ( const JsonNode & reply , QueryID queryID ) = 0 ;
2013-02-16 17:03:47 +03:00
virtual int swapCreatures ( const CArmedInstance * s1 , const CArmedInstance * s2 , SlotID p1 , SlotID p2 ) = 0 ; //swaps creatures between two possibly different garrisons // TODO: AI-unsafe code - fix it!
virtual int mergeStacks ( const CArmedInstance * s1 , const CArmedInstance * s2 , SlotID p1 , SlotID p2 ) = 0 ; //joins first stack to the second (creatures must be same type)
virtual int mergeOrSwapStacks ( const CArmedInstance * s1 , const CArmedInstance * s2 , SlotID p1 , SlotID p2 ) = 0 ; //first goes to the second
virtual int splitStack ( const CArmedInstance * s1 , const CArmedInstance * s2 , SlotID p1 , SlotID p2 , int val ) = 0 ; //split creatures from the first stack
2012-01-30 19:07:52 +03:00
//virtual bool swapArtifacts(const CGHeroInstance * hero1, ui16 pos1, const CGHeroInstance * hero2, ui16 pos2)=0; //swaps artifacts between two given heroes
2012-04-14 05:20:22 +03:00
virtual bool swapArtifacts ( const ArtifactLocation & l1 , const ArtifactLocation & l2 ) = 0 ;
2013-02-16 17:03:47 +03:00
virtual bool assembleArtifacts ( const CGHeroInstance * hero , ArtifactPosition artifactSlot , bool assemble , ArtifactID assembleTo ) = 0 ;
2023-04-07 23:41:55 +02:00
virtual void eraseArtifactByClient ( const ArtifactLocation & al ) = 0 ;
2013-02-16 17:03:47 +03:00
virtual bool dismissCreature ( const CArmedInstance * obj , SlotID stackPos ) = 0 ;
2009-04-16 14:14:13 +03:00
virtual void endTurn ( ) = 0 ;
2013-02-11 02:24:57 +03:00
virtual void buyArtifact ( const CGHeroInstance * hero , ArtifactID aid ) = 0 ; //used to buy artifacts in towns (including spell book in the guild and war machines in blacksmith)
2009-04-16 14:14:13 +03:00
virtual void setFormation ( const CGHeroInstance * hero , bool tight ) = 0 ;
2011-05-03 06:14:18 +03:00
2009-04-16 14:14:13 +03:00
virtual void save ( const std : : string & fname ) = 0 ;
2014-09-21 20:35:53 +03:00
virtual void sendMessage ( const std : : string & mess , const CGObjectInstance * currentObject = nullptr ) = 0 ;
2009-07-26 06:33:13 +03:00
virtual void buildBoat ( const IShipyard * obj ) = 0 ;
2021-11-28 14:57:38 +02:00
// To implement high-level army management bulk actions
virtual int bulkMoveArmy ( ObjectInstanceID srcArmy , ObjectInstanceID destArmy , SlotID srcSlot ) = 0 ;
virtual int bulkSplitStack ( ObjectInstanceID armyId , SlotID srcSlot , int howMany = 1 ) = 0 ;
virtual int bulkSmartSplitStack ( ObjectInstanceID armyId , SlotID srcSlot ) = 0 ;
virtual int bulkMergeStacks ( ObjectInstanceID armyId , SlotID srcSlot ) = 0 ;
2022-11-06 23:41:29 +02:00
// Moves all artifacts from one hero to another
2022-11-11 01:01:55 +02:00
virtual void bulkMoveArtifacts ( ObjectInstanceID srcHero , ObjectInstanceID dstHero , bool swap ) = 0 ;
2009-04-16 14:14:13 +03:00
} ;
2023-08-28 17:59:12 +02:00
class CBattleCallback : public IBattleCallback
2009-04-16 14:14:13 +03:00
{
2023-08-28 17:59:12 +02:00
std : : map < BattleID , std : : shared_ptr < CPlayerBattleCallback > > activeBattles ;
2010-12-22 22:14:40 +02:00
protected :
2018-01-05 19:21:07 +02:00
int sendRequest ( const CPackForServer * request ) ; //returns requestID (that'll be matched to requestID in PackageApplied)
2009-04-16 14:14:13 +03:00
CClient * cl ;
2010-12-22 22:14:40 +02:00
public :
2023-04-16 19:42:56 +02:00
CBattleCallback ( std : : optional < PlayerColor > Player , CClient * C ) ;
2023-08-28 17:59:12 +02:00
void battleMakeSpellAction ( const BattleID & battleID , const BattleAction & action ) override ; //for casting spells by hero - DO NOT use it for moving active stack
void battleMakeUnitAction ( const BattleID & battleID , const BattleAction & action ) override ;
void battleMakeTacticAction ( const BattleID & battleID , const BattleAction & action ) override ; // performs tactic phase actions
std : : optional < BattleAction > makeSurrenderRetreatDecision ( const BattleID & battleID , const BattleStateInfoForRetreat & battleState ) override ;
std : : shared_ptr < CPlayerBattleCallback > getBattle ( const BattleID & battleID ) override ;
void onBattleStarted ( const BattleID & battleID ) ;
void onBattleEnded ( const BattleID & battleID ) ;
2013-02-12 18:46:43 +03:00
2022-09-21 18:31:14 +02:00
# if SCRIPTING_ENABLED
Entities redesign and a few ERM features
* Made most Handlers derived from CHandlerBase and moved service API there.
* Declared existing Entity APIs.
* Added basic script context caching
* Started Lua script module
* Started Lua spell effect API
* Started script state persistence
* Started battle info callback binding
* CommitPackage removed
* Extracted spells::Caster to own header; Expanded Spell API.
* implemented !!MC:S, !!FU:E, !!FU:P, !!MA, !!VR:H, !!VR:C
* !!BU:C, !!BU:E, !!BU:G, !!BU:M implemented
* Allow use of "MC:S@varName@" to declare normal variable (technically v-variable with string key)
* Re-enabled VERM macros.
* !?GM0 added
* !?TM implemented
* Added !!MF:N
* Started !?OB, !!BM, !!HE, !!OW, !!UN
* Added basic support of w-variables
* Added support for ERM indirect variables
* Made !?FU regular trigger
* !!re (ERA loop receiver) implemented
* Fixed ERM receivers with zero args.
2018-03-17 16:58:30 +02:00
scripting : : Pool * getContextPool ( ) const override ;
2022-09-21 18:31:14 +02:00
# endif
Entities redesign and a few ERM features
* Made most Handlers derived from CHandlerBase and moved service API there.
* Declared existing Entity APIs.
* Added basic script context caching
* Started Lua script module
* Started Lua spell effect API
* Started script state persistence
* Started battle info callback binding
* CommitPackage removed
* Extracted spells::Caster to own header; Expanded Spell API.
* implemented !!MC:S, !!FU:E, !!FU:P, !!MA, !!VR:H, !!VR:C
* !!BU:C, !!BU:E, !!BU:G, !!BU:M implemented
* Allow use of "MC:S@varName@" to declare normal variable (technically v-variable with string key)
* Re-enabled VERM macros.
* !?GM0 added
* !?TM implemented
* Added !!MF:N
* Started !?OB, !!BM, !!HE, !!OW, !!UN
* Added basic support of w-variables
* Added support for ERM indirect variables
* Made !?FU regular trigger
* !!re (ERA loop receiver) implemented
* Fixed ERM receivers with zero args.
2018-03-17 16:58:30 +02:00
2011-02-06 19:26:27 +02:00
friend class CCallback ;
friend class CClient ;
2010-12-22 22:14:40 +02:00
} ;
2023-08-28 17:59:12 +02:00
class CCallback : public CPlayerSpecificInfoCallback , public CBattleCallback , public IGameActionCallback
2010-12-22 22:14:40 +02:00
{
2009-04-16 14:14:13 +03:00
public :
2023-04-16 19:42:56 +02:00
CCallback ( CGameState * GS , std : : optional < PlayerColor > Player , CClient * C ) ;
2013-02-12 18:46:43 +03:00
virtual ~ CCallback ( ) ;
2012-03-06 19:59:55 +03:00
2011-05-30 02:49:25 +03:00
//client-specific functionalities (pathfinding)
2014-02-15 22:39:03 +03:00
virtual bool canMoveBetween ( const int3 & a , const int3 & b ) ;
2014-09-21 16:42:08 +03:00
virtual int3 getGuardingCreaturePosition ( int3 tile ) ;
2019-01-15 05:00:00 +02:00
virtual std : : shared_ptr < const CPathsInfo > getPathsInfo ( const CGHeroInstance * h ) ;
2012-02-26 21:31:59 +03:00
2013-06-22 21:22:44 +03:00
//Set of metrhods that allows adding more interfaces for this player that'll receive game event call-ins.
2015-12-29 04:43:33 +02:00
void registerBattleInterface ( std : : shared_ptr < IBattleEventsReceiver > battleEvents ) ;
void unregisterBattleInterface ( std : : shared_ptr < IBattleEventsReceiver > battleEvents ) ;
2012-07-15 18:34:00 +03:00
2009-04-16 14:14:13 +03:00
//commands
2015-10-12 15:47:10 +02:00
bool moveHero ( const CGHeroInstance * h , int3 dst , bool transit = false ) override ; //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 ) ;
2015-10-12 15:47:10 +02:00
int selectionMade ( int selection , QueryID queryID ) override ;
2017-06-06 06:53:51 +02:00
int sendQueryReply ( const JsonNode & reply , QueryID queryID ) override ;
2015-10-12 15:47:10 +02:00
int swapCreatures ( const CArmedInstance * s1 , const CArmedInstance * s2 , SlotID p1 , SlotID p2 ) override ;
int mergeOrSwapStacks ( const CArmedInstance * s1 , const CArmedInstance * s2 , SlotID p1 , SlotID p2 ) override ; //first goes to the second
int mergeStacks ( const CArmedInstance * s1 , const CArmedInstance * s2 , SlotID p1 , SlotID p2 ) override ; //first goes to the second
int splitStack ( const CArmedInstance * s1 , const CArmedInstance * s2 , SlotID p1 , SlotID p2 , int val ) override ;
2021-11-28 14:57:38 +02:00
int bulkMoveArmy ( ObjectInstanceID srcArmy , ObjectInstanceID destArmy , SlotID srcSlot ) override ;
int bulkSplitStack ( ObjectInstanceID armyId , SlotID srcSlot , int howMany = 1 ) override ;
int bulkSmartSplitStack ( ObjectInstanceID armyId , SlotID srcSlot ) override ;
int bulkMergeStacks ( ObjectInstanceID armyId , SlotID srcSlot ) override ;
2015-10-12 15:47:10 +02:00
bool dismissHero ( const CGHeroInstance * hero ) override ;
bool swapArtifacts ( const ArtifactLocation & l1 , const ArtifactLocation & l2 ) override ;
bool assembleArtifacts ( const CGHeroInstance * hero , ArtifactPosition artifactSlot , bool assemble , ArtifactID assembleTo ) override ;
2022-11-11 01:01:55 +02:00
void bulkMoveArtifacts ( ObjectInstanceID srcHero , ObjectInstanceID dstHero , bool swap ) override ;
2023-04-07 23:41:55 +02:00
void eraseArtifactByClient ( const ArtifactLocation & al ) override ;
2013-06-26 14:18:27 +03:00
bool buildBuilding ( const CGTownInstance * town , BuildingID buildingID ) override ;
2015-10-12 15:47:10 +02:00
void recruitCreatures ( const CGDwelling * obj , const CArmedInstance * dst , CreatureID ID , ui32 amount , si32 level = - 1 ) override ;
bool dismissCreature ( const CArmedInstance * obj , SlotID stackPos ) override ;
2013-06-26 14:18:27 +03:00
bool upgradeCreature ( const CArmedInstance * obj , SlotID stackPos , CreatureID newID = CreatureID : : NONE ) override ;
2015-10-12 15:47:10 +02:00
void endTurn ( ) override ;
void swapGarrisonHero ( const CGTownInstance * town ) override ;
2013-06-26 14:18:27 +03:00
void buyArtifact ( const CGHeroInstance * hero , ArtifactID aid ) override ;
2023-08-19 20:43:50 +02:00
void trade ( const IMarket * market , EMarketMode mode , ui32 id1 , ui32 id2 , ui32 val1 , const CGHeroInstance * hero = nullptr ) override ;
void trade ( const IMarket * market , EMarketMode mode , const std : : vector < ui32 > & id1 , const std : : vector < ui32 > & id2 , const std : : vector < ui32 > & val1 , const CGHeroInstance * hero = nullptr ) override ;
2015-10-12 15:47:10 +02:00
void setFormation ( const CGHeroInstance * hero , bool tight ) override ;
void recruitHero ( const CGObjectInstance * townOrTavern , const CGHeroInstance * hero ) override ;
void save ( const std : : string & fname ) override ;
void sendMessage ( const std : : string & mess , const CGObjectInstance * currentObject = nullptr ) override ;
void buildBoat ( const IShipyard * obj ) override ;
void dig ( const CGObjectInstance * hero ) override ;
void castSpell ( const CGHeroInstance * hero , SpellID spellID , const int3 & pos = int3 ( - 1 , - 1 , - 1 ) ) override ;
2009-04-16 14:14:13 +03:00
//friends
friend class CClient ;
} ;