CStack.cpp 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435
  1. /*
  2. * CStack.cpp, 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. #include "StdInc.h"
  11. #include "CStack.h"
  12. #include <vstd/RNG.h>
  13. #include <vcmi/Entity.h>
  14. #include <vcmi/ServerCallback.h>
  15. #include "texts/CGeneralTextHandler.h"
  16. #include "battle/BattleInfo.h"
  17. #include "spells/CSpellHandler.h"
  18. #include "networkPacks/PacksForClientBattle.h"
  19. VCMI_LIB_NAMESPACE_BEGIN
  20. ///CStack
  21. CStack::CStack(const CStackInstance * Base, const PlayerColor & O, int I, BattleSide Side, const SlotID & S):
  22. CBonusSystemNode(STACK_BATTLE),
  23. base(Base),
  24. ID(I),
  25. typeID(Base->getId()),
  26. baseAmount(Base->count),
  27. owner(O),
  28. slot(S),
  29. side(Side)
  30. {
  31. health.init(); //???
  32. doubleWideCached = battle::CUnitState::doubleWide();
  33. }
  34. CStack::CStack():
  35. CBonusSystemNode(STACK_BATTLE),
  36. owner(PlayerColor::NEUTRAL),
  37. slot(SlotID(255)),
  38. initialPosition(BattleHex())
  39. {
  40. }
  41. CStack::CStack(const CStackBasicDescriptor * stack, const PlayerColor & O, int I, BattleSide Side, const SlotID & S):
  42. CBonusSystemNode(STACK_BATTLE),
  43. ID(I),
  44. typeID(stack->getId()),
  45. baseAmount(stack->count),
  46. owner(O),
  47. slot(S),
  48. side(Side)
  49. {
  50. health.init(); //???
  51. doubleWideCached = battle::CUnitState::doubleWide();
  52. }
  53. void CStack::localInit(BattleInfo * battleInfo)
  54. {
  55. battle = battleInfo;
  56. assert(typeID.hasValue());
  57. exportBonuses();
  58. if(base) //stack originating from "real" stack in garrison -> attach to it
  59. {
  60. attachTo(const_cast<CStackInstance&>(*base));
  61. }
  62. else //attach directly to obj to which stack belongs and creature type
  63. {
  64. CArmedInstance * army = battle->battleGetArmyObject(side);
  65. assert(army);
  66. attachTo(*army);
  67. attachToSource(*typeID.toCreature());
  68. }
  69. nativeTerrain = getNativeTerrain(); //save nativeTerrain in the variable on the battle start to avoid dead lock
  70. CUnitState::localInit(this); //it causes execution of the CStack::isOnNativeTerrain where nativeTerrain will be considered
  71. position = initialPosition;
  72. }
  73. ui32 CStack::level() const
  74. {
  75. if(base)
  76. return base->getLevel(); //creature or commander
  77. else
  78. return std::max(1, static_cast<int>(unitType()->getLevel())); //war machine, clone etc
  79. }
  80. si32 CStack::magicResistance() const
  81. {
  82. auto magicResistance = AFactionMember::magicResistance();
  83. si32 auraBonus = 0;
  84. for(const auto * one : battle->battleAdjacentUnits(this))
  85. {
  86. if(one->unitOwner() == owner)
  87. vstd::amax(auraBonus, one->valOfBonuses(BonusType::SPELL_RESISTANCE_AURA)); //max value
  88. }
  89. vstd::abetween(auraBonus, 0, 100);
  90. vstd::abetween(magicResistance, 0, 100);
  91. float castChance = (100 - magicResistance) * (100 - auraBonus)/100.0;
  92. return static_cast<si32>(100 - castChance);
  93. }
  94. BattleHex::EDir CStack::destShiftDir() const
  95. {
  96. if(doubleWide())
  97. {
  98. if(side == BattleSide::ATTACKER)
  99. return BattleHex::EDir::RIGHT;
  100. else
  101. return BattleHex::EDir::LEFT;
  102. }
  103. else
  104. {
  105. return BattleHex::EDir::NONE;
  106. }
  107. }
  108. std::vector<SpellID> CStack::activeSpells() const
  109. {
  110. std::vector<SpellID> ret;
  111. std::stringstream cachingStr;
  112. cachingStr << "!type_" << vstd::to_underlying(BonusType::NONE) << "source_" << vstd::to_underlying(BonusSource::SPELL_EFFECT);
  113. CSelector selector = Selector::sourceType()(BonusSource::SPELL_EFFECT)
  114. .And(CSelector([](const Bonus * b)->bool
  115. {
  116. return b->type != BonusType::NONE && b->sid.as<SpellID>().toSpell() && !b->sid.as<SpellID>().toSpell()->isAdventure();
  117. }));
  118. TConstBonusListPtr spellEffects = getBonuses(selector, Selector::all, cachingStr.str());
  119. for(const auto & it : *spellEffects)
  120. {
  121. if(!vstd::contains(ret, it->sid.as<SpellID>())) //do not duplicate spells with multiple effects
  122. ret.push_back(it->sid.as<SpellID>());
  123. }
  124. return ret;
  125. }
  126. CStack::~CStack()
  127. {
  128. detachFromAll();
  129. }
  130. const CGHeroInstance * CStack::getMyHero() const
  131. {
  132. if(base)
  133. return dynamic_cast<const CGHeroInstance *>(base->armyObj);
  134. else //we are attached directly?
  135. for(const CBonusSystemNode * n : getParentNodes())
  136. if(n->getNodeType() == HERO)
  137. return dynamic_cast<const CGHeroInstance *>(n);
  138. return nullptr;
  139. }
  140. std::string CStack::nodeName() const
  141. {
  142. std::ostringstream oss;
  143. oss << owner.toString();
  144. oss << " battle stack [" << ID << "]: " << getCount() << " of ";
  145. if(typeID.hasValue())
  146. oss << typeID.toEntity(VLC)->getJsonKey();
  147. else
  148. oss << "[UNDEFINED TYPE]";
  149. oss << " from slot " << slot;
  150. if(base && base->armyObj)
  151. oss << " of armyobj=" << base->armyObj->id.getNum();
  152. return oss.str();
  153. }
  154. void CStack::prepareAttacked(BattleStackAttacked & bsa, vstd::RNG & rand) const
  155. {
  156. auto newState = acquireState();
  157. prepareAttacked(bsa, rand, newState);
  158. }
  159. void CStack::prepareAttacked(BattleStackAttacked & bsa, vstd::RNG & rand, const std::shared_ptr<battle::CUnitState> & customState)
  160. {
  161. auto initialCount = customState->getCount();
  162. // compute damage and update bsa.damageAmount
  163. customState->damage(bsa.damageAmount);
  164. bsa.killedAmount = initialCount - customState->getCount();
  165. if(!customState->alive() && customState->isClone())
  166. {
  167. bsa.flags |= BattleStackAttacked::CLONE_KILLED;
  168. }
  169. else if(!customState->alive()) //stack killed
  170. {
  171. bsa.flags |= BattleStackAttacked::KILLED;
  172. auto resurrectValue = customState->valOfBonuses(BonusType::REBIRTH);
  173. if(resurrectValue > 0 && customState->canCast()) //there must be casts left
  174. {
  175. double resurrectFactor = resurrectValue / 100.0;
  176. auto baseAmount = customState->unitBaseAmount();
  177. double resurrectedRaw = baseAmount * resurrectFactor;
  178. auto resurrectedCount = static_cast<int32_t>(floor(resurrectedRaw));
  179. auto resurrectedAdd = static_cast<int32_t>(baseAmount - (resurrectedCount / resurrectFactor));
  180. for(int32_t i = 0; i < resurrectedAdd; i++)
  181. {
  182. if(resurrectValue > rand.nextInt(0, 99))
  183. resurrectedCount += 1;
  184. }
  185. if(customState->hasBonusOfType(BonusType::REBIRTH, BonusCustomSubtype::rebirthSpecial))
  186. {
  187. // resurrect at least one Sacred Phoenix
  188. vstd::amax(resurrectedCount, 1);
  189. }
  190. if(resurrectedCount > 0)
  191. {
  192. customState->casts.use();
  193. bsa.flags |= BattleStackAttacked::REBIRTH;
  194. int64_t toHeal = customState->getMaxHealth() * resurrectedCount;
  195. //TODO: add one-battle rebirth?
  196. customState->heal(toHeal, EHealLevel::RESURRECT, EHealPower::PERMANENT);
  197. customState->counterAttacks.use(customState->counterAttacks.available());
  198. }
  199. }
  200. }
  201. customState->save(bsa.newState.data);
  202. bsa.newState.healthDelta = -bsa.damageAmount;
  203. bsa.newState.id = customState->unitId();
  204. bsa.newState.operation = UnitChanges::EOperation::RESET_STATE;
  205. }
  206. BattleHexArray CStack::meleeAttackHexes(const battle::Unit * attacker, const battle::Unit * defender, BattleHex attackerPos, BattleHex defenderPos)
  207. {
  208. int mask = 0;
  209. BattleHexArray res;
  210. if (!attackerPos.isValid())
  211. attackerPos = attacker->getPosition();
  212. if (!defenderPos.isValid())
  213. defenderPos = defender->getPosition();
  214. BattleHex otherAttackerPos = attackerPos.toInt() + (attacker->unitSide() == BattleSide::ATTACKER ? -1 : 1);
  215. BattleHex otherDefenderPos = defenderPos.toInt() + (defender->unitSide() == BattleSide::ATTACKER ? -1 : 1);
  216. if(BattleHex::mutualPosition(attackerPos, defenderPos) >= 0) //front <=> front
  217. {
  218. if((mask & 1) == 0)
  219. {
  220. mask |= 1;
  221. res.insert(defenderPos);
  222. }
  223. }
  224. if (attacker->doubleWide() //back <=> front
  225. && BattleHex::mutualPosition(otherAttackerPos, defenderPos) >= 0)
  226. {
  227. if((mask & 1) == 0)
  228. {
  229. mask |= 1;
  230. res.insert(defenderPos);
  231. }
  232. }
  233. if (defender->doubleWide()//front <=> back
  234. && BattleHex::mutualPosition(attackerPos, otherDefenderPos) >= 0)
  235. {
  236. if((mask & 2) == 0)
  237. {
  238. mask |= 2;
  239. res.insert(otherDefenderPos);
  240. }
  241. }
  242. if (defender->doubleWide() && attacker->doubleWide()//back <=> back
  243. && BattleHex::mutualPosition(otherAttackerPos, otherDefenderPos) >= 0)
  244. {
  245. if((mask & 2) == 0)
  246. {
  247. mask |= 2;
  248. res.insert(otherDefenderPos);
  249. }
  250. }
  251. return res;
  252. }
  253. bool CStack::isMeleeAttackPossible(const battle::Unit * attacker, const battle::Unit * defender, BattleHex attackerPos, BattleHex defenderPos)
  254. {
  255. if(defender->isInvincible())
  256. return false;
  257. return !meleeAttackHexes(attacker, defender, attackerPos, defenderPos).empty();
  258. }
  259. std::string CStack::getName() const
  260. {
  261. return (getCount() == 1) ? typeID.toEntity(VLC)->getNameSingularTranslated() : typeID.toEntity(VLC)->getNamePluralTranslated(); //War machines can't use base
  262. }
  263. bool CStack::canBeHealed() const
  264. {
  265. return getFirstHPleft() < static_cast<int32_t>(getMaxHealth()) && isValidTarget() && !hasBonusOfType(BonusType::SIEGE_WEAPON);
  266. }
  267. bool CStack::isOnNativeTerrain() const
  268. {
  269. //this code is called from CreatureTerrainLimiter::limit on battle start
  270. auto res = nativeTerrain == ETerrainId::ANY_TERRAIN || nativeTerrain == battle->getTerrainType();
  271. return res;
  272. }
  273. bool CStack::isOnTerrain(TerrainId terrain) const
  274. {
  275. return battle->getTerrainType() == terrain;
  276. }
  277. const CCreature * CStack::unitType() const
  278. {
  279. return typeID.toCreature();
  280. }
  281. int32_t CStack::unitBaseAmount() const
  282. {
  283. return baseAmount;
  284. }
  285. const IBonusBearer* CStack::getBonusBearer() const
  286. {
  287. return this;
  288. }
  289. bool CStack::unitHasAmmoCart(const battle::Unit * unit) const
  290. {
  291. for(const CStack * st : battle->stacks)
  292. {
  293. if(battle->battleMatchOwner(st, unit, true) && st->unitType()->getId() == CreatureID::AMMO_CART)
  294. {
  295. return st->alive();
  296. }
  297. }
  298. //ammo cart works during creature bank battle while not on battlefield
  299. const auto * ownerHero = battle->battleGetOwnerHero(unit);
  300. if(ownerHero && ownerHero->artifactsWorn.find(ArtifactPosition::MACH2) != ownerHero->artifactsWorn.end())
  301. {
  302. if(battle->battleGetOwnerHero(unit)->artifactsWorn.at(ArtifactPosition::MACH2).artifact->getTypeId() == ArtifactID::AMMO_CART)
  303. {
  304. return true;
  305. }
  306. }
  307. return false; //will be always false if trying to examine enemy hero in "special battle"
  308. }
  309. PlayerColor CStack::unitEffectiveOwner(const battle::Unit * unit) const
  310. {
  311. return battle->battleGetOwner(unit);
  312. }
  313. uint32_t CStack::unitId() const
  314. {
  315. return ID;
  316. }
  317. BattleSide CStack::unitSide() const
  318. {
  319. return side;
  320. }
  321. PlayerColor CStack::unitOwner() const
  322. {
  323. return owner;
  324. }
  325. SlotID CStack::unitSlot() const
  326. {
  327. return slot;
  328. }
  329. std::string CStack::getDescription() const
  330. {
  331. return nodeName();
  332. }
  333. void CStack::spendMana(ServerCallback * server, const int spellCost) const
  334. {
  335. if(spellCost != 1)
  336. logGlobal->warn("Unexpected spell cost %d for creature", spellCost);
  337. BattleSetStackProperty ssp;
  338. ssp.battleID = battle->battleID;
  339. ssp.stackID = unitId();
  340. ssp.which = BattleSetStackProperty::CASTS;
  341. ssp.val = -spellCost;
  342. ssp.absolute = false;
  343. server->apply(ssp);
  344. }
  345. void CStack::postDeserialize(const CArmedInstance * army, const SlotID & extSlot)
  346. {
  347. if(extSlot == SlotID::COMMANDER_SLOT_PLACEHOLDER)
  348. {
  349. const auto * hero = dynamic_cast<const CGHeroInstance *>(army);
  350. assert(hero);
  351. base = hero->commander;
  352. }
  353. else if(slot == SlotID::SUMMONED_SLOT_PLACEHOLDER || slot == SlotID::ARROW_TOWERS_SLOT || slot == SlotID::WAR_MACHINES_SLOT)
  354. {
  355. //no external slot possible, so no base stack
  356. base = nullptr;
  357. }
  358. else if(!army || extSlot == SlotID() || !army->hasStackAtSlot(extSlot))
  359. {
  360. base = nullptr;
  361. logGlobal->warn("%s doesn't have a base stack!", typeID.toEntity(VLC)->getNameSingularTranslated());
  362. }
  363. else
  364. {
  365. base = &army->getStack(extSlot);
  366. }
  367. doubleWideCached = battle::CUnitState::doubleWide();
  368. }
  369. VCMI_LIB_NAMESPACE_END