CObjectHandler.h 49 KB

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