CRewardableObject.h 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  1. /*
  2. * CRewardableObject.h, part of VCMI engine
  3. *
  4. * Authors: listed in file AUTHORS in main folder
  5. *
  6. * License: GNU General Public License v2.0 or later
  7. * Full text of license available in license.txt file, in main folder
  8. *
  9. */
  10. #pragma once
  11. #include "CArmedInstance.h"
  12. #include "../rewardable/Interface.h"
  13. VCMI_LIB_NAMESPACE_BEGIN
  14. /// Base class that can handle granting rewards to visiting heroes.
  15. /// Inherits from CArmedInstance for proper transfer of armies
  16. class DLL_LINKAGE CRewardableObject : public CArmedInstance, public Rewardable::Interface
  17. {
  18. protected:
  19. bool onceVisitableObjectCleared = false;
  20. /// reward selected by player, no serialize
  21. ui16 selectedReward = 0;
  22. void grantReward(ui32 rewardID, const CGHeroInstance * hero) const override;
  23. void markAsVisited(const CGHeroInstance * hero) const override;
  24. const IObjectInterface * getObject() const override;
  25. void markAsScouted(const CGHeroInstance * hero) const override;
  26. /// return true if this object was "cleared" before and no longer has rewards applicable to selected hero
  27. /// unlike wasVisited, this method uses information not available to player owner, for example, if object was cleared by another player before
  28. bool wasVisitedBefore(const CGHeroInstance * contextHero) const override;
  29. void serializeJsonOptions(JsonSerializeFormat & handler) override;
  30. std::string getDisplayTextImpl(PlayerColor player, const CGHeroInstance * hero, bool includeDescription) const;
  31. std::string getDescriptionMessage(PlayerColor player, const CGHeroInstance * hero) const;
  32. std::vector<Component> getPopupComponentsImpl(PlayerColor player, const CGHeroInstance * hero) const;
  33. /// Returns true if this object is currently guarded
  34. bool isGuarded() const;
  35. public:
  36. /// Visitability checks. Note that hero check includes check for hero owner (returns true if object was visited by player)
  37. bool wasVisited(PlayerColor player) const override;
  38. bool wasVisited(const CGHeroInstance * h) const override;
  39. /// Returns true if object was scouted by player and he is aware of its internal state
  40. bool wasScouted(PlayerColor player) const;
  41. /// gives reward to player or ask for choice in case of multiple rewards
  42. void onHeroVisit(const CGHeroInstance *h) const override;
  43. void battleFinished(const CGHeroInstance *hero, const BattleResult &result) const override;
  44. ///possibly resets object state
  45. void newTurn(vstd::RNG & rand) const override;
  46. /// gives second part of reward after hero level-ups for proper granting of spells/mana
  47. void heroLevelUpDone(const CGHeroInstance *hero) const override;
  48. /// applies player selection of reward
  49. void blockingDialogAnswered(const CGHeroInstance *hero, int32_t answer) const override;
  50. void initObj(vstd::RNG & rand) override;
  51. bool isCoastVisitable() const override;
  52. void initializeGuards();
  53. void setPropertyDer(ObjProperty what, ObjPropertyID identifier) override;
  54. CRewardableObject(IGameCallback *cb);
  55. std::string getHoverText(PlayerColor player) const override;
  56. std::string getHoverText(const CGHeroInstance * hero) const override;
  57. std::string getPopupText(PlayerColor player) const override;
  58. std::string getPopupText(const CGHeroInstance * hero) const override;
  59. std::vector<Component> getPopupComponents(PlayerColor player) const override;
  60. std::vector<Component> getPopupComponents(const CGHeroInstance * hero) const override;
  61. template <typename Handler> void serialize(Handler &h)
  62. {
  63. h & static_cast<CArmedInstance&>(*this);
  64. h & static_cast<Rewardable::Interface&>(*this);
  65. h & onceVisitableObjectCleared;
  66. }
  67. };
  68. //TODO:
  69. // class DLL_LINKAGE CGKeys : public CGObjectInstance //Base class for Keymaster and guards
  70. // class DLL_LINKAGE CGKeymasterTent : public CGKeys
  71. // class DLL_LINKAGE CGBorderGuard : public CGKeys, public IQuestObject
  72. // POSSIBLE
  73. // class DLL_LINKAGE CGSignBottle : public CGObjectInstance //signs and ocean bottles
  74. VCMI_LIB_NAMESPACE_END