CObjectHandler.h 52 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435
  1. #pragma once
  2. #include "../lib/CCreatureSet.h"
  3. #include "CArtHandler.h"
  4. #include "../lib/ConstTransitivePtr.h"
  5. #include "int3.h"
  6. #include "GameConstants.h"
  7. #include "ResourceSet.h"
  8. /*
  9. * CObjectHandler.h, part of VCMI engine
  10. *
  11. * Authors: listed in file AUTHORS in main folder
  12. *
  13. * License: GNU General Public License v2.0 or later
  14. * Full text of license available in license.txt file, in main folder
  15. *
  16. */
  17. class CGameState;
  18. class CArtifactInstance;
  19. struct MetaString;
  20. struct BattleInfo;
  21. struct QuestInfo;
  22. class IGameCallback;
  23. struct BattleResult;
  24. class CCPPObjectScript;
  25. class CGObjectInstance;
  26. class CScript;
  27. class CObjectScript;
  28. class CGHeroInstance;
  29. class CTown;
  30. class CHero;
  31. class CBuilding;
  32. class CSpell;
  33. class CGTownInstance;
  34. class CGTownBuilding;
  35. class CArtifact;
  36. class CGDefInfo;
  37. class CSpecObjInfo;
  38. class CCastleEvent;
  39. struct TerrainTile;
  40. struct InfoWindow;
  41. struct Component;
  42. struct BankConfig;
  43. struct UpdateHerospecialty;
  44. struct NewArtifact;
  45. class CGBoat;
  46. class CArtifactSet;
  47. class CCommanderInstance;
  48. class DLL_LINKAGE CQuest
  49. {
  50. public:
  51. enum Emission {MISSION_NONE = 0, MISSION_LEVEL = 1, MISSION_PRIMARY_STAT = 2, MISSION_KILL_HERO = 3, MISSION_KILL_CREATURE = 4,
  52. MISSION_ART = 5, MISSION_ARMY = 6, MISSION_RESOURCES = 7, MISSION_HERO = 8, MISSION_PLAYER = 9, MISSION_KEYMASTER = 10};
  53. enum Eprogress {NOT_ACTIVE, IN_PROGRESS, COMPLETE};
  54. si32 qid; //unique quest id for serialization / identification
  55. Emission missionType;
  56. Eprogress progress;
  57. si32 lastDay; //after this day (first day is 0) mission cannot be completed; if -1 - no limit
  58. ui32 m13489val;
  59. std::vector<ui32> m2stats;
  60. std::vector<ui16> m5arts; //artifacts id
  61. std::vector<CStackBasicDescriptor> m6creatures; //pair[cre id, cre count], CreatureSet info irrelevant
  62. std::vector<ui32> m7resources; //TODO: use resourceset?
  63. //following field are used only for kill creature/hero missions, the original objects became inaccessible after their removal, so we need to store info needed for messages / hover text
  64. ui8 textOption;
  65. CStackBasicDescriptor stackToKill;
  66. ui8 stackDirection;
  67. std::string heroName; //backup of hero name
  68. si32 heroPortrait;
  69. std::string firstVisitText, nextVisitText, completedText;
  70. bool isCustomFirst, isCustomNext, isCustomComplete;
  71. CQuest(){missionType = MISSION_NONE;}; //default constructor
  72. virtual bool checkQuest (const CGHeroInstance * h) const; //determines whether the quest is complete or not
  73. virtual void getVisitText (MetaString &text, std::vector<Component> &components, bool isCustom, bool FirstVisit, const CGHeroInstance * h = nullptr) const;
  74. virtual void getCompletionText (MetaString &text, std::vector<Component> &components, bool isCustom, const CGHeroInstance * h = nullptr) const;
  75. virtual void getRolloverText (MetaString &text, bool onHover) const; //hover or quest log entry
  76. virtual void completeQuest (const CGHeroInstance * h) const {};
  77. virtual void addReplacements(MetaString &out, const std::string &base) const;
  78. bool operator== (const CQuest & quest) const
  79. {
  80. return (quest.qid == qid);
  81. }
  82. template <typename Handler> void serialize(Handler &h, const int version)
  83. {
  84. h & qid & missionType & progress & lastDay & m13489val & m2stats & m5arts & m6creatures & m7resources
  85. & textOption & stackToKill & stackDirection & heroName & heroPortrait
  86. & firstVisitText & nextVisitText & completedText & isCustomFirst & isCustomNext & isCustomComplete;
  87. }
  88. };
  89. class DLL_LINKAGE IObjectInterface
  90. {
  91. public:
  92. static IGameCallback *cb;
  93. IObjectInterface();
  94. virtual ~IObjectInterface();
  95. virtual void onHeroVisit(const CGHeroInstance * h) const;
  96. virtual void onHeroLeave(const CGHeroInstance * h) const;
  97. virtual void newTurn() const;
  98. virtual void initObj(); //synchr
  99. virtual void setProperty(ui8 what, ui32 val);//synchr
  100. //Called when queries created DURING HERO VISIT are resolved
  101. //First parameter is always hero that visited object and triggered the query
  102. virtual void battleFinished(const CGHeroInstance *hero, const BattleResult &result) const;
  103. virtual void blockingDialogAnswered(const CGHeroInstance *hero, ui32 answer) const;
  104. virtual void garrisonDialogClosed(const CGHeroInstance *hero) const;
  105. virtual void heroLevelUpDone(const CGHeroInstance *hero) const;
  106. //unified interface, AI helpers
  107. virtual bool wasVisited (PlayerColor player) const;
  108. virtual bool wasVisited (const CGHeroInstance * h) const;
  109. static void preInit(); //called before objs receive their initObj
  110. static void postInit();//called after objs receive their initObj
  111. };
  112. class DLL_LINKAGE IBoatGenerator
  113. {
  114. public:
  115. const CGObjectInstance *o;
  116. IBoatGenerator(const CGObjectInstance *O);
  117. virtual int getBoatType() const; //0 - evil (if a ship can be evil...?), 1 - good, 2 - neutral
  118. virtual void getOutOffsets(std::vector<int3> &offsets) const =0; //offsets to obj pos when we boat can be placed
  119. int3 bestLocation() const; //returns location when the boat should be placed
  120. enum EGeneratorState {GOOD, BOAT_ALREADY_BUILT, TILE_BLOCKED, NO_WATER};
  121. EGeneratorState shipyardStatus() const; //0 - can buid, 1 - there is already a boat at dest tile, 2 - dest tile is blocked, 3 - no water
  122. void getProblemText(MetaString &out, const CGHeroInstance *visitor = nullptr) const;
  123. };
  124. class DLL_LINKAGE IShipyard : public IBoatGenerator
  125. {
  126. public:
  127. IShipyard(const CGObjectInstance *O);
  128. virtual void getBoatCost(std::vector<si32> &cost) const;
  129. static const IShipyard *castFrom(const CGObjectInstance *obj);
  130. static IShipyard *castFrom(CGObjectInstance *obj);
  131. };
  132. class DLL_LINKAGE IMarket
  133. {
  134. public:
  135. const CGObjectInstance *o;
  136. IMarket(const CGObjectInstance *O);
  137. virtual int getMarketEfficiency() const =0;
  138. virtual bool allowsTrade(EMarketMode::EMarketMode mode) const;
  139. virtual int availableUnits(EMarketMode::EMarketMode mode, int marketItemSerial) const; //-1 if unlimited
  140. virtual std::vector<int> availableItemsIds(EMarketMode::EMarketMode mode) const;
  141. bool getOffer(int id1, int id2, int &val1, int &val2, EMarketMode::EMarketMode mode) const; //val1 - how many units of id1 player has to give to receive val2 units
  142. std::vector<EMarketMode::EMarketMode> availableModes() const;
  143. static const IMarket *castFrom(const CGObjectInstance *obj, bool verbose = true);
  144. };
  145. class DLL_LINKAGE CGObjectInstance : public IObjectInterface
  146. {
  147. public:
  148. mutable std::string hoverName;
  149. int3 pos; //h3m pos
  150. Obj ID;
  151. si32 subID; //normal subID (this one from OH3 maps ;])
  152. ObjectInstanceID id;//number of object in map's vector
  153. CGDefInfo * defInfo;
  154. PlayerColor tempOwner;
  155. bool blockVisit; //if non-zero then blocks the tile but is visitable from neighbouring tile
  156. virtual ui8 getPassableness() const; //bitmap - if the bit is set the corresponding player can pass through the visitable tiles of object, even if it's blockvis; if not set - default properties from definfo are used
  157. virtual int3 getSightCenter() const; //"center" tile from which the sight distance is calculated
  158. virtual int getSightRadious() const; //sight distance (should be used if player-owned structure)
  159. bool passableFor(PlayerColor color) const;
  160. void getSightTiles(std::unordered_set<int3, ShashInt3> &tiles) const; //returns reference to the set
  161. PlayerColor getOwner() const;
  162. void setOwner(PlayerColor ow);
  163. int getWidth() const; //returns width of object graphic in tiles
  164. int getHeight() const; //returns height of object graphic in tiles
  165. bool visitableAt(int x, int y) const; //returns true if object is visitable at location (x, y) form left top tile of image (x, y in tiles)
  166. int3 getVisitableOffset() const; //returns (x,y,0) offset to first visitable tile from bottom right obj tile (0,0,0) (h3m pos)
  167. int3 visitablePos() const;
  168. bool blockingAt(int x, int y) const; //returns true if object is blocking location (x, y) form left top tile of image (x, y in tiles)
  169. bool coveringAt(int x, int y) const; //returns true if object covers with picture location (x, y) form left top tile of maximal possible image (8 x 6 tiles) (x, y in tiles)
  170. bool hasShadowAt(int x, int y) const;//returns true if object covers with shadow location (x, y) form left top tile of maximal possible image (8 x 6 tiles) (x, y in tiles)
  171. std::set<int3> getBlockedPos() const; //returns set of positions blocked by this object
  172. bool isVisitable() const; //returns true if object is visitable
  173. bool operator<(const CGObjectInstance & cmp) const; //screen printing priority comparing
  174. void hideTiles(PlayerColor ourplayer, int radius) const;
  175. CGObjectInstance();
  176. virtual ~CGObjectInstance();
  177. //CGObjectInstance(const CGObjectInstance & right);
  178. //CGObjectInstance& operator=(const CGObjectInstance & right);
  179. virtual const std::string & getHoverText() const;
  180. ///IObjectInterface
  181. void initObj() override;
  182. void onHeroVisit(const CGHeroInstance * h) const override;
  183. void setProperty(ui8 what, ui32 val) override;//synchr
  184. friend class CGameHandler;
  185. template <typename Handler> void serialize(Handler &h, const int version)
  186. {
  187. h & hoverName & pos & ID & subID & id & tempOwner & blockVisit & defInfo;
  188. //definfo is handled by map serializer
  189. }
  190. protected:
  191. virtual void setPropertyDer(ui8 what, ui32 val);//synchr
  192. void getNameVis(std::string &hname) const;
  193. void giveDummyBonus(ObjectInstanceID heroID, ui8 duration = Bonus::ONE_DAY) const;
  194. };
  195. class CGHeroPlaceholder : public CGObjectInstance
  196. {
  197. public:
  198. //subID stores id of hero type. If it's 0xff then following field is used
  199. ui8 power;
  200. template <typename Handler> void serialize(Handler &h, const int version)
  201. {
  202. h & static_cast<CGObjectInstance&>(*this);
  203. h & power;
  204. }
  205. };
  206. class DLL_LINKAGE CPlayersVisited: public CGObjectInstance
  207. {
  208. public:
  209. std::set<PlayerColor> players; //players that visited this object
  210. bool wasVisited(PlayerColor player) const;
  211. bool wasVisited(TeamID team) const;
  212. void setPropertyDer(ui8 what, ui32 val) override;
  213. template <typename Handler> void serialize(Handler &h, const int version)
  214. {
  215. h & static_cast<CGObjectInstance&>(*this);
  216. h & players;
  217. }
  218. };
  219. class DLL_LINKAGE CArmedInstance: public CGObjectInstance, public CBonusSystemNode, public CCreatureSet
  220. {
  221. public:
  222. BattleInfo *battle; //set to the current battle, if engaged
  223. void randomizeArmy(int type);
  224. virtual void updateMoraleBonusFromArmy();
  225. void armyChanged() override;
  226. //////////////////////////////////////////////////////////////////////////
  227. // int valOfGlobalBonuses(CSelector selector) const; //used only for castle interface ???
  228. virtual CBonusSystemNode *whereShouldBeAttached(CGameState *gs);
  229. virtual CBonusSystemNode *whatShouldBeAttached();
  230. //////////////////////////////////////////////////////////////////////////
  231. CArmedInstance();
  232. template <typename Handler> void serialize(Handler &h, const int version)
  233. {
  234. h & static_cast<CGObjectInstance&>(*this);
  235. h & static_cast<CBonusSystemNode&>(*this);
  236. h & static_cast<CCreatureSet&>(*this);
  237. }
  238. };
  239. class DLL_LINKAGE CGHeroInstance : public CArmedInstance, public IBoatGenerator, public CArtifactSet
  240. {
  241. public:
  242. enum ECanDig
  243. {
  244. CAN_DIG, LACK_OF_MOVEMENT, WRONG_TERRAIN, TILE_OCCUPIED
  245. };
  246. //////////////////////////////////////////////////////////////////////////
  247. ui8 moveDir; //format: 123
  248. // 8 4
  249. // 765
  250. mutable ui8 isStanding, tacticFormationEnabled;
  251. //////////////////////////////////////////////////////////////////////////
  252. ConstTransitivePtr<CHero> type;
  253. TExpType exp; //experience points
  254. ui32 level; //current level of hero
  255. std::string name; //may be custom
  256. std::string biography; //if custom
  257. si32 portrait; //may be custom
  258. si32 mana; // remaining spell points
  259. std::vector<std::pair<SecondarySkill,ui8> > secSkills; //first - ID of skill, second - level of skill (1 - basic, 2 - adv., 3 - expert); if hero has ability (-1, -1) it meansthat it should have default secondary abilities
  260. ui32 movement; //remaining movement points
  261. ui8 sex;
  262. bool inTownGarrison; // if hero is in town garrison
  263. ConstTransitivePtr<CGTownInstance> visitedTown; //set if hero is visiting town or in the town garrison
  264. ConstTransitivePtr<CCommanderInstance> commander;
  265. const CGBoat *boat; //set to CGBoat when sailing
  266. //std::vector<const CArtifact*> artifacts; //hero's artifacts from bag
  267. //std::map<ui16, const CArtifact*> artifWorn; //map<position,artifact_id>; positions: 0 - head; 1 - shoulders; 2 - neck; 3 - right hand; 4 - left hand; 5 - torso; 6 - right ring; 7 - left ring; 8 - feet; 9 - misc1; 10 - misc2; 11 - misc3; 12 - misc4; 13 - mach1; 14 - mach2; 15 - mach3; 16 - mach4; 17 - spellbook; 18 - misc5
  268. std::set<SpellID> spells; //known spells (spell IDs)
  269. struct DLL_LINKAGE Patrol
  270. {
  271. Patrol(){patrolling=false;patrolRadious=-1;};
  272. bool patrolling;
  273. ui32 patrolRadious;
  274. template <typename Handler> void serialize(Handler &h, const int version)
  275. {
  276. h & patrolling & patrolRadious;
  277. }
  278. } patrol;
  279. struct DLL_LINKAGE HeroSpecial : CBonusSystemNode
  280. {
  281. bool growsWithLevel;
  282. HeroSpecial(){growsWithLevel = false;};
  283. template <typename Handler> void serialize(Handler &h, const int version)
  284. {
  285. h & static_cast<CBonusSystemNode&>(*this);
  286. h & growsWithLevel;
  287. }
  288. };
  289. std::vector<HeroSpecial*> specialty;
  290. //BonusList bonuses;
  291. //////////////////////////////////////////////////////////////////////////
  292. template <typename Handler> void serialize(Handler &h, const int version)
  293. {
  294. h & static_cast<CArmedInstance&>(*this);
  295. h & static_cast<CArtifactSet&>(*this);
  296. h & exp & level & name & biography & portrait & mana & secSkills & movement
  297. & sex & inTownGarrison & spells & patrol & moveDir;
  298. h & visitedTown & boat;
  299. h & type & specialty & commander;
  300. BONUS_TREE_DESERIALIZATION_FIX
  301. //visitied town pointer will be restored by map serialization method
  302. }
  303. //////////////////////////////////////////////////////////////////////////
  304. int3 getSightCenter() const; //"center" tile from which the sight distance is calculated
  305. int getSightRadious() const; //sight distance (should be used if player-owned structure)
  306. //////////////////////////////////////////////////////////////////////////
  307. int getBoatType() const; //0 - evil (if a ship can be evil...?), 1 - good, 2 - neutral
  308. void getOutOffsets(std::vector<int3> &offsets) const; //offsets to obj pos when we boat can be placed
  309. //////////////////////////////////////////////////////////////////////////
  310. bool hasSpellbook() const;
  311. EAlignment::EAlignment getAlignment() const;
  312. const std::string &getBiography() const;
  313. bool needsLastStack()const;
  314. ui32 getTileCost(const TerrainTile &dest, const TerrainTile &from) const; //move cost - applying pathfinding skill, road and terrain modifiers. NOT includes diagonal move penalty, last move levelling
  315. ui32 getLowestCreatureSpeed() const;
  316. int3 getPosition(bool h3m = false) const; //h3m=true - returns position of hero object; h3m=false - returns position of hero 'manifestation'
  317. si32 manaRegain() const; //how many points of mana can hero regain "naturally" in one day
  318. bool canWalkOnSea() const;
  319. int getCurrentLuck(int stack=-1, bool town=false) const;
  320. int getSpellCost(const CSpell *sp) const; //do not use during battles -> bonuses from army would be ignored
  321. ui8 getSecSkillLevel(SecondarySkill skill) const; //0 - no skill
  322. void setSecSkillLevel(SecondarySkill which, int val, bool abs);// abs == 0 - changes by value; 1 - sets to value
  323. bool canLearnSkill() const; ///true if hero has free secondary skill slot
  324. int maxMovePoints(bool onLand) const;
  325. int movementPointsAfterEmbark(int MPsBefore, int basicCost, bool disembark = false) const;
  326. //int getSpellSecLevel(int spell) const; //returns level of secondary ability (fire, water, earth, air magic) known to this hero and applicable to given spell; -1 if error
  327. static int3 convertPosition(int3 src, bool toh3m); //toh3m=true: manifest->h3m; toh3m=false: h3m->manifest
  328. double getHeroStrength() const;
  329. ui64 getTotalStrength() const;
  330. TExpType calculateXp(TExpType exp) const; //apply learning skill
  331. ui8 getSpellSchoolLevel(const CSpell * spell, int *outSelectedSchool = nullptr) const; //returns level on which given spell would be cast by this hero (0 - none, 1 - basic etc); optionally returns number of selected school by arg - 0 - air magic, 1 - fire magic, 2 - water magic, 3 - earth magic,
  332. bool canCastThisSpell(const CSpell * spell) const; //determines if this hero can cast given spell; takes into account existing spell in spellbook, existing spellbook and artifact bonuses
  333. CStackBasicDescriptor calculateNecromancy (const BattleResult &battleResult) const;
  334. void showNecromancyDialog(const CStackBasicDescriptor &raisedStack) const;
  335. ECanDig diggingStatus() const; //0 - can dig; 1 - lack of movement; 2 -
  336. std::vector<SecondarySkill> levelUpProposedSkills() const;
  337. bool gainsLevel() const; //true if hero has lower level than should upon his experience
  338. //////////////////////////////////////////////////////////////////////////
  339. void initHero();
  340. void initHero(HeroTypeID SUBID);
  341. void putArtifact(ArtifactPosition pos, CArtifactInstance *art);
  342. void putInBackpack(CArtifactInstance *art);
  343. void initExp();
  344. void initArmy(IArmyDescriptor *dst = nullptr);
  345. //void giveArtifact (ui32 aid);
  346. void initHeroDefInfo();
  347. void pushPrimSkill(PrimarySkill::PrimarySkill which, int val);
  348. void Updatespecialty();
  349. void updateSkill(SecondarySkill which, int val);
  350. CGHeroInstance();
  351. virtual ~CGHeroInstance();
  352. //////////////////////////////////////////////////////////////////////////
  353. //
  354. ArtBearer::ArtBearer bearerType() const override;
  355. //////////////////////////////////////////////////////////////////////////
  356. CBonusSystemNode *whereShouldBeAttached(CGameState *gs) override;
  357. std::string nodeName() const override;
  358. void deserializationFix();
  359. void initObj() override;
  360. void onHeroVisit(const CGHeroInstance * h) const override;
  361. const std::string & getHoverText() const override;
  362. protected:
  363. void setPropertyDer(ui8 what, ui32 val) override;//synchr
  364. };
  365. class DLL_LINKAGE CSpecObjInfo
  366. {
  367. public:
  368. virtual ~CSpecObjInfo(){};
  369. PlayerColor player; //owner
  370. };
  371. class DLL_LINKAGE CCreGenAsCastleInfo : public virtual CSpecObjInfo
  372. {
  373. public:
  374. bool asCastle;
  375. ui32 identifier;
  376. ui8 castles[2]; //allowed castles
  377. };
  378. class DLL_LINKAGE CCreGenLeveledInfo : public virtual CSpecObjInfo
  379. {
  380. public:
  381. ui8 minLevel, maxLevel; //minimal and maximal level of creature in dwelling: <0, 6>
  382. };
  383. class DLL_LINKAGE CCreGenLeveledCastleInfo : public CCreGenAsCastleInfo, public CCreGenLeveledInfo
  384. {
  385. };
  386. class DLL_LINKAGE CGDwelling : public CArmedInstance
  387. {
  388. public:
  389. typedef std::vector<std::pair<ui32, std::vector<CreatureID> > > TCreaturesSet;
  390. CSpecObjInfo * info; //h3m info about dewlling
  391. TCreaturesSet creatures; //creatures[level] -> <vector of alternative ids (base creature and upgrades, creatures amount>
  392. template <typename Handler> void serialize(Handler &h, const int version)
  393. {
  394. h & static_cast<CArmedInstance&>(*this) & creatures;
  395. }
  396. void initObj() override;
  397. void onHeroVisit(const CGHeroInstance * h) const override;
  398. void newTurn() const override;
  399. void setProperty(ui8 what, ui32 val) override;
  400. void battleFinished(const CGHeroInstance *hero, const BattleResult &result) const override;
  401. void blockingDialogAnswered(const CGHeroInstance *hero, ui32 answer) const override;
  402. private:
  403. void heroAcceptsCreatures(const CGHeroInstance *h) const;
  404. };
  405. class DLL_LINKAGE CGVisitableOPH : public CGObjectInstance //objects visitable only once per hero
  406. {
  407. public:
  408. std::set<ObjectInstanceID> visitors; //ids of heroes who have visited this obj
  409. TResources treePrice; //used only by trees of knowledge: empty, 2000 gold, 10 gems
  410. const std::string & getHoverText() const override;
  411. void onHeroVisit(const CGHeroInstance * h) const override;
  412. void initObj() override;
  413. bool wasVisited (const CGHeroInstance * h) const override;
  414. void blockingDialogAnswered(const CGHeroInstance *hero, ui32 answer) const override;
  415. template <typename Handler> void serialize(Handler &h, const int version)
  416. {
  417. h & static_cast<CGObjectInstance&>(*this);
  418. h & visitors & treePrice;
  419. }
  420. protected:
  421. void setPropertyDer(ui8 what, ui32 val) override;//synchr
  422. private:
  423. void onNAHeroVisit(const CGHeroInstance * h, bool alreadyVisited) const;
  424. ///dialog callbacks
  425. void treeSelected(const CGHeroInstance * h, ui32 result) const;
  426. void schoolSelected(const CGHeroInstance * h, ui32 which) const;
  427. void arenaSelected(const CGHeroInstance * h, int primSkill) const;
  428. };
  429. class DLL_LINKAGE CGTownBuilding : public IObjectInterface
  430. {
  431. ///basic class for town structures handled as map objects
  432. public:
  433. BuildingID ID; //from buildig list
  434. si32 id; //identifies its index on towns vector
  435. CGTownInstance *town;
  436. template <typename Handler> void serialize(Handler &h, const int version)
  437. {
  438. h & ID & id;
  439. }
  440. };
  441. class DLL_LINKAGE COPWBonus : public CGTownBuilding
  442. {///used for OPW bonusing structures
  443. public:
  444. std::set<si32> visitors;
  445. void setProperty(ui8 what, ui32 val) override;
  446. void onHeroVisit (const CGHeroInstance * h) const override;
  447. COPWBonus (BuildingID index, CGTownInstance *TOWN);
  448. COPWBonus (){ID = BuildingID::NONE; town = nullptr;};
  449. template <typename Handler> void serialize(Handler &h, const int version)
  450. {
  451. h & static_cast<CGTownBuilding&>(*this);
  452. h & visitors;
  453. }
  454. };
  455. class DLL_LINKAGE CTownBonus : public CGTownBuilding
  456. {
  457. ///used for one-time bonusing structures
  458. ///feel free to merge inheritance tree
  459. public:
  460. std::set<ObjectInstanceID> visitors;
  461. void setProperty(ui8 what, ui32 val) override;
  462. void onHeroVisit (const CGHeroInstance * h) const override;
  463. CTownBonus (BuildingID index, CGTownInstance *TOWN);
  464. CTownBonus (){ID = BuildingID::NONE; town = nullptr;};
  465. template <typename Handler> void serialize(Handler &h, const int version)
  466. {
  467. h & static_cast<CGTownBuilding&>(*this);
  468. h & visitors;
  469. }
  470. };
  471. class DLL_LINKAGE CTownAndVisitingHero : public CBonusSystemNode
  472. {
  473. public:
  474. CTownAndVisitingHero();
  475. };
  476. struct DLL_LINKAGE GrowthInfo
  477. {
  478. struct Entry
  479. {
  480. int count;
  481. std::string description;
  482. Entry(const std::string &format, int _count);
  483. Entry(int subID, BuildingID building, int _count);
  484. };
  485. std::vector<Entry> entries;
  486. int totalGrowth() const;
  487. };
  488. class DLL_LINKAGE CGTownInstance : public CGDwelling, public IShipyard, public IMarket
  489. {
  490. public:
  491. enum EFortLevel {NONE = 0, FORT = 1, CITADEL = 2, CASTLE = 3};
  492. CTownAndVisitingHero townAndVis;
  493. const CTown * town;
  494. std::string name; // name of town
  495. si32 builded; //how many buildings has been built this turn
  496. si32 destroyed; //how many buildings has been destroyed this turn
  497. ConstTransitivePtr<CGHeroInstance> garrisonHero, visitingHero;
  498. ui32 identifier; //special identifier from h3m (only > RoE maps)
  499. si32 alignment;
  500. std::set<BuildingID> forbiddenBuildings, builtBuildings;
  501. std::vector<CGTownBuilding*> bonusingBuildings;
  502. std::vector<SpellID> possibleSpells, obligatorySpells;
  503. std::vector<std::vector<SpellID> > spells; //spells[level] -> vector of spells, first will be available in guild
  504. std::list<CCastleEvent> events;
  505. std::pair<si32, si32> bonusValue;//var to store town bonuses (rampart = resources from mystic pond);
  506. //////////////////////////////////////////////////////////////////////////
  507. static std::vector<const CArtifact *> merchantArtifacts; //vector of artifacts available at Artifact merchant, NULLs possible (for making empty space when artifact is bought)
  508. static std::vector<int> universitySkills;//skills for university of magic
  509. template <typename Handler> void serialize(Handler &h, const int version)
  510. {
  511. h & static_cast<CGDwelling&>(*this);
  512. h & name & builded & destroyed & identifier;
  513. h & garrisonHero & visitingHero;
  514. h & alignment & forbiddenBuildings & builtBuildings & bonusValue
  515. & possibleSpells & obligatorySpells & spells & /*strInfo & */events & bonusingBuildings;
  516. for (std::vector<CGTownBuilding*>::iterator i = bonusingBuildings.begin(); i!=bonusingBuildings.end(); i++)
  517. (*i)->town = this;
  518. h & town & townAndVis;
  519. BONUS_TREE_DESERIALIZATION_FIX
  520. vstd::erase_if(builtBuildings, [this](BuildingID building) -> bool
  521. {
  522. if(!town->buildings.count(building) || !town->buildings.at(building))
  523. {
  524. logGlobal->errorStream() << boost::format("#1444-like issue in CGTownInstance::serialize. From town %s at %s removing the bogus builtBuildings item %s")
  525. % name % pos % building;
  526. return true;
  527. }
  528. return false;
  529. });
  530. }
  531. //////////////////////////////////////////////////////////////////////////
  532. CBonusSystemNode *whatShouldBeAttached() override;
  533. std::string nodeName() const override;
  534. void updateMoraleBonusFromArmy() override;
  535. void deserializationFix();
  536. void recreateBuildingsBonuses();
  537. bool addBonusIfBuilt(BuildingID building, Bonus::BonusType type, int val, TPropagatorPtr &prop, int subtype = -1); //returns true if building is built and bonus has been added
  538. bool addBonusIfBuilt(BuildingID building, Bonus::BonusType type, int val, int subtype = -1); //convienence version of above
  539. void setVisitingHero(CGHeroInstance *h);
  540. void setGarrisonedHero(CGHeroInstance *h);
  541. const CArmedInstance *getUpperArmy() const; //garrisoned hero if present or the town itself
  542. //////////////////////////////////////////////////////////////////////////
  543. ui8 getPassableness() const; //bitmap - if the bit is set the corresponding player can pass through the visitable tiles of object, even if it's blockvis; if not set - default properties from definfo are used
  544. int3 getSightCenter() const override; //"center" tile from which the sight distance is calculated
  545. int getSightRadious() const override; //returns sight distance
  546. int getBoatType() const; //0 - evil (if a ship can be evil...?), 1 - good, 2 - neutral
  547. void getOutOffsets(std::vector<int3> &offsets) const; //offsets to obj pos when we boat can be placed
  548. int getMarketEfficiency() const override; //=market count
  549. bool allowsTrade(EMarketMode::EMarketMode mode) const;
  550. std::vector<int> availableItemsIds(EMarketMode::EMarketMode mode) const;
  551. //////////////////////////////////////////////////////////////////////////
  552. bool needsLastStack() const;
  553. CGTownInstance::EFortLevel fortLevel() const;
  554. int hallLevel() const; // -1 - none, 0 - village, 1 - town, 2 - city, 3 - capitol
  555. int mageGuildLevel() const; // -1 - none, 0 - village, 1 - town, 2 - city, 3 - capitol
  556. int creatureDwellingLevel(int dwelling) const;
  557. int getHordeLevel(const int & HID) const; //HID - 0 or 1; returns creature level or -1 if that horde structure is not present
  558. int creatureGrowth(const int & level) const;
  559. GrowthInfo getGrowthInfo(int level) const;
  560. bool hasFort() const;
  561. bool hasCapitol() const;
  562. //checks if building is constructed and town has same subID
  563. bool hasBuilt(BuildingID buildingID) const;
  564. bool hasBuilt(BuildingID buildingID, int townID) const;
  565. int dailyIncome() const; //calculates daily income of this town
  566. int spellsAtLevel(int level, bool checkGuild) const; //levels are counted from 1 (1 - 5)
  567. bool armedGarrison() const; //true if town has creatures in garrison or garrisoned hero
  568. int getTownLevel() const;
  569. void removeCapitols (PlayerColor owner) const;
  570. void addHeroToStructureVisitors(const CGHeroInstance *h, si32 structureInstanceID) const; //hero must be visiting or garrisoned in town
  571. CGTownInstance();
  572. virtual ~CGTownInstance();
  573. ///IObjectInterface overrides
  574. void newTurn() const override;
  575. void onHeroVisit(const CGHeroInstance * h) const override;
  576. void onHeroLeave(const CGHeroInstance * h) const override;
  577. void initObj() override;
  578. void battleFinished(const CGHeroInstance *hero, const BattleResult &result) const override;
  579. protected:
  580. void setPropertyDer(ui8 what, ui32 val) override;
  581. };
  582. class DLL_LINKAGE CGPandoraBox : public CArmedInstance
  583. {
  584. public:
  585. std::string message;
  586. bool hasGuardians; //helper - after battle even though we have no stacks, allows us to know that there was battle
  587. //gained things:
  588. ui32 gainedExp;
  589. si32 manaDiff; //amount of gained / lost mana
  590. si32 moraleDiff; //morale modifier
  591. si32 luckDiff; //luck modifier
  592. TResources resources;//gained / lost resources
  593. std::vector<si32> primskills;//gained / lost prim skills
  594. std::vector<SecondarySkill> abilities; //gained abilities
  595. std::vector<si32> abilityLevels; //levels of gained abilities
  596. std::vector<ArtifactID> artifacts; //gained artifacts
  597. std::vector<SpellID> spells; //gained spells
  598. CCreatureSet creatures; //gained creatures
  599. void initObj() override;
  600. void onHeroVisit(const CGHeroInstance * h) const override;
  601. void battleFinished(const CGHeroInstance *hero, const BattleResult &result) const override;
  602. void blockingDialogAnswered(const CGHeroInstance *hero, ui32 answer) const override;
  603. void heroLevelUpDone(const CGHeroInstance *hero) const override;
  604. template <typename Handler> void serialize(Handler &h, const int version)
  605. {
  606. h & static_cast<CArmedInstance&>(*this);
  607. h & message & hasGuardians & gainedExp & manaDiff & moraleDiff & luckDiff & resources & primskills
  608. & abilities & abilityLevels & artifacts & spells & creatures;
  609. }
  610. protected:
  611. void giveContentsUpToExp(const CGHeroInstance *h) const;
  612. void giveContentsAfterExp(const CGHeroInstance *h) const;
  613. private:
  614. void getText( InfoWindow &iw, bool &afterBattle, int val, int negative, int positive, const CGHeroInstance * h ) const;
  615. void getText( InfoWindow &iw, bool &afterBattle, int text, const CGHeroInstance * h ) const;
  616. };
  617. class DLL_LINKAGE CGEvent : public CGPandoraBox //event objects
  618. {
  619. public:
  620. bool removeAfterVisit; //true if event is removed after occurring
  621. ui8 availableFor; //players whom this event is available for
  622. bool computerActivate; //true if computer player can activate this event
  623. bool humanActivate; //true if human player can activate this event
  624. template <typename Handler> void serialize(Handler &h, const int version)
  625. {
  626. h & static_cast<CGPandoraBox &>(*this);
  627. h & removeAfterVisit & availableFor & computerActivate & humanActivate;
  628. }
  629. void onHeroVisit(const CGHeroInstance * h) const override;
  630. private:
  631. void activated(const CGHeroInstance * h) const;
  632. };
  633. class DLL_LINKAGE CGCreature : public CArmedInstance //creatures on map
  634. {
  635. enum Action {
  636. FIGHT = -2, FLEE = -1, JOIN_FOR_FREE = 0 //values > 0 mean gold price
  637. };
  638. public:
  639. ui32 identifier; //unique code for this monster (used in missions)
  640. si8 character; //character of this set of creatures (0 - the most friendly, 4 - the most hostile) => on init changed to -4 (compliant) ... 10 value (savage)
  641. std::string message; //message printed for attacking hero
  642. TResources resources; // resources given to hero that has won with monsters
  643. ArtifactID gainedArtifact; //ID of artifact gained to hero, -1 if none
  644. bool neverFlees; //if true, the troops will never flee
  645. bool notGrowingTeam; //if true, number of units won't grow
  646. ui64 temppower; //used to handle fractional stack growth for tiny stacks
  647. bool refusedJoining;
  648. void onHeroVisit(const CGHeroInstance * h) const override;
  649. const std::string & getHoverText() const override;
  650. void initObj() override;
  651. void newTurn() const override;
  652. void battleFinished(const CGHeroInstance *hero, const BattleResult &result) const override;
  653. void blockingDialogAnswered(const CGHeroInstance *hero, ui32 answer) const override;
  654. struct DLL_LINKAGE formationInfo // info about merging stacks after battle back into one
  655. {
  656. si32 basicType;
  657. ui32 randomFormation; //random seed used to determine number of stacks and is there's upgraded stack
  658. template <typename Handler> void serialize(Handler &h, const int version)
  659. {
  660. h & basicType & randomFormation;
  661. }
  662. } formation;
  663. template <typename Handler> void serialize(Handler &h, const int version)
  664. {
  665. h & static_cast<CArmedInstance&>(*this);
  666. h & identifier & character & message & resources & gainedArtifact & neverFlees & notGrowingTeam & temppower;
  667. h & refusedJoining & formation;
  668. }
  669. protected:
  670. void setPropertyDer(ui8 what, ui32 val) override;
  671. private:
  672. void fight(const CGHeroInstance *h) const;
  673. void flee( const CGHeroInstance * h ) const;
  674. void fleeDecision(const CGHeroInstance *h, ui32 pursue) const;
  675. void joinDecision(const CGHeroInstance *h, int cost, ui32 accept) const;
  676. int takenAction(const CGHeroInstance *h, bool allowJoin=true) const; //action on confrontation: -2 - fight, -1 - flee, >=0 - will join for given value of gold (may be 0)
  677. };
  678. class DLL_LINKAGE CGSignBottle : public CGObjectInstance //signs and ocean bottles
  679. {
  680. public:
  681. std::string message;
  682. void onHeroVisit(const CGHeroInstance * h) const override;
  683. void initObj() override;
  684. template <typename Handler> void serialize(Handler &h, const int version)
  685. {
  686. h & static_cast<CGObjectInstance&>(*this);
  687. h & message;
  688. }
  689. };
  690. class DLL_LINKAGE IQuestObject
  691. {
  692. public:
  693. CQuest * quest;
  694. IQuestObject(){quest = new CQuest;};
  695. virtual void getVisitText (MetaString &text, std::vector<Component> &components, bool isCustom, bool FirstVisit, const CGHeroInstance * h = nullptr) const;
  696. virtual bool checkQuest (const CGHeroInstance * h) const;
  697. template <typename Handler> void serialize(Handler &h, const int version)
  698. {
  699. h & quest;
  700. }
  701. };
  702. class DLL_LINKAGE CGSeerHut : public CArmedInstance, public IQuestObject //army is used when giving reward
  703. {
  704. public:
  705. enum ERewardType {NOTHING, EXPERIENCE, MANA_POINTS, MORALE_BONUS, LUCK_BONUS, RESOURCES, PRIMARY_SKILL, SECONDARY_SKILL, ARTIFACT, SPELL, CREATURE};
  706. ERewardType rewardType;
  707. si32 rID; //reward ID
  708. si32 rVal; //reward value
  709. std::string seerName;
  710. CGSeerHut() : IQuestObject(){};
  711. void initObj() override;
  712. const std::string & getHoverText() const override;
  713. void newTurn() const override;
  714. void onHeroVisit(const CGHeroInstance * h) const override;
  715. void blockingDialogAnswered(const CGHeroInstance *hero, ui32 answer) const override;
  716. virtual void init();
  717. int checkDirection() const; //calculates the region of map where monster is placed
  718. void setObjToKill(); //remember creatures / heroes to kill after they are initialized
  719. const CGHeroInstance *getHeroToKill(bool allowNull = false) const;
  720. const CGCreature *getCreatureToKill(bool allowNull = false) const;
  721. void getRolloverText (MetaString &text, bool onHover) const;
  722. void getCompletionText(MetaString &text, std::vector<Component> &components, bool isCustom, const CGHeroInstance * h = nullptr) const;
  723. void finishQuest (const CGHeroInstance * h, ui32 accept) const; //common for both objects
  724. virtual void completeQuest (const CGHeroInstance * h) const;
  725. template <typename Handler> void serialize(Handler &h, const int version)
  726. {
  727. h & static_cast<CArmedInstance&>(*this) & static_cast<IQuestObject&>(*this);
  728. h & rewardType & rID & rVal & seerName;
  729. }
  730. protected:
  731. void setPropertyDer(ui8 what, ui32 val) override;
  732. };
  733. class DLL_LINKAGE CGQuestGuard : public CGSeerHut
  734. {
  735. public:
  736. CGQuestGuard() : CGSeerHut(){};
  737. void init() override;
  738. void completeQuest (const CGHeroInstance * h) const override;
  739. template <typename Handler> void serialize(Handler &h, const int version)
  740. {
  741. h & static_cast<CGSeerHut&>(*this);
  742. }
  743. };
  744. class DLL_LINKAGE CGWitchHut : public CPlayersVisited
  745. {
  746. public:
  747. std::vector<si32> allowedAbilities;
  748. ui32 ability;
  749. const std::string & getHoverText() const override;
  750. void onHeroVisit(const CGHeroInstance * h) const override;
  751. void initObj() override;
  752. template <typename Handler> void serialize(Handler &h, const int version)
  753. {
  754. h & static_cast<CPlayersVisited&>(*this);
  755. h & allowedAbilities & ability;
  756. }
  757. };
  758. class DLL_LINKAGE CGScholar : public CGObjectInstance
  759. {
  760. public:
  761. enum EBonusType {PRIM_SKILL, SECONDARY_SKILL, SPELL, RANDOM = 255};
  762. EBonusType bonusType;
  763. ui16 bonusID; //ID of skill/spell
  764. // void giveAnyBonus(const CGHeroInstance * h) const; //TODO: remove
  765. void onHeroVisit(const CGHeroInstance * h) const override;
  766. void initObj() override;
  767. template <typename Handler> void serialize(Handler &h, const int version)
  768. {
  769. h & static_cast<CGObjectInstance&>(*this);
  770. h & bonusType & bonusID;
  771. }
  772. };
  773. class DLL_LINKAGE CGGarrison : public CArmedInstance
  774. {
  775. public:
  776. bool removableUnits;
  777. ui8 getPassableness() const;
  778. void onHeroVisit(const CGHeroInstance * h) const override;
  779. void battleFinished(const CGHeroInstance *hero, const BattleResult &result) const override;
  780. template <typename Handler> void serialize(Handler &h, const int version)
  781. {
  782. h & static_cast<CArmedInstance&>(*this);
  783. h & removableUnits;
  784. }
  785. };
  786. class DLL_LINKAGE CGArtifact : public CArmedInstance
  787. {
  788. public:
  789. CArtifactInstance *storedArtifact;
  790. std::string message;
  791. void onHeroVisit(const CGHeroInstance * h) const override;
  792. void battleFinished(const CGHeroInstance *hero, const BattleResult &result) const override;
  793. void blockingDialogAnswered(const CGHeroInstance *hero, ui32 answer) const override;
  794. void pick( const CGHeroInstance * h ) const;
  795. void initObj() override;
  796. template <typename Handler> void serialize(Handler &h, const int version)
  797. {
  798. h & static_cast<CArmedInstance&>(*this);
  799. h & message & storedArtifact;
  800. }
  801. };
  802. class DLL_LINKAGE CGResource : public CArmedInstance
  803. {
  804. public:
  805. ui32 amount; //0 if random
  806. std::string message;
  807. void onHeroVisit(const CGHeroInstance * h) const override;
  808. void initObj() override;
  809. void battleFinished(const CGHeroInstance *hero, const BattleResult &result) const override;
  810. void blockingDialogAnswered(const CGHeroInstance *hero, ui32 answer) const override;
  811. void collectRes(PlayerColor player) const;
  812. template <typename Handler> void serialize(Handler &h, const int version)
  813. {
  814. h & static_cast<CArmedInstance&>(*this);
  815. h & amount & message;
  816. }
  817. };
  818. class DLL_LINKAGE CGPickable : public CGObjectInstance //campfire, treasure chest, Flotsam, Shipwreck Survivor, Sea Chest
  819. {
  820. public:
  821. ui32 type, val1, val2;
  822. void onHeroVisit(const CGHeroInstance * h) const override;
  823. void initObj() override;
  824. void blockingDialogAnswered(const CGHeroInstance *hero, ui32 answer) const override;
  825. template <typename Handler> void serialize(Handler &h, const int version)
  826. {
  827. h & static_cast<CGObjectInstance&>(*this);
  828. h & type & val1 & val2;
  829. }
  830. };
  831. class DLL_LINKAGE CGShrine : public CPlayersVisited
  832. {
  833. public:
  834. SpellID spell; //id of spell or NONE if random
  835. void onHeroVisit(const CGHeroInstance * h) const override;
  836. void initObj() override;
  837. const std::string & getHoverText() const override;
  838. template <typename Handler> void serialize(Handler &h, const int version)
  839. {
  840. h & static_cast<CPlayersVisited&>(*this);;
  841. h & spell;
  842. }
  843. };
  844. class DLL_LINKAGE CGMine : public CArmedInstance
  845. {
  846. public:
  847. Res::ERes producedResource;
  848. ui32 producedQuantity;
  849. void onHeroVisit(const CGHeroInstance * h) const override;
  850. void battleFinished(const CGHeroInstance *hero, const BattleResult &result) const override;
  851. void blockingDialogAnswered(const CGHeroInstance *hero, ui32 answer) const override;
  852. void flagMine(PlayerColor player) const;
  853. void newTurn() const override;
  854. void initObj() override;
  855. template <typename Handler> void serialize(Handler &h, const int version)
  856. {
  857. h & static_cast<CArmedInstance&>(*this);
  858. h & producedResource & producedQuantity;
  859. }
  860. ui32 defaultResProduction();
  861. };
  862. class DLL_LINKAGE CGVisitableOPW : public CGObjectInstance //objects visitable OPW
  863. {
  864. public:
  865. ui8 visited; //true if object has been visited this week
  866. bool wasVisited(PlayerColor player) const;
  867. void onHeroVisit(const CGHeroInstance * h) const override;
  868. void newTurn() const override;
  869. template <typename Handler> void serialize(Handler &h, const int version)
  870. {
  871. h & static_cast<CGObjectInstance&>(*this);
  872. h & visited;
  873. }
  874. protected:
  875. void setPropertyDer(ui8 what, ui32 val) override;
  876. };
  877. class DLL_LINKAGE CGTeleport : public CGObjectInstance //teleports and subterranean gates
  878. {
  879. public:
  880. static std::map<Obj, std::map<int, std::vector<ObjectInstanceID> > > objs; //teleports: map[ID][subID] => vector of ids
  881. static std::vector<std::pair<ObjectInstanceID, ObjectInstanceID> > gates; //subterranean gates: pairs of ids
  882. void onHeroVisit(const CGHeroInstance * h) const override;
  883. void initObj() override;
  884. static void postInit();
  885. static ObjectInstanceID getMatchingGate(ObjectInstanceID id); //receives id of one subterranean gate and returns id of the paired one, -1 if none
  886. template <typename Handler> void serialize(Handler &h, const int version)
  887. {
  888. h & static_cast<CGObjectInstance&>(*this);
  889. }
  890. };
  891. class DLL_LINKAGE CGBonusingObject : public CGObjectInstance //objects giving bonuses to luck/morale/movement
  892. {
  893. public:
  894. bool wasVisited (const CGHeroInstance * h) const;
  895. void onHeroVisit(const CGHeroInstance * h) const override;
  896. const std::string & getHoverText() const override;
  897. void initObj() override;
  898. template <typename Handler> void serialize(Handler &h, const int version)
  899. {
  900. h & static_cast<CGObjectInstance&>(*this);
  901. }
  902. };
  903. class DLL_LINKAGE CGMagicSpring : public CGVisitableOPW
  904. {///unfortunately, this one is quite different than others
  905. public:
  906. void onHeroVisit(const CGHeroInstance * h) const override;
  907. const std::string & getHoverText() const override;
  908. template <typename Handler> void serialize(Handler &h, const int version)
  909. {
  910. h & static_cast<CGObjectInstance&>(*this);
  911. h & visited;
  912. }
  913. };
  914. class DLL_LINKAGE CGMagicWell : public CGObjectInstance //objects giving bonuses to luck/morale/movement
  915. {
  916. public:
  917. void onHeroVisit(const CGHeroInstance * h) const override;
  918. const std::string & getHoverText() const override;
  919. template <typename Handler> void serialize(Handler &h, const int version)
  920. {
  921. h & static_cast<CGObjectInstance&>(*this);
  922. }
  923. };
  924. class DLL_LINKAGE CGSirens : public CGObjectInstance
  925. {
  926. public:
  927. void onHeroVisit(const CGHeroInstance * h) const override;
  928. const std::string & getHoverText() const override;
  929. void initObj() override;
  930. template <typename Handler> void serialize(Handler &h, const int version)
  931. {
  932. h & static_cast<CGObjectInstance&>(*this);
  933. }
  934. };
  935. class DLL_LINKAGE CGObservatory : public CGObjectInstance //Redwood observatory
  936. {
  937. public:
  938. void onHeroVisit(const CGHeroInstance * h) const override;
  939. template <typename Handler> void serialize(Handler &h, const int version)
  940. {
  941. h & static_cast<CGObjectInstance&>(*this);
  942. }
  943. };
  944. class DLL_LINKAGE CGKeys : public CGObjectInstance //Base class for Keymaster and guards
  945. {
  946. public:
  947. static std::map <PlayerColor, std::set <ui8> > playerKeyMap; //[players][keysowned]
  948. //SubID 0 - lightblue, 1 - green, 2 - red, 3 - darkblue, 4 - brown, 5 - purple, 6 - white, 7 - black
  949. const std::string getName() const; //depending on color
  950. bool wasMyColorVisited (PlayerColor player) const;
  951. const std::string & getHoverText() const override;
  952. template <typename Handler> void serialize(Handler &h, const int version)
  953. {
  954. h & static_cast<CGObjectInstance&>(*this);
  955. }
  956. protected:
  957. void setPropertyDer(ui8 what, ui32 val) override;
  958. };
  959. class DLL_LINKAGE CGKeymasterTent : public CGKeys
  960. {
  961. public:
  962. bool wasVisited (PlayerColor player) const;
  963. void onHeroVisit(const CGHeroInstance * h) const override;
  964. template <typename Handler> void serialize(Handler &h, const int version)
  965. {
  966. h & static_cast<CGObjectInstance&>(*this);
  967. }
  968. };
  969. class DLL_LINKAGE CGBorderGuard : public CGKeys, public IQuestObject
  970. {
  971. public:
  972. CGBorderGuard() : IQuestObject(){};
  973. void initObj() override;
  974. void onHeroVisit(const CGHeroInstance * h) const override;
  975. void blockingDialogAnswered(const CGHeroInstance *hero, ui32 answer) const override;
  976. void getVisitText (MetaString &text, std::vector<Component> &components, bool isCustom, bool FirstVisit, const CGHeroInstance * h = nullptr) const;
  977. void getRolloverText (MetaString &text, bool onHover) const;
  978. bool checkQuest (const CGHeroInstance * h) const;
  979. template <typename Handler> void serialize(Handler &h, const int version)
  980. {
  981. h & static_cast<IQuestObject&>(*this);
  982. h & static_cast<CGObjectInstance&>(*this);
  983. h & blockVisit;
  984. }
  985. };
  986. class DLL_LINKAGE CGBorderGate : public CGBorderGuard
  987. {
  988. public:
  989. CGBorderGate() : CGBorderGuard(){};
  990. void onHeroVisit(const CGHeroInstance * h) const override;
  991. ui8 getPassableness() const override;
  992. template <typename Handler> void serialize(Handler &h, const int version)
  993. {
  994. h & static_cast<CGBorderGuard&>(*this); //need to serialize or object will be empty
  995. }
  996. };
  997. class DLL_LINKAGE CGBoat : public CGObjectInstance
  998. {
  999. public:
  1000. ui8 direction;
  1001. const CGHeroInstance *hero; //hero on board
  1002. void initObj() override;
  1003. CGBoat()
  1004. {
  1005. hero = nullptr;
  1006. direction = 4;
  1007. }
  1008. template <typename Handler> void serialize(Handler &h, const int version)
  1009. {
  1010. h & static_cast<CGObjectInstance&>(*this) & direction & hero;
  1011. }
  1012. };
  1013. class DLL_LINKAGE CGOnceVisitable : public CPlayersVisited
  1014. ///wagon, corpse, lean to, warriors tomb
  1015. {
  1016. public:
  1017. ui8 artOrRes; //0 - nothing; 1 - artifact; 2 - resource
  1018. ui32 bonusType, //id of res or artifact
  1019. bonusVal; //resource amount (or not used)
  1020. void onHeroVisit(const CGHeroInstance * h) const override;
  1021. const std::string & getHoverText() const override;
  1022. void initObj() override;
  1023. void blockingDialogAnswered(const CGHeroInstance *hero, ui32 answer) const override;
  1024. template <typename Handler> void serialize(Handler &h, const int version)
  1025. {
  1026. h & static_cast<CPlayersVisited&>(*this);;
  1027. h & artOrRes & bonusType & bonusVal;
  1028. }
  1029. };
  1030. class DLL_LINKAGE CBank : public CArmedInstance
  1031. {
  1032. public:
  1033. int index; //banks have unusal numbering - see ZCRBANK.txt and initObj()
  1034. BankConfig *bc;
  1035. double multiplier; //for improved banks script
  1036. std::vector<ui32> artifacts; //fixed and deterministic
  1037. ui32 daycounter;
  1038. void initObj() override;
  1039. const std::string & getHoverText() const override;
  1040. void initialize() const;
  1041. void reset(ui16 var1);
  1042. void newTurn() const override;
  1043. bool wasVisited (PlayerColor player) const override;
  1044. void onHeroVisit(const CGHeroInstance * h) const override;
  1045. void battleFinished(const CGHeroInstance *hero, const BattleResult &result) const override;
  1046. void blockingDialogAnswered(const CGHeroInstance *hero, ui32 answer) const override;
  1047. template <typename Handler> void serialize(Handler &h, const int version)
  1048. {
  1049. h & static_cast<CArmedInstance&>(*this);
  1050. h & index & multiplier & artifacts & daycounter & bc;
  1051. }
  1052. protected:
  1053. void setPropertyDer(ui8 what, ui32 val) override;
  1054. };
  1055. class DLL_LINKAGE CGPyramid : public CBank
  1056. {
  1057. public:
  1058. ui16 spell;
  1059. void initObj() override;
  1060. const std::string & getHoverText() const override;
  1061. void newTurn() const override {}; //empty, no reset
  1062. void onHeroVisit(const CGHeroInstance * h) const override;
  1063. void battleFinished(const CGHeroInstance *hero, const BattleResult &result) const override;
  1064. template <typename Handler> void serialize(Handler &h, const int version)
  1065. {
  1066. h & static_cast<CBank&>(*this);
  1067. h & spell;
  1068. }
  1069. };
  1070. class CGShipyard : public CGObjectInstance, public IShipyard
  1071. {
  1072. public:
  1073. void getOutOffsets(std::vector<int3> &offsets) const; //offsets to obj pos when we boat can be placed
  1074. CGShipyard();
  1075. void onHeroVisit(const CGHeroInstance * h) const override;
  1076. };
  1077. class DLL_LINKAGE CGMagi : public CGObjectInstance
  1078. {
  1079. public:
  1080. static std::map <si32, std::vector<ObjectInstanceID> > eyelist; //[subID][id], supports multiple sets as in H5
  1081. void initObj() override;
  1082. void onHeroVisit(const CGHeroInstance * h) const override;
  1083. template <typename Handler> void serialize(Handler &h, const int version)
  1084. {
  1085. h & static_cast<CGObjectInstance&>(*this);
  1086. }
  1087. };
  1088. class DLL_LINKAGE CCartographer : public CPlayersVisited
  1089. {
  1090. ///behaviour varies depending on surface and floor
  1091. public:
  1092. void onHeroVisit(const CGHeroInstance * h) const override;
  1093. void blockingDialogAnswered(const CGHeroInstance *hero, ui32 answer) const override;
  1094. template <typename Handler> void serialize(Handler &h, const int version)
  1095. {
  1096. h & static_cast<CPlayersVisited&>(*this);
  1097. }
  1098. };
  1099. class DLL_LINKAGE CGDenOfthieves : public CGObjectInstance
  1100. {
  1101. void onHeroVisit(const CGHeroInstance * h) const override;
  1102. };
  1103. class DLL_LINKAGE CGObelisk : public CPlayersVisited
  1104. {
  1105. public:
  1106. static ui8 obeliskCount; //how many obelisks are on map
  1107. static std::map<TeamID, ui8> visited; //map: team_id => how many obelisks has been visited
  1108. void onHeroVisit(const CGHeroInstance * h) const override;
  1109. void initObj() override;
  1110. const std::string & getHoverText() const override;
  1111. template <typename Handler> void serialize(Handler &h, const int version)
  1112. {
  1113. h & static_cast<CPlayersVisited&>(*this);
  1114. }
  1115. protected:
  1116. void setPropertyDer(ui8 what, ui32 val) override;
  1117. };
  1118. class DLL_LINKAGE CGLighthouse : public CGObjectInstance
  1119. {
  1120. public:
  1121. void onHeroVisit(const CGHeroInstance * h) const override;
  1122. void initObj() override;
  1123. const std::string & getHoverText() const override;
  1124. template <typename Handler> void serialize(Handler &h, const int version)
  1125. {
  1126. h & static_cast<CGObjectInstance&>(*this);
  1127. }
  1128. void giveBonusTo( PlayerColor player ) const;
  1129. };
  1130. class DLL_LINKAGE CGMarket : public CGObjectInstance, public IMarket
  1131. {
  1132. public:
  1133. CGMarket();
  1134. ///IObjectIntercae
  1135. void onHeroVisit(const CGHeroInstance * h) const override; //open trading window
  1136. ///IMarket
  1137. int getMarketEfficiency() const override;
  1138. bool allowsTrade(EMarketMode::EMarketMode mode) const override;
  1139. int availableUnits(EMarketMode::EMarketMode mode, int marketItemSerial) const override; //-1 if unlimited
  1140. std::vector<int> availableItemsIds(EMarketMode::EMarketMode mode) const override;
  1141. template <typename Handler> void serialize(Handler &h, const int version)
  1142. {
  1143. h & static_cast<CGObjectInstance&>(*this);
  1144. }
  1145. };
  1146. class DLL_LINKAGE CGBlackMarket : public CGMarket
  1147. {
  1148. public:
  1149. std::vector<const CArtifact *> artifacts; //available artifacts
  1150. void newTurn() const override; //reset artifacts for black market every month
  1151. std::vector<int> availableItemsIds(EMarketMode::EMarketMode mode) const override;
  1152. template <typename Handler> void serialize(Handler &h, const int version)
  1153. {
  1154. h & static_cast<CGMarket&>(*this);
  1155. h & artifacts;
  1156. }
  1157. };
  1158. class DLL_LINKAGE CGUniversity : public CGMarket
  1159. {
  1160. public:
  1161. std::vector<int> skills; //available skills
  1162. std::vector<int> availableItemsIds(EMarketMode::EMarketMode mode) const;
  1163. void initObj() override;//set skills for trade
  1164. void onHeroVisit(const CGHeroInstance * h) const override; //open window
  1165. template <typename Handler> void serialize(Handler &h, const int version)
  1166. {
  1167. h & static_cast<CGMarket&>(*this);
  1168. h & skills;
  1169. }
  1170. };
  1171. struct BankConfig
  1172. {
  1173. BankConfig() {level = chance = upgradeChance = combatValue = value = rewardDifficulty = easiest = 0; };
  1174. ui8 level; //1 - 4, how hard the battle will be
  1175. ui8 chance; //chance for this level being chosen
  1176. ui8 upgradeChance; //chance for creatures to be in upgraded versions
  1177. std::vector< std::pair <CreatureID, ui32> > guards; //creature ID, amount
  1178. ui32 combatValue; //how hard are guards of this level
  1179. Res::ResourceSet resources; //resources given in case of victory
  1180. std::vector< std::pair <CreatureID, ui32> > creatures; //creatures granted in case of victory (creature ID, amount)
  1181. std::vector<ui16> artifacts; //number of artifacts given in case of victory [0] -> treasure, [1] -> minor [2] -> major [3] -> relic
  1182. ui32 value; //overall value of given things
  1183. ui32 rewardDifficulty; //proportion of reward value to difficulty of guards; how profitable is this creature Bank config
  1184. ui16 easiest; //?!?
  1185. template <typename Handler> void serialize(Handler &h, const int version)
  1186. {
  1187. h & level & chance & upgradeChance & guards & combatValue & resources & creatures & artifacts & value & rewardDifficulty & easiest;
  1188. }
  1189. };
  1190. class DLL_LINKAGE CObjectHandler
  1191. {
  1192. public:
  1193. std::map<si32, CreatureID> cregens; //type 17. dwelling subid -> creature ID
  1194. std::map <ui32, std::vector < ConstTransitivePtr<BankConfig> > > banksInfo; //[index][preset]
  1195. std::map <ui32, std::string> creBanksNames; //[crebank index] -> name of this creature bank
  1196. std::vector<ui32> resVals; //default values of resources in gold
  1197. CObjectHandler();
  1198. ~CObjectHandler();
  1199. int bankObjToIndex (const CGObjectInstance * obj);
  1200. template <typename Handler> void serialize(Handler &h, const int version)
  1201. {
  1202. h & cregens & banksInfo & creBanksNames & resVals;
  1203. }
  1204. };