BattleInfo.h 6.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186
  1. /*
  2. * BattleInfo.h, part of VCMI engine
  3. *
  4. * Authors: listed in file AUTHORS in main folder
  5. *
  6. * License: GNU General Public License v2.0 or later
  7. * Full text of license available in license.txt file, in main folder
  8. *
  9. */
  10. #pragma once
  11. #include "CBattleInfoCallback.h"
  12. #include "IBattleState.h"
  13. #include "SideInBattle.h"
  14. #include "SiegeInfo.h"
  15. #include "../callback/GameCallbackHolder.h"
  16. #include "../bonuses/Bonus.h"
  17. #include "../bonuses/CBonusSystemNode.h"
  18. #include "../int3.h"
  19. VCMI_LIB_NAMESPACE_BEGIN
  20. class CStack;
  21. class CStackInstance;
  22. class CStackBasicDescriptor;
  23. class BattleField;
  24. struct BattleLayout;
  25. class DLL_LINKAGE BattleInfo : public CBonusSystemNode, public CBattleInfoCallback, public IBattleState, public GameCallbackHolder
  26. {
  27. BattleSideArray<SideInBattle> sides; //sides[0] - attacker, sides[1] - defender
  28. std::unique_ptr<BattleLayout> layout;
  29. void postDeserialize();
  30. public:
  31. BattleID battleID = BattleID(0);
  32. si32 round;
  33. si32 activeStack;
  34. ObjectInstanceID townID; //used during town siege, nullptr if this is not a siege (note that fortless town IS also a siege)
  35. int3 tile; //for background and bonuses
  36. bool replayAllowed;
  37. std::vector<std::unique_ptr<CStack>> stacks;
  38. std::vector<std::shared_ptr<CObstacleInstance> > obstacles;
  39. SiegeInfo si;
  40. BattleField battlefieldType; //like !!BA:B
  41. TerrainId terrainType; //used for some stack nativity checks (not the bonus limiters though that have their own copy)
  42. BattleSide tacticsSide; //which side is requested to play tactics phase
  43. ui8 tacticDistance; //how many hexes we can go forward (1 = only hexes adjacent to margin line)
  44. template <typename Handler> void serialize(Handler &h)
  45. {
  46. h & battleID;
  47. h & sides;
  48. h & round;
  49. h & activeStack;
  50. h & townID;
  51. h & tile;
  52. h & stacks;
  53. h & obstacles;
  54. h & si;
  55. h & battlefieldType;
  56. h & terrainType;
  57. h & tacticsSide;
  58. h & tacticDistance;
  59. h & static_cast<CBonusSystemNode&>(*this);
  60. h & replayAllowed;
  61. if(!h.saving)
  62. postDeserialize();
  63. }
  64. //////////////////////////////////////////////////////////////////////////
  65. BattleInfo(IGameInfoCallback *cb, const BattleLayout & layout);
  66. BattleInfo(IGameInfoCallback *cb);
  67. virtual ~BattleInfo();
  68. const IBattleInfo * getBattle() const override;
  69. std::optional<PlayerColor> getPlayerID() const override;
  70. //////////////////////////////////////////////////////////////////////////
  71. // IBattleInfo
  72. BattleID getBattleID() const override;
  73. int32_t getActiveStackID() const override;
  74. TStacks getStacksIf(const TStackFilter & predicate) const override;
  75. battle::Units getUnitsIf(const battle::UnitFilter & predicate) const override;
  76. BattleField getBattlefieldType() const override;
  77. TerrainId getTerrainType() const override;
  78. ObstacleCList getAllObstacles() const override;
  79. PlayerColor getSidePlayer(BattleSide side) const override;
  80. const CArmedInstance * getSideArmy(BattleSide side) const override;
  81. const CGHeroInstance * getSideHero(BattleSide side) const override;
  82. ui8 getTacticDist() const override;
  83. BattleSide getTacticsSide() const override;
  84. const CGTownInstance * getDefendedTown() const override;
  85. EWallState getWallState(EWallPart partOfWall) const override;
  86. EGateState getGateState() const override;
  87. int32_t getCastSpells(BattleSide side) const override;
  88. int32_t getEnchanterCounter(BattleSide side) const override;
  89. const IBonusBearer * getBonusBearer() const override;
  90. uint32_t nextUnitId() const override;
  91. int64_t getActualDamage(const DamageRange & damage, int32_t attackerCount, vstd::RNG & rng) const override;
  92. int3 getLocation() const override;
  93. BattleLayout getLayout() const override;
  94. std::vector<SpellID> getUsedSpells(BattleSide side) const override;
  95. //////////////////////////////////////////////////////////////////////////
  96. // IBattleState
  97. void nextRound() override;
  98. void nextTurn(uint32_t unitId, BattleUnitTurnReason reason) override;
  99. void addUnit(uint32_t id, const JsonNode & data) override;
  100. void moveUnit(uint32_t id, const BattleHex & destination) override;
  101. void setUnitState(uint32_t id, const JsonNode & data, int64_t healthDelta) override;
  102. void removeUnit(uint32_t id) override;
  103. void updateUnit(uint32_t id, const JsonNode & data) override;
  104. void addUnitBonus(uint32_t id, const std::vector<Bonus> & bonus) override;
  105. void updateUnitBonus(uint32_t id, const std::vector<Bonus> & bonus) override;
  106. void removeUnitBonus(uint32_t id, const std::vector<Bonus> & bonus) override;
  107. void setWallState(EWallPart partOfWall, EWallState state) override;
  108. void addObstacle(const ObstacleChanges & changes) override;
  109. void updateObstacle(const ObstacleChanges& changes) override;
  110. void removeObstacle(uint32_t id) override;
  111. static void addOrUpdateUnitBonus(CStack * sta, const Bonus & value, bool forceAdd);
  112. //////////////////////////////////////////////////////////////////////////
  113. CStack * getStack(int stackID, bool onlyAlive = true);
  114. using CBattleInfoEssentials::battleGetArmyObject;
  115. CArmedInstance * battleGetArmyObject(BattleSide side) const;
  116. using CBattleInfoEssentials::battleGetFightingHero;
  117. CGHeroInstance * battleGetFightingHero(BattleSide side) const;
  118. void generateNewStack(uint32_t id, const CStackInstance & base, BattleSide side, const SlotID & slot, const BattleHex & position);
  119. void generateNewStack(uint32_t id, const CStackBasicDescriptor & base, BattleSide side, const SlotID & slot, const BattleHex & position);
  120. const SideInBattle & getSide(BattleSide side) const;
  121. SideInBattle & getSide(BattleSide side);
  122. const CGHeroInstance * getHero(const PlayerColor & player) const; //returns fighting hero that belongs to given player
  123. void localInit();
  124. static std::unique_ptr<BattleInfo> setupBattle(IGameInfoCallback *cb, const int3 & tile, TerrainId, const BattleField & battlefieldType, BattleSideArray<const CArmedInstance *> armies, BattleSideArray<const CGHeroInstance *> heroes, const BattleLayout & layout, const CGTownInstance * town);
  125. BattleSide whatSide(const PlayerColor & player) const;
  126. protected:
  127. #if SCRIPTING_ENABLED
  128. scripting::Pool * getContextPool() const override;
  129. #endif
  130. };
  131. class DLL_LINKAGE CMP_stack
  132. {
  133. int phase; //rules of which phase will be used
  134. int turn;
  135. BattleSide side;
  136. public:
  137. bool operator()(const battle::Unit * a, const battle::Unit * b) const;
  138. CMP_stack(int Phase = 1, int Turn = 0, BattleSide Side = BattleSide::ATTACKER);
  139. };
  140. VCMI_LIB_NAMESPACE_END