IObjectInterface.h 3.3 KB

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