123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116 |
- /*
- * IObjectInterface.h, part of VCMI engine
- *
- * Authors: listed in file AUTHORS in main folder
- *
- * License: GNU General Public License v2.0 or later
- * Full text of license available in license.txt file, in main folder
- *
- */
- #pragma once
- #include "../NetPacksBase.h"
- VCMI_LIB_NAMESPACE_BEGIN
- struct BattleResult;
- struct UpgradeInfo;
- class CGObjectInstance;
- class CRandomGenerator;
- class IGameCallback;
- class ResourceSet;
- class int3;
- class DLL_LINKAGE IObjectInterface
- {
- public:
- static IGameCallback *cb;
- virtual ~IObjectInterface() = default;
- virtual int32_t getObjGroupIndex() const = 0;
- virtual int32_t getObjTypeIndex() const = 0;
- virtual PlayerColor getOwner() const = 0;
- virtual int3 visitablePos() const = 0;
- virtual int3 getPosition() const = 0;
- virtual void onHeroVisit(const CGHeroInstance * h) const;
- virtual void onHeroLeave(const CGHeroInstance * h) const;
- virtual void newTurn(CRandomGenerator & rand) const;
- virtual void initObj(CRandomGenerator & rand); //synchr
- virtual void setProperty(ui8 what, ui32 val);//synchr
- //Called when queries created DURING HERO VISIT are resolved
- //First parameter is always hero that visited object and triggered the query
- virtual void battleFinished(const CGHeroInstance *hero, const BattleResult &result) const;
- virtual void blockingDialogAnswered(const CGHeroInstance *hero, ui32 answer) const;
- virtual void garrisonDialogClosed(const CGHeroInstance *hero) const;
- virtual void heroLevelUpDone(const CGHeroInstance *hero) const;
- //unified helper to show info dialog for object owner
- virtual void showInfoDialog(const ui32 txtID, const ui16 soundID = 0, EInfoWindowMode mode = EInfoWindowMode::AUTO) const;
- //unified helper to show a specific window
- static void openWindow(const EOpenWindowMode type, const int id1, const int id2 = -1);
- //unified interface, AI helpers
- virtual bool wasVisited (PlayerColor player) const;
- virtual bool wasVisited (const CGHeroInstance * h) const;
- static void preInit(); //called before objs receive their initObj
- static void postInit();//called after objs receive their initObj
- template <typename Handler> void serialize(Handler &h, const int version)
- {
- logGlobal->error("IObjectInterface serialized, unexpected, should not happen!");
- }
- };
- class DLL_LINKAGE ICreatureUpgrader
- {
- public:
- virtual void fillUpgradeInfo(UpgradeInfo & info, const CStackInstance &stack) const = 0;
- virtual ~ICreatureUpgrader() = default;
- };
- class DLL_LINKAGE IBoatGenerator
- {
- public:
- const CGObjectInstance *o;
- IBoatGenerator(const CGObjectInstance *O);
- virtual ~IBoatGenerator() = default;
- virtual BoatId getBoatType() const; //0 - evil (if a ship can be evil...?), 1 - good, 2 - neutral
- virtual void getOutOffsets(std::vector<int3> &offsets) const =0; //offsets to obj pos when we boat can be placed
- int3 bestLocation() const; //returns location when the boat should be placed
- enum EGeneratorState {GOOD, BOAT_ALREADY_BUILT, TILE_BLOCKED, NO_WATER};
- EGeneratorState shipyardStatus() const; //0 - can buid, 1 - there is already a boat at dest tile, 2 - dest tile is blocked, 3 - no water
- void getProblemText(MetaString &out, const CGHeroInstance *visitor = nullptr) const;
- template <typename Handler> void serialize(Handler &h, const int version)
- {
- h & o;
- }
- };
- class DLL_LINKAGE IShipyard : public IBoatGenerator
- {
- public:
- IShipyard(const CGObjectInstance *O);
- virtual void getBoatCost(ResourceSet & cost) const;
- static const IShipyard *castFrom(const CGObjectInstance *obj);
- static IShipyard *castFrom(CGObjectInstance *obj);
- template <typename Handler> void serialize(Handler &h, const int version)
- {
- h & static_cast<IBoatGenerator&>(*this);
- }
- };
- VCMI_LIB_NAMESPACE_END
|