CGameInfoCallback.h 8.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156
  1. #pragma once
  2. #include "ResourceSet.h" // for Res::ERes
  3. #include "CBattleCallback.h" //for CCallbackBase
  4. /*
  5. * CGameInfoCallback.h, part of VCMI engine
  6. *
  7. * Authors: listed in file AUTHORS in main folder
  8. *
  9. * License: GNU General Public License v2.0 or later
  10. * Full text of license available in license.txt file, in main folder
  11. *
  12. */
  13. class CGObjectInstance;
  14. struct InfoWindow;
  15. struct PlayerSettings;
  16. struct CPackForClient;
  17. struct TerrainTile;
  18. struct PlayerState;
  19. class CTown;
  20. struct StartInfo;
  21. struct InfoAboutTown;
  22. struct UpgradeInfo;
  23. struct SThievesGuildInfo;
  24. class CGDwelling;
  25. class CGTeleport;
  26. class CMapHeader;
  27. struct TeamState;
  28. struct QuestInfo;
  29. class int3;
  30. class DLL_LINKAGE CGameInfoCallback : public virtual CCallbackBase
  31. {
  32. protected:
  33. CGameInfoCallback();
  34. CGameInfoCallback(CGameState *GS, boost::optional<PlayerColor> Player);
  35. bool hasAccess(boost::optional<PlayerColor> playerId) const;
  36. bool isVisible(int3 pos, boost::optional<PlayerColor> Player) const;
  37. bool isVisible(const CGObjectInstance *obj, boost::optional<PlayerColor> Player) const;
  38. bool isVisible(const CGObjectInstance *obj) const;
  39. bool canGetFullInfo(const CGObjectInstance *obj) const; //true we player owns obj or ally owns obj or privileged mode
  40. bool isOwnedOrVisited(const CGObjectInstance *obj) const;
  41. public:
  42. //various
  43. 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
  44. const StartInfo * getStartInfo(bool beforeRandomization = false)const;
  45. bool isAllowed(int type, int id); //type: 0 - spell; 1- artifact; 2 - secondary skill
  46. //player
  47. const PlayerState * getPlayer(PlayerColor color, bool verbose = true) const;
  48. int getResource(PlayerColor Player, Res::ERes which) const;
  49. bool isVisible(int3 pos) const;
  50. PlayerRelations::PlayerRelations getPlayerRelations(PlayerColor color1, PlayerColor color2) const;
  51. void getThievesGuildInfo(SThievesGuildInfo & thi, const CGObjectInstance * obj); //get thieves' guild info obtainable while visiting given object
  52. EPlayerStatus::EStatus getPlayerStatus(PlayerColor player, bool verbose = true) const; //-1 if no such player
  53. PlayerColor getCurrentPlayer() const; //player that currently makes move // TODO synchronous turns
  54. virtual PlayerColor getLocalPlayer() const; //player that is currently owning given client (if not a client, then returns current player)
  55. const PlayerSettings * getPlayerSettings(PlayerColor color) const;
  56. //armed object
  57. void getUpgradeInfo(const CArmedInstance *obj, SlotID stackPos, UpgradeInfo &out)const;
  58. //hero
  59. const CGHeroInstance* getHero(ObjectInstanceID objid) const;
  60. const CGHeroInstance* getHeroWithSubid(int subid) const;
  61. int getHeroCount(PlayerColor player, bool includeGarrisoned) const;
  62. bool getHeroInfo(const CGObjectInstance * hero, InfoAboutHero & dest, const CGObjectInstance * selectedObject = nullptr) const;
  63. int getSpellCost(const CSpell * sp, const CGHeroInstance * caster) const; //when called during battle, takes into account creatures' spell cost reduction
  64. int estimateSpellDamage(const CSpell * sp, const CGHeroInstance * hero) const; //estimates damage of given spell; returns 0 if spell causes no dmg
  65. const CArtifactInstance * getArtInstance(ArtifactInstanceID aid) const;
  66. const CGObjectInstance * getObjInstance(ObjectInstanceID oid) const;
  67. //objects
  68. const CGObjectInstance* getObj(ObjectInstanceID objid, bool verbose = true) const;
  69. std::vector <const CGObjectInstance * > getBlockingObjs(int3 pos)const;
  70. std::vector <const CGObjectInstance * > getVisitableObjs(int3 pos, bool verbose = true)const;
  71. std::vector <const CGObjectInstance * > getFlaggableObjects(int3 pos) const;
  72. const CGObjectInstance * getTopObj (int3 pos) const;
  73. PlayerColor getOwner(ObjectInstanceID heroID) const;
  74. const CGObjectInstance *getObjByQuestIdentifier(int identifier) const; //nullptr if object has been removed (eg. killed)
  75. //map
  76. int3 guardingCreaturePosition (int3 pos) const;
  77. std::vector<const CGObjectInstance*> getGuardingCreatures (int3 pos) const;
  78. const CMapHeader * getMapHeader()const;
  79. int3 getMapSize() const; //returns size of map - z is 1 for one - level map and 2 for two level map
  80. const TerrainTile * getTile(int3 tile, bool verbose = true) const;
  81. std::shared_ptr<boost::multi_array<TerrainTile*, 3>> getAllVisibleTiles() const;
  82. bool isInTheMap(const int3 &pos) const;
  83. //town
  84. const CGTownInstance* getTown(ObjectInstanceID objid) const;
  85. int howManyTowns(PlayerColor Player) const;
  86. const CGTownInstance * getTownInfo(int val, bool mode)const; //mode = 0 -> val = player town serial; mode = 1 -> val = object id (serial)
  87. std::vector<const CGHeroInstance *> getAvailableHeroes(const CGObjectInstance * townOrTavern) const; //heroes that can be recruited
  88. std::string getTavernRumor(const CGObjectInstance * townOrTavern) const;
  89. 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
  90. virtual bool getTownInfo(const CGObjectInstance * town, InfoAboutTown & dest, const CGObjectInstance * selectedObject = nullptr) const;
  91. const CTown *getNativeTown(PlayerColor color) const;
  92. //from gs
  93. const TeamState *getTeam(TeamID teamID) const;
  94. const TeamState *getPlayerTeam(PlayerColor color) const;
  95. 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
  96. //teleport
  97. std::vector<ObjectInstanceID> getVisibleTeleportObjects(std::vector<ObjectInstanceID> ids, PlayerColor player) const;
  98. std::vector<ObjectInstanceID> getTeleportChannelEntraces(TeleportChannelID id, PlayerColor Player = PlayerColor::UNFLAGGABLE) const;
  99. std::vector<ObjectInstanceID> getTeleportChannelExits(TeleportChannelID id, PlayerColor Player = PlayerColor::UNFLAGGABLE) const;
  100. ETeleportChannelType getTeleportChannelType(TeleportChannelID id, PlayerColor player = PlayerColor::UNFLAGGABLE) const;
  101. bool isTeleportChannelImpassable(TeleportChannelID id, PlayerColor player = PlayerColor::UNFLAGGABLE) const;
  102. bool isTeleportChannelBidirectional(TeleportChannelID id, PlayerColor player = PlayerColor::UNFLAGGABLE) const;
  103. bool isTeleportChannelUnidirectional(TeleportChannelID id, PlayerColor player = PlayerColor::UNFLAGGABLE) const;
  104. bool isTeleportEntrancePassable(const CGTeleport * obj, PlayerColor player) const;
  105. };
  106. class DLL_LINKAGE CPlayerSpecificInfoCallback : public CGameInfoCallback
  107. {
  108. public:
  109. int howManyTowns() const;
  110. int howManyHeroes(bool includeGarrisoned = true) const;
  111. int3 getGrailPos(double *outKnownRatio);
  112. boost::optional<PlayerColor> getMyColor() const;
  113. std::vector <const CGTownInstance *> getTownsInfo(bool onlyOur = true) const; //true -> only owned; false -> all visible
  114. int getHeroSerial(const CGHeroInstance * hero, bool includeGarrisoned=true) const;
  115. const CGTownInstance* getTownBySerial(int serialId) const; // serial id is [0, number of towns)
  116. const CGHeroInstance* getHeroBySerial(int serialId, bool includeGarrisoned=true) const; // serial id is [0, number of heroes)
  117. std::vector <const CGHeroInstance *> getHeroesInfo(bool onlyOur = true) const; //true -> only owned; false -> all visible
  118. std::vector <const CGDwelling *> getMyDwellings() const; //returns all dwellings that belong to player
  119. std::vector <const CGObjectInstance * > getMyObjects() const; //returns all objects flagged by belonging player
  120. std::vector <QuestInfo> getMyQuests() const;
  121. int getResourceAmount(Res::ERes type) const;
  122. TResources getResourceAmount() const;
  123. const std::vector< std::vector< std::vector<ui8> > > & getVisibilityMap()const; //returns visibility map
  124. const PlayerSettings * getPlayerSettings(PlayerColor color) const;
  125. };
  126. class DLL_LINKAGE IGameEventRealizer
  127. {
  128. public:
  129. virtual void commitPackage(CPackForClient *pack) = 0;
  130. virtual void showInfoDialog(InfoWindow *iw);
  131. virtual void setObjProperty(ObjectInstanceID objid, int prop, si64 val);
  132. virtual void showInfoDialog(const std::string &msg, PlayerColor player);
  133. };