IGameCallback.h 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278
  1. #pragma once
  2. #include "BattleHex.h"
  3. #include "../client/FunctionList.h"
  4. #include "ResourceSet.h"
  5. #include "int3.h"
  6. #include "GameConstants.h"
  7. #include "CBattleCallback.h"
  8. /*
  9. * IGameCallback.h, part of VCMI engine
  10. *
  11. * Authors: listed in file AUTHORS in main folder
  12. *
  13. * License: GNU General Public License v2.0 or later
  14. * Full text of license available in license.txt file, in main folder
  15. *
  16. */
  17. struct SetMovePoints;
  18. struct GiveBonus;
  19. class CGObjectInstance;
  20. class CGTownInstance;
  21. class CGHeroInstance;
  22. struct BlockingDialog;
  23. struct InfoWindow;
  24. struct MetaString;
  25. struct ShowInInfobox;
  26. struct BattleResult;
  27. struct Component;
  28. class CGameState;
  29. struct PlayerSettings;
  30. struct CPackForClient;
  31. class CArtHandler;
  32. class CArtifact;
  33. class CArmedInstance;
  34. struct TerrainTile;
  35. struct PlayerState;
  36. class CTown;
  37. struct StackLocation;
  38. struct ArtifactLocation;
  39. class CArtifactInstance;
  40. struct StartInfo;
  41. struct InfoAboutTown;
  42. struct UpgradeInfo;
  43. struct SThievesGuildInfo;
  44. struct CPath;
  45. class CGDwelling;
  46. struct InfoAboutHero;
  47. class CMapHeader;
  48. struct BattleAction;
  49. class CStack;
  50. class CSpell;
  51. class CCreatureSet;
  52. class CCreature;
  53. class CStackBasicDescriptor;
  54. struct TeamState;
  55. struct QuestInfo;
  56. class CGCreature;
  57. class CSaveFile;
  58. class CLoadFile;
  59. class DLL_LINKAGE CGameInfoCallback : public virtual CCallbackBase
  60. {
  61. protected:
  62. CGameInfoCallback();
  63. CGameInfoCallback(CGameState *GS, boost::optional<PlayerColor> Player);
  64. bool hasAccess(boost::optional<PlayerColor> playerId) const;
  65. bool isVisible(int3 pos, boost::optional<PlayerColor> Player) const;
  66. bool isVisible(const CGObjectInstance *obj, boost::optional<PlayerColor> Player) const;
  67. bool isVisible(const CGObjectInstance *obj) const;
  68. bool canGetFullInfo(const CGObjectInstance *obj) const; //true we player owns obj or ally owns obj or privileged mode
  69. bool isOwnedOrVisited(const CGObjectInstance *obj) const;
  70. public:
  71. //various
  72. int getDate(Date::EDateType mode=Date::DAY)const; //mode=0 - total days in game, mode=1 - day of week, mode=2 - current week, mode=3 - current month
  73. const StartInfo * getStartInfo(bool beforeRandomization = false)const;
  74. bool isAllowed(int type, int id); //type: 0 - spell; 1- artifact; 2 - secondary skill
  75. //player
  76. const PlayerState * getPlayer(PlayerColor color, bool verbose = true) const;
  77. int getResource(PlayerColor Player, Res::ERes which) const;
  78. bool isVisible(int3 pos) const;
  79. PlayerRelations::PlayerRelations getPlayerRelations(PlayerColor color1, PlayerColor color2) const;
  80. void getThievesGuildInfo(SThievesGuildInfo & thi, const CGObjectInstance * obj); //get thieves' guild info obtainable while visiting given object
  81. EPlayerStatus::EStatus getPlayerStatus(PlayerColor player) const; //-1 if no such player
  82. PlayerColor getCurrentPlayer() const; //player that currently makes move // TODO synchronous turns
  83. virtual PlayerColor getLocalPlayer() const; //player that is currently owning given client (if not a client, then returns current player)
  84. const PlayerSettings * getPlayerSettings(PlayerColor color) const;
  85. //armed object
  86. void getUpgradeInfo(const CArmedInstance *obj, SlotID stackPos, UpgradeInfo &out)const;
  87. //hero
  88. const CGHeroInstance* getHero(ObjectInstanceID objid) const;
  89. const CGHeroInstance* getHeroWithSubid(int subid) const;
  90. int getHeroCount(PlayerColor player, bool includeGarrisoned) const;
  91. bool getHeroInfo(const CGObjectInstance *hero, InfoAboutHero &dest) const;
  92. int getSpellCost(const CSpell * sp, const CGHeroInstance * caster) const; //when called during battle, takes into account creatures' spell cost reduction
  93. int estimateSpellDamage(const CSpell * sp, const CGHeroInstance * hero) const; //estimates damage of given spell; returns 0 if spell causes no dmg
  94. const CGHeroInstance* getSelectedHero(PlayerColor player) const; //NULL if no hero is selected
  95. const CGHeroInstance* getSelectedHero() const; //of current (active) player
  96. const CArtifactInstance * getArtInstance(ArtifactInstanceID aid) const;
  97. const CGObjectInstance * getObjInstance(ObjectInstanceID oid) const;
  98. //objects
  99. const CGObjectInstance* getObj(ObjectInstanceID objid, bool verbose = true) const;
  100. std::vector <const CGObjectInstance * > getBlockingObjs(int3 pos)const;
  101. std::vector <const CGObjectInstance * > getVisitableObjs(int3 pos, bool verbose = true)const;
  102. std::vector <const CGObjectInstance * > getFlaggableObjects(int3 pos) const;
  103. std::vector <std::string > getObjDescriptions(int3 pos)const; //returns descriptions of objects at pos in order from the lowest to the highest
  104. PlayerColor getOwner(ObjectInstanceID heroID) const;
  105. const CGObjectInstance *getObjByQuestIdentifier(int identifier) const; //NULL if object has been removed (eg. killed)
  106. //map
  107. int3 guardingCreaturePosition (int3 pos) const;
  108. std::vector<const CGObjectInstance*> getGuardingCreatures (int3 pos) const;
  109. const CMapHeader * getMapHeader()const;
  110. int3 getMapSize() const; //returns size of map - z is 1 for one - level map and 2 for two level map
  111. const TerrainTile * getTile(int3 tile, bool verbose = true) const;
  112. bool isInTheMap(const int3 &pos) const;
  113. //town
  114. const CGTownInstance* getTown(ObjectInstanceID objid) const;
  115. int howManyTowns(PlayerColor Player) const;
  116. const CGTownInstance * getTownInfo(int val, bool mode)const; //mode = 0 -> val = player town serial; mode = 1 -> val = object id (serial)
  117. std::vector<const CGHeroInstance *> getAvailableHeroes(const CGObjectInstance * townOrTavern) const; //heroes that can be recruited
  118. std::string getTavernGossip(const CGObjectInstance * townOrTavern) const;
  119. EBuildingState::EBuildingState canBuildStructure(const CGTownInstance *t, BuildingID 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
  120. std::set<BuildingID> getBuildingRequiments(const CGTownInstance *t, BuildingID ID);
  121. virtual bool getTownInfo(const CGObjectInstance *town, InfoAboutTown &dest) const;
  122. const CTown *getNativeTown(PlayerColor color) const;
  123. //from gs
  124. const TeamState *getTeam(TeamID teamID) const;
  125. const TeamState *getPlayerTeam(PlayerColor color) const;
  126. std::set<BuildingID> getBuildingRequiments(const CGTownInstance *t, BuildingID ID) const;
  127. EBuildingState::EBuildingState canBuildStructure(const CGTownInstance *t, BuildingID ID) const;// 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
  128. };
  129. class DLL_LINKAGE CPlayerSpecificInfoCallback : public CGameInfoCallback
  130. {
  131. public:
  132. int howManyTowns() const;
  133. int howManyHeroes(bool includeGarrisoned = true) const;
  134. int3 getGrailPos(double &outKnownRatio);
  135. boost::optional<PlayerColor> getMyColor() const;
  136. std::vector <const CGTownInstance *> getTownsInfo(bool onlyOur = true) const; //true -> only owned; false -> all visible
  137. int getHeroSerial(const CGHeroInstance * hero, bool includeGarrisoned=true) const;
  138. const CGTownInstance* getTownBySerial(int serialId) const; // serial id is [0, number of towns)
  139. const CGHeroInstance* getHeroBySerial(int serialId, bool includeGarrisoned=true) const; // serial id is [0, number of heroes)
  140. std::vector <const CGHeroInstance *> getHeroesInfo(bool onlyOur = true) const; //true -> only owned; false -> all visible
  141. std::vector <const CGDwelling *> getMyDwellings() const; //returns all dwellings that belong to player
  142. std::vector <const CGObjectInstance * > getMyObjects() const; //returns all objects flagged by belonging player
  143. std::vector <QuestInfo> getMyQuests() const;
  144. int getResourceAmount(Res::ERes type) const;
  145. TResources getResourceAmount() const;
  146. const std::vector< std::vector< std::vector<ui8> > > & getVisibilityMap()const; //returns visibility map
  147. const PlayerSettings * getPlayerSettings(PlayerColor color) const;
  148. };
  149. class DLL_LINKAGE CPrivilagedInfoCallback : public CGameInfoCallback
  150. {
  151. public:
  152. CGameState * gameState ();
  153. void getFreeTiles (std::vector<int3> &tiles) const; //used for random spawns
  154. void getTilesInRange(boost::unordered_set<int3, ShashInt3> &tiles, int3 pos, int radious, boost::optional<PlayerColor> player = boost::optional<PlayerColor>(), int mode=0) const; //mode 1 - only unrevealed tiles; mode 0 - all, mode -1 - only unrevealed
  155. void getAllTiles (boost::unordered_set<int3, ShashInt3> &tiles, boost::optional<PlayerColor> player = boost::optional<PlayerColor>(), int level=-1, int surface=0) const; //returns all tiles on given level (-1 - both levels, otherwise number of level); surface: 0 - land and water, 1 - only land, 2 - only water
  156. ArtifactID getRandomArt (int flags);
  157. ArtifactID getArtSync (ui32 rand, int flags, bool erasePicked); //synchronous
  158. void pickAllowedArtsSet(std::vector<const CArtifact*> &out); //gives 3 treasures, 3 minors, 1 major -> used by Black Market and Artifact Merchant
  159. void getAllowedSpells(std::vector<SpellID> &out, ui16 level);
  160. template<typename Saver>
  161. void saveCommonState(Saver &out) const; //stores GS and VLC
  162. template<typename Loader>
  163. void loadCommonState(Loader &in); //loads GS and VLC
  164. };
  165. class DLL_LINKAGE CNonConstInfoCallback : public CPrivilagedInfoCallback
  166. {
  167. public:
  168. PlayerState *getPlayer(PlayerColor color, bool verbose = true);
  169. TeamState *getTeam(TeamID teamID);//get team by team ID
  170. TeamState *getPlayerTeam(PlayerColor color);// get team by player color
  171. CGHeroInstance *getHero(ObjectInstanceID objid);
  172. CGTownInstance *getTown(ObjectInstanceID objid);
  173. TerrainTile * getTile(int3 pos);
  174. CArtifactInstance * getArtInstance(ArtifactInstanceID aid);
  175. CGObjectInstance * getObjInstance(ObjectInstanceID oid);
  176. };
  177. class DLL_LINKAGE IGameEventRealizer
  178. {
  179. public:
  180. virtual void commitPackage(CPackForClient *pack) = 0;
  181. virtual void showInfoDialog(InfoWindow *iw);
  182. virtual void setObjProperty(ObjectInstanceID objid, int prop, si64 val);
  183. virtual void showInfoDialog(const std::string &msg, PlayerColor player);
  184. };
  185. class DLL_LINKAGE IGameEventCallback : public IGameEventRealizer
  186. {
  187. public:
  188. virtual void changeSpells(const CGHeroInstance * hero, bool give, const std::set<SpellID> &spells)=0;
  189. virtual bool removeObject(const CGObjectInstance * obj)=0;
  190. virtual void setBlockVis(ObjectInstanceID objid, bool bv)=0;
  191. virtual void setOwner(const CGObjectInstance * objid, PlayerColor owner)=0;
  192. virtual void setHoverName(const CGObjectInstance * obj, MetaString * name)=0;
  193. virtual void changePrimSkill(const CGHeroInstance * hero, PrimarySkill::PrimarySkill which, si64 val, bool abs=false)=0;
  194. virtual void changeSecSkill(const CGHeroInstance * hero, SecondarySkill which, int val, bool abs=false)=0;
  195. virtual void showBlockingDialog(BlockingDialog *iw, const CFunctionList<void(ui32)> &callback)=0;
  196. virtual ui32 showBlockingDialog(BlockingDialog *iw) =0; //synchronous version of above //TODO:
  197. virtual void showGarrisonDialog(ObjectInstanceID upobj, ObjectInstanceID hid, bool removableUnits, const boost::function<void()> &cb) =0; //cb will be called when player closes garrison window
  198. virtual void showThievesGuildWindow(PlayerColor player, ObjectInstanceID requestingObjId) =0;
  199. virtual void giveResource(PlayerColor player, Res::ERes which, int val)=0;
  200. virtual void giveCreatures(const CArmedInstance *objid, const CGHeroInstance * h, const CCreatureSet &creatures, bool remove) =0;
  201. virtual void takeCreatures(ObjectInstanceID objid, const std::vector<CStackBasicDescriptor> &creatures) =0;
  202. virtual bool changeStackCount(const StackLocation &sl, TQuantity count, bool absoluteValue = false) =0;
  203. virtual bool changeStackType(const StackLocation &sl, CCreature *c) =0;
  204. virtual bool insertNewStack(const StackLocation &sl, const CCreature *c, TQuantity count = -1) =0; //count -1 => moves whole stack
  205. virtual bool eraseStack(const StackLocation &sl, bool forceRemoval = false) =0;
  206. virtual bool swapStacks(const StackLocation &sl1, const StackLocation &sl2) =0;
  207. virtual bool addToSlot(const StackLocation &sl, const CCreature *c, TQuantity count) =0; //makes new stack or increases count of already existing
  208. virtual void tryJoiningArmy(const CArmedInstance *src, const CArmedInstance *dst, bool removeObjWhenFinished, bool allowMerging) =0; //merges army from src do dst or opens a garrison window
  209. virtual bool moveStack(const StackLocation &src, const StackLocation &dst, TQuantity count) = 0;
  210. virtual void giveHeroNewArtifact(const CGHeroInstance *h, const CArtifact *artType, ArtifactPosition pos) = 0;
  211. virtual void giveHeroArtifact(const CGHeroInstance *h, const CArtifactInstance *a, ArtifactPosition pos) = 0; //pos==-1 - first free slot in backpack=0; pos==-2 - default if available or backpack
  212. virtual void putArtifact(const ArtifactLocation &al, const CArtifactInstance *a) = 0;
  213. virtual void removeArtifact(const ArtifactLocation &al) = 0;
  214. virtual bool moveArtifact(const ArtifactLocation &al1, const ArtifactLocation &al2) = 0;
  215. virtual void synchronizeArtifactHandlerLists() = 0;
  216. virtual void showCompInfo(ShowInInfobox * comp)=0;
  217. virtual void heroVisitCastle(const CGTownInstance * obj, const CGHeroInstance * hero)=0;
  218. virtual void stopHeroVisitCastle(const CGTownInstance * obj, const CGHeroInstance * hero)=0;
  219. virtual void startBattleI(const CArmedInstance *army1, const CArmedInstance *army2, int3 tile, const CGHeroInstance *hero1, const CGHeroInstance *hero2, bool creatureBank = false, boost::function<void(BattleResult*)> cb = 0, const CGTownInstance *town = NULL)=0; //use hero=NULL for no hero
  220. virtual void startBattleI(const CArmedInstance *army1, const CArmedInstance *army2, int3 tile, boost::function<void(BattleResult*)> cb = 0, bool creatureBank = false)=0; //if any of armies is hero, hero will be used
  221. virtual void startBattleI(const CArmedInstance *army1, const CArmedInstance *army2, boost::function<void(BattleResult*)> cb = 0, bool creatureBank = false)=0; //if any of armies is hero, hero will be used, visitable tile of second obj is place of battle
  222. virtual void setAmount(ObjectInstanceID objid, ui32 val)=0;
  223. virtual bool moveHero(ObjectInstanceID hid, int3 dst, ui8 instant, PlayerColor asker = PlayerColor::NEUTRAL)=0;
  224. virtual void giveHeroBonus(GiveBonus * bonus)=0;
  225. virtual void setMovePoints(SetMovePoints * smp)=0;
  226. virtual void setManaPoints(ObjectInstanceID hid, int val)=0;
  227. virtual void giveHero(ObjectInstanceID id, PlayerColor player)=0;
  228. virtual void changeObjPos(ObjectInstanceID objid, int3 newPos, ui8 flags)=0;
  229. virtual void sendAndApply(CPackForClient * info)=0;
  230. virtual void heroExchange(ObjectInstanceID hero1, ObjectInstanceID hero2)=0; //when two heroes meet on adventure map
  231. virtual void addQuest(int player, QuestInfo & quest){};
  232. };
  233. /// Interface class for handling general game logic and actions
  234. class DLL_LINKAGE IGameCallback : public CPrivilagedInfoCallback, public IGameEventCallback
  235. {
  236. public:
  237. virtual ~IGameCallback(){};
  238. //do sth
  239. const CGObjectInstance *putNewObject(Obj ID, int subID, int3 pos);
  240. const CGCreature *putNewMonster(CreatureID creID, int count, int3 pos);
  241. friend struct CPack;
  242. friend struct CPackForClient;
  243. friend struct CPackForServer;
  244. };