IObjectInterface.h 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116
  1. /*
  2. * IObjectInterface.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 "../NetPacksBase.h"
  12. VCMI_LIB_NAMESPACE_BEGIN
  13. struct BattleResult;
  14. struct UpgradeInfo;
  15. class CGObjectInstance;
  16. class CRandomGenerator;
  17. class IGameCallback;
  18. class ResourceSet;
  19. class int3;
  20. class DLL_LINKAGE IObjectInterface
  21. {
  22. public:
  23. static IGameCallback *cb;
  24. virtual ~IObjectInterface() = default;
  25. virtual int32_t getObjGroupIndex() const = 0;
  26. virtual int32_t getObjTypeIndex() const = 0;
  27. virtual PlayerColor getOwner() const = 0;
  28. virtual int3 visitablePos() const = 0;
  29. virtual int3 getPosition() const = 0;
  30. virtual void onHeroVisit(const CGHeroInstance * h) const;
  31. virtual void onHeroLeave(const CGHeroInstance * h) const;
  32. virtual void newTurn(CRandomGenerator & rand) const;
  33. virtual void initObj(CRandomGenerator & rand); //synchr
  34. virtual void setProperty(ui8 what, ui32 val);//synchr
  35. //Called when queries created DURING HERO VISIT are resolved
  36. //First parameter is always hero that visited object and triggered the query
  37. virtual void battleFinished(const CGHeroInstance *hero, const BattleResult &result) const;
  38. virtual void blockingDialogAnswered(const CGHeroInstance *hero, ui32 answer) const;
  39. virtual void garrisonDialogClosed(const CGHeroInstance *hero) const;
  40. virtual void heroLevelUpDone(const CGHeroInstance *hero) const;
  41. //unified helper to show info dialog for object owner
  42. virtual void showInfoDialog(const ui32 txtID, const ui16 soundID = 0, EInfoWindowMode mode = EInfoWindowMode::AUTO) const;
  43. //unified helper to show a specific window
  44. static void openWindow(const EOpenWindowMode type, const int id1, const int id2 = -1);
  45. //unified interface, AI helpers
  46. virtual bool wasVisited (PlayerColor player) const;
  47. virtual bool wasVisited (const CGHeroInstance * h) const;
  48. static void preInit(); //called before objs receive their initObj
  49. static void postInit();//called after objs receive their initObj
  50. template <typename Handler> void serialize(Handler &h, const int version)
  51. {
  52. logGlobal->error("IObjectInterface serialized, unexpected, should not happen!");
  53. }
  54. };
  55. class DLL_LINKAGE ICreatureUpgrader
  56. {
  57. public:
  58. virtual void fillUpgradeInfo(UpgradeInfo & info, const CStackInstance &stack) const = 0;
  59. virtual ~ICreatureUpgrader() = default;
  60. };
  61. class DLL_LINKAGE IBoatGenerator
  62. {
  63. public:
  64. const CGObjectInstance *o;
  65. IBoatGenerator(const CGObjectInstance *O);
  66. virtual ~IBoatGenerator() = default;
  67. virtual BoatId getBoatType() const; //0 - evil (if a ship can be evil...?), 1 - good, 2 - neutral
  68. virtual void getOutOffsets(std::vector<int3> &offsets) const =0; //offsets to obj pos when we boat can be placed
  69. int3 bestLocation() const; //returns location when the boat should be placed
  70. enum EGeneratorState {GOOD, BOAT_ALREADY_BUILT, TILE_BLOCKED, NO_WATER};
  71. EGeneratorState shipyardStatus() const; //0 - can buid, 1 - there is already a boat at dest tile, 2 - dest tile is blocked, 3 - no water
  72. void getProblemText(MetaString &out, const CGHeroInstance *visitor = nullptr) const;
  73. template <typename Handler> void serialize(Handler &h, const int version)
  74. {
  75. h & o;
  76. }
  77. };
  78. class DLL_LINKAGE IShipyard : public IBoatGenerator
  79. {
  80. public:
  81. IShipyard(const CGObjectInstance *O);
  82. virtual void getBoatCost(ResourceSet & cost) const;
  83. static const IShipyard *castFrom(const CGObjectInstance *obj);
  84. static IShipyard *castFrom(CGObjectInstance *obj);
  85. template <typename Handler> void serialize(Handler &h, const int version)
  86. {
  87. h & static_cast<IBoatGenerator&>(*this);
  88. }
  89. };
  90. VCMI_LIB_NAMESPACE_END