CCreatureHandler.h 5.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149
  1. #ifndef __CCREATUREHANDLER_H__
  2. #define __CCREATUREHANDLER_H__
  3. #include "../global.h"
  4. #include <string>
  5. #include <vector>
  6. #include <map>
  7. #include <set>
  8. #include "../lib/HeroBonus.h"
  9. #include "../lib/ConstTransitivePtr.h"
  10. /*
  11. * CCreatureHandler.h, part of VCMI engine
  12. *
  13. * Authors: listed in file AUTHORS in main folder
  14. *
  15. * License: GNU General Public License v2.0 or later
  16. * Full text of license available in license.txt file, in main folder
  17. *
  18. */
  19. #define ALLCREATURESGETDOUBLEMONTHS false
  20. class CLodHandler;
  21. class CCreatureHandler;
  22. class CCreature;
  23. class DLL_EXPORT CCreature : public CBonusSystemNode
  24. {
  25. public:
  26. std::string namePl, nameSing, nameRef; //name in singular and plural form; and reference name
  27. std::vector<ui32> cost; //cost[res_id] - amount of that resource
  28. std::set<ui32> upgrades; // IDs of creatures to which this creature can be upgraded
  29. ui32 hitPoints, speed, attack, defence;
  30. ui32 fightValue, AIValue, growth, hordeGrowth, shots, spells;
  31. ui32 damageMin, damageMax;
  32. ui32 ammMin, ammMax;
  33. ui8 level; // 0 - unknown
  34. std::string abilityText; //description of abilities
  35. std::string abilityRefs; //references to abilities, in text format
  36. std::string animDefName;
  37. si32 idNumber;
  38. si8 faction; //-1 = neutral
  39. ui8 doubleWide;
  40. ///animation info
  41. float timeBetweenFidgets, walkAnimationTime, attackAnimationTime, flightAnimationDistance;
  42. int upperRightMissleOffsetX, rightMissleOffsetX, lowerRightMissleOffsetX, upperRightMissleOffsetY, rightMissleOffsetY, lowerRightMissleOffsetY;
  43. float missleFrameAngles[12];
  44. int troopCountLocationOffset, attackClimaxFrame;
  45. ///end of anim info
  46. bool isDoubleWide() const; //returns true if unit is double wide on battlefield
  47. bool isFlying() const; //returns true if it is a flying unit
  48. bool isShooting() const; //returns true if unit can shoot
  49. bool isUndead() const; //returns true if unit is undead
  50. bool isGood () const;
  51. bool isEvil () const;
  52. si32 maxAmount(const std::vector<si32> &res) const; //how many creatures can be bought
  53. static int getQuantityID(const int & quantity); //0 - a few, 1 - several, 2 - pack, 3 - lots, 4 - horde, 5 - throng, 6 - swarm, 7 - zounds, 8 - legion
  54. bool isMyUpgrade(const CCreature *anotherCre) const;
  55. bool valid() const;
  56. void addBonus(int val, int type, int subtype = -1);
  57. std::string nodeName() const OVERRIDE;
  58. //void getParents(TCNodes &out, const CBonusSystemNode *root /*= NULL*/) const;
  59. template<typename RanGen>
  60. int getRandomAmount(RanGen &ranGen)
  61. {
  62. if(ammMax == ammMin)
  63. return ammMax;
  64. else
  65. return ammMin + (ranGen() % (ammMax - ammMin));
  66. }
  67. template <typename Handler> void serialize(Handler &h, const int version)
  68. {
  69. h & static_cast<CBonusSystemNode&>(*this);
  70. h & namePl & nameSing & nameRef
  71. & cost & upgrades
  72. & fightValue & AIValue & growth & hordeGrowth & hitPoints & speed & attack & defence & shots & spells
  73. & damageMin & damageMax & ammMin & ammMax & level
  74. & abilityText & abilityRefs & animDefName
  75. & idNumber & faction
  76. & timeBetweenFidgets & walkAnimationTime & attackAnimationTime & flightAnimationDistance
  77. & upperRightMissleOffsetX & rightMissleOffsetX & lowerRightMissleOffsetX & upperRightMissleOffsetY & rightMissleOffsetY & lowerRightMissleOffsetY
  78. & missleFrameAngles & troopCountLocationOffset & attackClimaxFrame;
  79. h & doubleWide;
  80. }
  81. CCreature();
  82. friend class CCreatureHandler;
  83. };
  84. class DLL_EXPORT CCreatureHandler
  85. {
  86. private: //?
  87. CBonusSystemNode allCreatures, creaturesOfLevel[CREATURES_PER_TOWN + 1];//index 0 is used for creatures of unknown tier or outside <1-7> range
  88. public:
  89. std::set<int> notUsedMonsters;
  90. std::set<TCreature> doubledCreatures; //they get double week
  91. std::vector<ConstTransitivePtr<CCreature> > creatures; //creature ID -> creature info
  92. bmap<std::string,int> nameToID;
  93. bmap<int,std::string> idToProjectile;
  94. bmap<int,bool> idToProjectileSpin; //if true, appropriate projectile is spinning during flight
  95. std::vector<si8> factionAlignments; //1 for good, 0 for neutral and -1 for evil with faction ID as index
  96. int factionToTurretCreature[F_NUMBER]; //which creature's animation should be used to dispaly creature in turret while siege
  97. std::map<TBonusType, std::pair<std::string, std::string> > stackBonuses; // bonus => name, description
  98. std::vector<std::vector<ui32> > expRanks; // stack experience needed for certain rank, index 0 for other tiers (?)
  99. std::vector<ui32> maxExpPerBattle; //%, tiers same as above
  100. si8 expAfterUpgrade;//multiplier in %
  101. void deserializationFix();
  102. void loadCreatures();
  103. void buildBonusTreeForTiers();
  104. void loadAnimationInfo();
  105. void loadUnitAnimInfo(CCreature & unit, std::string & src, int & i);
  106. void loadStackExp(Bonus & b, BonusList & bl, std::string & src, int & it);
  107. void loadMindImmunity(Bonus & b, BonusList & bl, std::string & src, int & it); //multiple bonuses at once
  108. int stringToNumber(std::string & s);//help function for parsing CREXPBON.txt
  109. bool isGood (si8 faction) const;
  110. bool isEvil (si8 faction) const;
  111. int pickRandomMonster(const boost::function<int()> &randGen = 0, int tier = -1) const; //tier <1 - CREATURES_PER_TOWN> or -1 for any
  112. void addBonusForTier(int tier, Bonus *b); //tier must be <1-7>
  113. void addBonusForAllCreatures(Bonus *b);
  114. CCreatureHandler();
  115. ~CCreatureHandler();
  116. template <typename Handler> void serialize(Handler &h, const int version)
  117. {
  118. //TODO: should be optimized, not all these informations needs to be serialized (same for ccreature)
  119. h & notUsedMonsters & creatures & nameToID & idToProjectile & idToProjectileSpin & factionToTurretCreature;
  120. h & stackBonuses & expRanks & maxExpPerBattle & expAfterUpgrade;
  121. h & allCreatures;
  122. h & creaturesOfLevel;
  123. BONUS_TREE_DESERIALIZATION_FIX
  124. }
  125. };
  126. #endif // __CCREATUREHANDLER_H__