BattleFieldController.cpp 28 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884
  1. /*
  2. * BattleFieldController.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 "BattleFieldController.h"
  12. #include "BattleInterface.h"
  13. #include "BattleWindow.h"
  14. #include "BattleActionsController.h"
  15. #include "BattleInterfaceClasses.h"
  16. #include "BattleEffectsController.h"
  17. #include "BattleSiegeController.h"
  18. #include "BattleStacksController.h"
  19. #include "BattleObstacleController.h"
  20. #include "BattleProjectileController.h"
  21. #include "BattleRenderer.h"
  22. #include "../CGameInfo.h"
  23. #include "../CPlayerInterface.h"
  24. #include "../render/CAnimation.h"
  25. #include "../render/Canvas.h"
  26. #include "../render/IImage.h"
  27. #include "../render/IRenderHandler.h"
  28. #include "../gui/CGuiHandler.h"
  29. #include "../gui/CursorHandler.h"
  30. #include "../adventureMap/CInGameConsole.h"
  31. #include "../client/render/CAnimation.h"
  32. #include "../../CCallback.h"
  33. #include "../../lib/BattleFieldHandler.h"
  34. #include "../../lib/CConfigHandler.h"
  35. #include "../../lib/CStack.h"
  36. #include "../../lib/spells/ISpellMechanics.h"
  37. namespace HexMasks
  38. {
  39. // mask definitions that has set to 1 the edges present in the hex edges highlight image
  40. /*
  41. /\
  42. 0 1
  43. / \
  44. | |
  45. 5 2
  46. | |
  47. \ /
  48. 4 3
  49. \/
  50. */
  51. enum HexEdgeMasks {
  52. empty = 0b000000, // empty used when wanting to keep indexes the same but no highlight should be displayed
  53. topLeft = 0b000001,
  54. topRight = 0b000010,
  55. right = 0b000100,
  56. bottomRight = 0b001000,
  57. bottomLeft = 0b010000,
  58. left = 0b100000,
  59. top = 0b000011,
  60. bottom = 0b011000,
  61. topRightHalfCorner = 0b000110,
  62. bottomRightHalfCorner = 0b001100,
  63. bottomLeftHalfCorner = 0b110000,
  64. topLeftHalfCorner = 0b100001,
  65. rightTopAndBottom = 0b001010, // special case, right half can be drawn instead of only top and bottom
  66. leftTopAndBottom = 0b010001, // special case, left half can be drawn instead of only top and bottom
  67. rightHalf = 0b001110,
  68. leftHalf = 0b110001,
  69. topRightCorner = 0b000111,
  70. bottomRightCorner = 0b011100,
  71. bottomLeftCorner = 0b111000,
  72. topLeftCorner = 0b100011
  73. };
  74. }
  75. static const std::map<int, int> hexEdgeMaskToFrameIndex =
  76. {
  77. { HexMasks::empty, 0 },
  78. { HexMasks::topLeft, 1 },
  79. { HexMasks::topRight, 2 },
  80. { HexMasks::right, 3 },
  81. { HexMasks::bottomRight, 4 },
  82. { HexMasks::bottomLeft, 5 },
  83. { HexMasks::left, 6 },
  84. { HexMasks::top, 7 },
  85. { HexMasks::bottom, 8 },
  86. { HexMasks::topRightHalfCorner, 9 },
  87. { HexMasks::bottomRightHalfCorner, 10 },
  88. { HexMasks::bottomLeftHalfCorner, 11 },
  89. { HexMasks::topLeftHalfCorner, 12 },
  90. { HexMasks::rightTopAndBottom, 13 },
  91. { HexMasks::leftTopAndBottom, 14 },
  92. { HexMasks::rightHalf, 13 },
  93. { HexMasks::leftHalf, 14 },
  94. { HexMasks::topRightCorner, 15 },
  95. { HexMasks::bottomRightCorner, 16 },
  96. { HexMasks::bottomLeftCorner, 17 },
  97. { HexMasks::topLeftCorner, 18 }
  98. };
  99. BattleFieldController::BattleFieldController(BattleInterface & owner):
  100. owner(owner)
  101. {
  102. OBJECT_CONSTRUCTION;
  103. //preparing cells and hexes
  104. cellBorder = GH.renderHandler().loadImage(ImagePath::builtin("CCELLGRD.BMP"), EImageBlitMode::COLORKEY);
  105. cellShade = GH.renderHandler().loadImage(ImagePath::builtin("CCELLSHD.BMP"), EImageBlitMode::SIMPLE);
  106. cellUnitMovementHighlight = GH.renderHandler().loadImage(ImagePath::builtin("UnitMovementHighlight.PNG"), EImageBlitMode::COLORKEY);
  107. cellUnitMaxMovementHighlight = GH.renderHandler().loadImage(ImagePath::builtin("UnitMaxMovementHighlight.PNG"), EImageBlitMode::COLORKEY);
  108. attackCursors = GH.renderHandler().loadAnimation(AnimationPath::builtin("CRCOMBAT"), EImageBlitMode::COLORKEY);
  109. spellCursors = GH.renderHandler().loadAnimation(AnimationPath::builtin("CRSPELL"), EImageBlitMode::COLORKEY);
  110. rangedFullDamageLimitImages = GH.renderHandler().loadAnimation(AnimationPath::builtin("battle/rangeHighlights/rangeHighlightsGreen.json"), EImageBlitMode::COLORKEY);
  111. shootingRangeLimitImages = GH.renderHandler().loadAnimation(AnimationPath::builtin("battle/rangeHighlights/rangeHighlightsRed.json"), EImageBlitMode::COLORKEY);
  112. if(!owner.siegeController)
  113. {
  114. auto bfieldType = owner.getBattle()->battleGetBattlefieldType();
  115. if(bfieldType == BattleField::NONE)
  116. logGlobal->error("Invalid battlefield returned for current battle");
  117. else
  118. background = GH.renderHandler().loadImage(bfieldType.getInfo()->graphics, EImageBlitMode::OPAQUE);
  119. }
  120. else
  121. {
  122. auto backgroundName = owner.siegeController->getBattleBackgroundName();
  123. background = GH.renderHandler().loadImage(backgroundName, EImageBlitMode::OPAQUE);
  124. }
  125. pos.w = background->width();
  126. pos.h = background->height();
  127. backgroundWithHexes = std::make_unique<Canvas>(Point(background->width(), background->height()), CanvasScalingPolicy::AUTO);
  128. updateAccessibleHexes();
  129. addUsedEvents(LCLICK | SHOW_POPUP | MOVE | TIME | GESTURE);
  130. }
  131. void BattleFieldController::activate()
  132. {
  133. LOCPLINT->cingconsole->pos = this->pos;
  134. CIntObject::activate();
  135. }
  136. void BattleFieldController::createHeroes()
  137. {
  138. OBJECT_CONSTRUCTION;
  139. // create heroes as part of our constructor for correct positioning inside battlefield
  140. if(owner.attackingHeroInstance)
  141. owner.attackingHero = std::make_shared<BattleHero>(owner, owner.attackingHeroInstance, false);
  142. if(owner.defendingHeroInstance)
  143. owner.defendingHero = std::make_shared<BattleHero>(owner, owner.defendingHeroInstance, true);
  144. }
  145. void BattleFieldController::gesture(bool on, const Point & initialPosition, const Point & finalPosition)
  146. {
  147. if (!on && pos.isInside(finalPosition))
  148. clickPressed(finalPosition);
  149. }
  150. void BattleFieldController::gesturePanning(const Point & initialPosition, const Point & currentPosition, const Point & lastUpdateDistance)
  151. {
  152. Point distance = currentPosition - initialPosition;
  153. if (distance.length() < settings["battle"]["swipeAttackDistance"].Float())
  154. hoveredHex = getHexAtPosition(initialPosition);
  155. else
  156. hoveredHex = BattleHex::INVALID;
  157. currentAttackOriginPoint = currentPosition;
  158. if (pos.isInside(initialPosition))
  159. owner.actionsController->onHexHovered(getHoveredHex());
  160. }
  161. void BattleFieldController::mouseMoved(const Point & cursorPosition, const Point & lastUpdateDistance)
  162. {
  163. hoveredHex = getHexAtPosition(cursorPosition);
  164. currentAttackOriginPoint = cursorPosition;
  165. if (pos.isInside(cursorPosition))
  166. owner.actionsController->onHexHovered(getHoveredHex());
  167. else
  168. owner.actionsController->onHoverEnded();
  169. }
  170. void BattleFieldController::clickPressed(const Point & cursorPosition)
  171. {
  172. BattleHex selectedHex = getHoveredHex();
  173. if (selectedHex != BattleHex::INVALID)
  174. owner.actionsController->onHexLeftClicked(selectedHex);
  175. }
  176. void BattleFieldController::showPopupWindow(const Point & cursorPosition)
  177. {
  178. BattleHex selectedHex = getHoveredHex();
  179. if (selectedHex != BattleHex::INVALID)
  180. owner.actionsController->onHexRightClicked(selectedHex);
  181. }
  182. void BattleFieldController::renderBattlefield(Canvas & canvas)
  183. {
  184. Canvas clippedCanvas(canvas, pos);
  185. showBackground(clippedCanvas);
  186. BattleRenderer renderer(owner);
  187. renderer.execute(clippedCanvas);
  188. owner.projectilesController->render(clippedCanvas);
  189. }
  190. void BattleFieldController::showBackground(Canvas & canvas)
  191. {
  192. if (owner.stacksController->getActiveStack() != nullptr )
  193. showBackgroundImageWithHexes(canvas);
  194. else
  195. showBackgroundImage(canvas);
  196. showHighlightedHexes(canvas);
  197. }
  198. void BattleFieldController::showBackgroundImage(Canvas & canvas)
  199. {
  200. canvas.draw(background, Point(0, 0));
  201. owner.obstacleController->showAbsoluteObstacles(canvas);
  202. if ( owner.siegeController )
  203. owner.siegeController->showAbsoluteObstacles(canvas);
  204. if (settings["battle"]["cellBorders"].Bool())
  205. {
  206. for (int i=0; i<GameConstants::BFIELD_SIZE; ++i)
  207. {
  208. if ( i % GameConstants::BFIELD_WIDTH == 0)
  209. continue;
  210. if ( i % GameConstants::BFIELD_WIDTH == GameConstants::BFIELD_WIDTH - 1)
  211. continue;
  212. canvas.draw(cellBorder, hexPositionLocal(i).topLeft());
  213. }
  214. }
  215. }
  216. void BattleFieldController::showBackgroundImageWithHexes(Canvas & canvas)
  217. {
  218. canvas.draw(*backgroundWithHexes, Point(0, 0));
  219. }
  220. void BattleFieldController::redrawBackgroundWithHexes()
  221. {
  222. const CStack *activeStack = owner.stacksController->getActiveStack();
  223. BattleHexArray attackableHexes;
  224. if(activeStack)
  225. occupiableHexes = owner.getBattle()->battleGetAvailableHexes(activeStack, false, true, &attackableHexes);
  226. // prepare background graphic with hexes and shaded hexes
  227. backgroundWithHexes->draw(background, Point(0,0));
  228. owner.obstacleController->showAbsoluteObstacles(*backgroundWithHexes);
  229. if(owner.siegeController)
  230. owner.siegeController->showAbsoluteObstacles(*backgroundWithHexes);
  231. // show shaded hexes for active's stack valid movement and the hexes that it can attack
  232. if(settings["battle"]["stackRange"].Bool())
  233. {
  234. BattleHexArray hexesToShade = occupiableHexes;
  235. hexesToShade.insert(attackableHexes);
  236. for(const BattleHex & hex : hexesToShade)
  237. {
  238. showHighlightedHex(*backgroundWithHexes, cellShade, hex, false);
  239. }
  240. }
  241. // draw cell borders
  242. if(settings["battle"]["cellBorders"].Bool())
  243. {
  244. for(int i=0; i<GameConstants::BFIELD_SIZE; ++i)
  245. {
  246. if(i % GameConstants::BFIELD_WIDTH == 0)
  247. continue;
  248. if(i % GameConstants::BFIELD_WIDTH == GameConstants::BFIELD_WIDTH - 1)
  249. continue;
  250. backgroundWithHexes->draw(cellBorder, hexPositionLocal(i).topLeft());
  251. }
  252. }
  253. }
  254. void BattleFieldController::showHighlightedHex(Canvas & canvas, std::shared_ptr<IImage> highlight, const BattleHex & hex, bool darkBorder)
  255. {
  256. Point hexPos = hexPositionLocal(hex).topLeft();
  257. canvas.draw(highlight, hexPos);
  258. if(!darkBorder && settings["battle"]["cellBorders"].Bool())
  259. canvas.draw(cellBorder, hexPos);
  260. }
  261. BattleHexArray BattleFieldController::getHighlightedHexesForActiveStack()
  262. {
  263. if(!owner.stacksController->getActiveStack())
  264. return BattleHexArray();
  265. if(!settings["battle"]["stackRange"].Bool())
  266. return BattleHexArray();
  267. auto hoveredHex = getHoveredHex();
  268. return owner.getBattle()->battleGetAttackedHexes(owner.stacksController->getActiveStack(), hoveredHex);
  269. }
  270. BattleHexArray BattleFieldController::getMovementRangeForHoveredStack()
  271. {
  272. if (!owner.stacksController->getActiveStack())
  273. return BattleHexArray();
  274. if (!settings["battle"]["movementHighlightOnHover"].Bool() && !GH.isKeyboardShiftDown())
  275. return BattleHexArray();
  276. auto hoveredStack = getHoveredStack();
  277. if(hoveredStack)
  278. return owner.getBattle()->battleGetAvailableHexes(hoveredStack, true, true, nullptr);
  279. else
  280. return BattleHexArray();
  281. }
  282. BattleHexArray BattleFieldController::getHighlightedHexesForSpellRange()
  283. {
  284. BattleHexArray result;
  285. auto hoveredHex = getHoveredHex();
  286. const spells::Caster *caster = nullptr;
  287. const CSpell *spell = nullptr;
  288. spells::Mode mode = owner.actionsController->getCurrentCastMode();
  289. spell = owner.actionsController->getCurrentSpell(hoveredHex);
  290. caster = owner.actionsController->getCurrentSpellcaster();
  291. if(caster && spell) //when casting spell
  292. {
  293. // printing shaded hex(es)
  294. spells::BattleCast event(owner.getBattle().get(), caster, mode, spell);
  295. auto shadedHexes = spell->battleMechanics(&event)->rangeInHexes(hoveredHex);
  296. for(const BattleHex & shadedHex : shadedHexes)
  297. {
  298. if((shadedHex.getX() != 0) && (shadedHex.getX() != GameConstants::BFIELD_WIDTH - 1))
  299. result.insert(shadedHex);
  300. }
  301. }
  302. return result;
  303. }
  304. BattleHexArray BattleFieldController::getHighlightedHexesForMovementTarget()
  305. {
  306. const CStack * stack = owner.stacksController->getActiveStack();
  307. auto hoveredHex = getHoveredHex();
  308. if(!stack)
  309. return {};
  310. BattleHexArray availableHexes = owner.getBattle()->battleGetAvailableHexes(stack, false, false, nullptr);
  311. auto hoveredStack = owner.getBattle()->battleGetStackByPos(hoveredHex, true);
  312. if(owner.getBattle()->battleCanAttack(stack, hoveredStack, hoveredHex))
  313. {
  314. if(isTileAttackable(hoveredHex))
  315. {
  316. BattleHex attackFromHex = fromWhichHexAttack(hoveredHex);
  317. if(stack->doubleWide())
  318. return {attackFromHex, stack->occupiedHex(attackFromHex)};
  319. else
  320. return {attackFromHex};
  321. }
  322. }
  323. if(availableHexes.contains(hoveredHex))
  324. {
  325. if(stack->doubleWide())
  326. return {hoveredHex, stack->occupiedHex(hoveredHex)};
  327. else
  328. return {hoveredHex};
  329. }
  330. if(stack->doubleWide())
  331. {
  332. for(const auto & hex : availableHexes)
  333. {
  334. if(stack->occupiedHex(hex) == hoveredHex)
  335. return {hoveredHex, hex};
  336. }
  337. }
  338. return {};
  339. }
  340. // Range limit highlight helpers
  341. BattleHexArray BattleFieldController::getRangeHexes(const BattleHex & sourceHex, uint8_t distance) const
  342. {
  343. BattleHexArray rangeHexes;
  344. if (!settings["battle"]["rangeLimitHighlightOnHover"].Bool() && !GH.isKeyboardShiftDown())
  345. return rangeHexes;
  346. // get only battlefield hexes that are within the given distance
  347. for(auto i = 0; i < GameConstants::BFIELD_SIZE; i++)
  348. {
  349. BattleHex hex(i);
  350. if(hex.isAvailable() && BattleHex::getDistance(sourceHex, hex) <= distance)
  351. rangeHexes.insert(hex);
  352. }
  353. return rangeHexes;
  354. }
  355. BattleHexArray BattleFieldController::getRangeLimitHexes(const BattleHex & sourceHex, const BattleHexArray & rangeHexes, uint8_t distanceToLimit) const
  356. {
  357. BattleHexArray rangeLimitHexes;
  358. // from range hexes get only the ones at the limit
  359. for(auto & hex : rangeHexes)
  360. {
  361. if(BattleHex::getDistance(sourceHex, hex) == distanceToLimit)
  362. rangeLimitHexes.insert(hex);
  363. }
  364. return rangeLimitHexes;
  365. }
  366. bool BattleFieldController::isHexInRangeLimit(const BattleHex & hex, const BattleHexArray & rangeLimitHexes, int * hexIndexInRangeLimit) const
  367. {
  368. bool hexInRangeLimit = false;
  369. if(!rangeLimitHexes.empty())
  370. {
  371. auto pos = std::find(rangeLimitHexes.begin(), rangeLimitHexes.end(), hex);
  372. *hexIndexInRangeLimit = std::distance(rangeLimitHexes.begin(), pos);
  373. hexInRangeLimit = pos != rangeLimitHexes.end();
  374. }
  375. return hexInRangeLimit;
  376. }
  377. std::vector<std::vector<BattleHex::EDir>> BattleFieldController::getOutsideNeighbourDirectionsForLimitHexes(
  378. const BattleHexArray & wholeRangeHexes, const BattleHexArray & rangeLimitHexes) const
  379. {
  380. std::vector<std::vector<BattleHex::EDir>> output;
  381. if(wholeRangeHexes.empty())
  382. return output;
  383. for(const auto & hex : rangeLimitHexes)
  384. {
  385. // get all neighbours and their directions
  386. const BattleHexArray & neighbouringTiles = hex.getAllNeighbouringTiles();
  387. std::vector<BattleHex::EDir> outsideNeighbourDirections;
  388. // for each neighbour add to output only the valid ones and only that are not found in range Hexes
  389. for(auto direction = 0; direction < 6; direction++)
  390. {
  391. if(!neighbouringTiles[direction].isAvailable())
  392. continue;
  393. if(!wholeRangeHexes.contains(neighbouringTiles[direction]))
  394. outsideNeighbourDirections.push_back(BattleHex::EDir(direction)); // push direction
  395. }
  396. output.push_back(outsideNeighbourDirections);
  397. }
  398. return output;
  399. }
  400. std::vector<std::shared_ptr<IImage>> BattleFieldController::calculateRangeLimitHighlightImages(std::vector<std::vector<BattleHex::EDir>> hexesNeighbourDirections, std::shared_ptr<CAnimation> limitImages)
  401. {
  402. std::vector<std::shared_ptr<IImage>> output; // if no image is to be shown an empty image is still added to help with traverssing the range
  403. if(hexesNeighbourDirections.empty())
  404. return output;
  405. for(auto & directions : hexesNeighbourDirections)
  406. {
  407. std::bitset<6> mask;
  408. // convert directions to mask
  409. for(auto direction : directions)
  410. mask.set(direction);
  411. uint8_t imageKey = static_cast<uint8_t>(mask.to_ulong());
  412. output.push_back(limitImages->getImage(hexEdgeMaskToFrameIndex.at(imageKey)));
  413. }
  414. return output;
  415. }
  416. void BattleFieldController::calculateRangeLimitAndHighlightImages(uint8_t distance, std::shared_ptr<CAnimation> rangeLimitImages, BattleHexArray & rangeLimitHexes, std::vector<std::shared_ptr<IImage>> & rangeLimitHexesHighlights)
  417. {
  418. BattleHexArray rangeHexes = getRangeHexes(hoveredHex, distance);
  419. rangeLimitHexes = getRangeLimitHexes(hoveredHex, rangeHexes, distance);
  420. std::vector<std::vector<BattleHex::EDir>> rangeLimitNeighbourDirections = getOutsideNeighbourDirectionsForLimitHexes(rangeHexes, rangeLimitHexes);
  421. rangeLimitHexesHighlights = calculateRangeLimitHighlightImages(rangeLimitNeighbourDirections, rangeLimitImages);
  422. }
  423. void BattleFieldController::showHighlightedHexes(Canvas & canvas)
  424. {
  425. BattleHexArray rangedFullDamageLimitHexes;
  426. BattleHexArray shootingRangeLimitHexes;
  427. std::vector<std::shared_ptr<IImage>> rangedFullDamageLimitHexesHighlights;
  428. std::vector<std::shared_ptr<IImage>> shootingRangeLimitHexesHighlights;
  429. BattleHexArray hoveredStackMovementRangeHexes = getMovementRangeForHoveredStack();
  430. BattleHexArray hoveredSpellHexes = getHighlightedHexesForSpellRange();
  431. BattleHexArray hoveredMoveHexes = getHighlightedHexesForMovementTarget();
  432. BattleHex hoveredHex = getHoveredHex();
  433. BattleHexArray hoveredMouseHex = hoveredHex.isAvailable() ? BattleHexArray({ hoveredHex }) : BattleHexArray();
  434. const CStack * hoveredStack = getHoveredStack();
  435. if(!hoveredStack && hoveredHex == BattleHex::INVALID)
  436. return;
  437. // skip range limit calculations if unit hovered is not a shooter
  438. if(hoveredStack && hoveredStack->isShooter())
  439. {
  440. // calculate array with highlight images for ranged full damage limit
  441. auto rangedFullDamageDistance = hoveredStack->getRangedFullDamageDistance();
  442. calculateRangeLimitAndHighlightImages(rangedFullDamageDistance, rangedFullDamageLimitImages, rangedFullDamageLimitHexes, rangedFullDamageLimitHexesHighlights);
  443. // calculate array with highlight images for shooting range limit
  444. auto shootingRangeDistance = hoveredStack->getShootingRangeDistance();
  445. calculateRangeLimitAndHighlightImages(shootingRangeDistance, shootingRangeLimitImages, shootingRangeLimitHexes, shootingRangeLimitHexesHighlights);
  446. }
  447. bool useSpellRangeForMouse = hoveredHex != BattleHex::INVALID
  448. && (owner.actionsController->currentActionSpellcasting(getHoveredHex())
  449. || owner.actionsController->creatureSpellcastingModeActive()); //at least shooting with SPELL_LIKE_ATTACK can operate in spellcasting mode without being actual spellcast
  450. bool useMoveRangeForMouse = !hoveredMoveHexes.empty() || !settings["battle"]["mouseShadow"].Bool();
  451. const auto & hoveredMouseHexes = useSpellRangeForMouse ? hoveredSpellHexes : ( useMoveRangeForMouse ? hoveredMoveHexes : hoveredMouseHex);
  452. for(int hex = 0; hex < GameConstants::BFIELD_SIZE; ++hex)
  453. {
  454. bool stackMovement = hoveredStackMovementRangeHexes.contains(hex);
  455. bool mouse = hoveredMouseHexes.contains(hex);
  456. // calculate if hex is Ranged Full Damage Limit and its position in highlight array
  457. int hexIndexInRangedFullDamageLimit = 0;
  458. bool hexInRangedFullDamageLimit = isHexInRangeLimit(hex, rangedFullDamageLimitHexes, &hexIndexInRangedFullDamageLimit);
  459. // calculate if hex is Shooting Range Limit and its position in highlight array
  460. int hexIndexInShootingRangeLimit = 0;
  461. bool hexInShootingRangeLimit = isHexInRangeLimit(hex, shootingRangeLimitHexes, &hexIndexInShootingRangeLimit);
  462. if(stackMovement && mouse) // area where hovered stackMovement can move shown with highlight. Because also affected by mouse cursor, shade as well
  463. {
  464. showHighlightedHex(canvas, cellUnitMovementHighlight, hex, false);
  465. showHighlightedHex(canvas, cellShade, hex, true);
  466. }
  467. if(!stackMovement && mouse) // hexes affected only at mouse cursor shown as shaded
  468. {
  469. showHighlightedHex(canvas, cellShade, hex, true);
  470. }
  471. if(stackMovement && !mouse) // hexes where hovered stackMovement can move shown with highlight
  472. {
  473. showHighlightedHex(canvas, cellUnitMovementHighlight, hex, false);
  474. }
  475. if(hexInRangedFullDamageLimit)
  476. {
  477. showHighlightedHex(canvas, rangedFullDamageLimitHexesHighlights[hexIndexInRangedFullDamageLimit], hex, false);
  478. }
  479. if(hexInShootingRangeLimit)
  480. {
  481. showHighlightedHex(canvas, shootingRangeLimitHexesHighlights[hexIndexInShootingRangeLimit], hex, false);
  482. }
  483. }
  484. }
  485. Rect BattleFieldController::hexPositionLocal(const BattleHex & hex) const
  486. {
  487. int x = 14 + ((hex.getY())%2==0 ? 22 : 0) + 44*hex.getX();
  488. int y = 86 + 42 *hex.getY();
  489. int w = cellShade->width();
  490. int h = cellShade->height();
  491. return Rect(x, y, w, h);
  492. }
  493. Rect BattleFieldController::hexPositionAbsolute(const BattleHex & hex) const
  494. {
  495. return hexPositionLocal(hex) + pos.topLeft();
  496. }
  497. bool BattleFieldController::isPixelInHex(Point const & position)
  498. {
  499. return !cellShade->isTransparent(position);
  500. }
  501. BattleHex BattleFieldController::getHoveredHex()
  502. {
  503. return hoveredHex;
  504. }
  505. const CStack* BattleFieldController::getHoveredStack()
  506. {
  507. auto hoveredHex = getHoveredHex();
  508. const CStack* hoveredStack = owner.getBattle()->battleGetStackByPos(hoveredHex, true);
  509. if(owner.windowObject->getQueueHoveredUnitId().has_value())
  510. {
  511. auto stacks = owner.getBattle()->battleGetAllStacks();
  512. for(const CStack * stack : stacks)
  513. if(stack->unitId() == *owner.windowObject->getQueueHoveredUnitId())
  514. hoveredStack = stack;
  515. }
  516. return hoveredStack;
  517. }
  518. BattleHex BattleFieldController::getHexAtPosition(Point hoverPos)
  519. {
  520. if (owner.attackingHero)
  521. {
  522. if (owner.attackingHero->pos.isInside(hoverPos))
  523. return BattleHex::HERO_ATTACKER;
  524. }
  525. if (owner.defendingHero)
  526. {
  527. if (owner.attackingHero->pos.isInside(hoverPos))
  528. return BattleHex::HERO_DEFENDER;
  529. }
  530. for (int h = 0; h < GameConstants::BFIELD_SIZE; ++h)
  531. {
  532. Rect hexPosition = hexPositionAbsolute(h);
  533. if (!hexPosition.isInside(hoverPos))
  534. continue;
  535. if (isPixelInHex(hoverPos - hexPosition.topLeft()))
  536. return h;
  537. }
  538. return BattleHex::INVALID;
  539. }
  540. BattleHex::EDir BattleFieldController::selectAttackDirection(const BattleHex & myNumber) const
  541. {
  542. const bool doubleWide = owner.stacksController->getActiveStack()->doubleWide();
  543. const BattleHexArray & neighbours = myNumber.getAllNeighbouringTiles();
  544. // 0 1
  545. // 5 x 2
  546. // 4 3
  547. // if true - our current stack can move into this hex (and attack)
  548. std::array<bool, 8> attackAvailability;
  549. if (doubleWide)
  550. {
  551. // For double-hexes we need to ensure that both hexes needed for this direction are occupyable:
  552. // | -0- | -1- | -2- | -3- | -4- | -5- | -6- | -7-
  553. // | o o - | - o o | - - | - - | - - | - - | o o | - -
  554. // | - x - | - x - | - x o o| - x - | - x - |o o x - | - x - | - x -
  555. // | - - | - - | - - | - o o | o o - | - - | - - | o o
  556. for (size_t i : { 1, 2, 3})
  557. {
  558. BattleHex target = neighbours[i].cloneInDirection(BattleHex::RIGHT, false);
  559. attackAvailability[i] = neighbours[i].isValid() && occupiableHexes.contains(neighbours[i]) && target.isValid() && occupiableHexes.contains(target);
  560. }
  561. for (size_t i : { 4, 5, 0})
  562. {
  563. BattleHex target = neighbours[i].cloneInDirection(BattleHex::LEFT, false);
  564. attackAvailability[i] = neighbours[i].isValid() && occupiableHexes.contains(neighbours[i]) && target.isValid() && occupiableHexes.contains(target);
  565. }
  566. attackAvailability[6] = neighbours[0].isValid() && neighbours[1].isValid() && occupiableHexes.contains(neighbours[0]) && occupiableHexes.contains(neighbours[1]);
  567. attackAvailability[7] = neighbours[3].isValid() && neighbours[4].isValid() && occupiableHexes.contains(neighbours[3]) && occupiableHexes.contains(neighbours[4]);
  568. }
  569. else
  570. {
  571. for (size_t i = 0; i < 6; ++i)
  572. attackAvailability[i] = neighbours[i].isValid() && occupiableHexes.contains(neighbours[i]);
  573. attackAvailability[6] = false;
  574. attackAvailability[7] = false;
  575. }
  576. // Zero available tiles to attack from
  577. if ( vstd::find(attackAvailability, true) == attackAvailability.end())
  578. {
  579. logGlobal->error("Error: cannot find a hex to attack hex %d from!", myNumber);
  580. return BattleHex::NONE;
  581. }
  582. // For each valid direction, select position to test against
  583. std::array<Point, 8> testPoint;
  584. for (size_t i = 0; i < 6; ++i)
  585. if (attackAvailability[i])
  586. testPoint[i] = hexPositionAbsolute(neighbours[i]).center();
  587. // For bottom/top directions select central point, but move it a bit away from true center to reduce zones allocated to them
  588. if (attackAvailability[6])
  589. testPoint[6] = (hexPositionAbsolute(neighbours[0]).center() + hexPositionAbsolute(neighbours[1]).center()) / 2 + Point(0, -5);
  590. if (attackAvailability[7])
  591. testPoint[7] = (hexPositionAbsolute(neighbours[3]).center() + hexPositionAbsolute(neighbours[4]).center()) / 2 + Point(0, 5);
  592. // Compute distance between tested position & cursor position and pick nearest
  593. std::array<int, 8> distance2;
  594. for (size_t i = 0; i < 8; ++i)
  595. if (attackAvailability[i])
  596. distance2[i] = (testPoint[i].y - currentAttackOriginPoint.y)*(testPoint[i].y - currentAttackOriginPoint.y) + (testPoint[i].x - currentAttackOriginPoint.x)*(testPoint[i].x - currentAttackOriginPoint.x);
  597. size_t nearest = -1;
  598. for (size_t i = 0; i < 8; ++i)
  599. if (attackAvailability[i] && (nearest == -1 || distance2[i] < distance2[nearest]) )
  600. nearest = i;
  601. assert(nearest != -1);
  602. return BattleHex::EDir(nearest);
  603. }
  604. BattleHex BattleFieldController::fromWhichHexAttack(const BattleHex & attackTarget)
  605. {
  606. BattleHex::EDir direction = selectAttackDirection(attackTarget);
  607. const CStack * attacker = owner.stacksController->getActiveStack();
  608. assert(direction != BattleHex::NONE);
  609. assert(attacker);
  610. if (!attacker->doubleWide())
  611. {
  612. assert(direction != BattleHex::BOTTOM);
  613. assert(direction != BattleHex::TOP);
  614. return attackTarget.cloneInDirection(direction);
  615. }
  616. else
  617. {
  618. // We need to find position of right hex of double-hex creature (or left for defending side)
  619. // | TOP_LEFT |TOP_RIGHT | RIGHT |BOTTOM_RIGHT|BOTTOM_LEFT| LEFT | TOP |BOTTOM
  620. // | o o - | - o o | - - | - - | - - | - - | o o | - -
  621. // | - x - | - x - | - x o o| - x - | - x - |o o x - | - x - | - x -
  622. // | - - | - - | - - | - o o | o o - | - - | - - | o o
  623. switch (direction)
  624. {
  625. case BattleHex::TOP_LEFT:
  626. case BattleHex::LEFT:
  627. case BattleHex::BOTTOM_LEFT:
  628. {
  629. if ( attacker->unitSide() == BattleSide::ATTACKER )
  630. return attackTarget.cloneInDirection(direction);
  631. else
  632. return attackTarget.cloneInDirection(direction).cloneInDirection(BattleHex::LEFT);
  633. }
  634. case BattleHex::TOP_RIGHT:
  635. case BattleHex::RIGHT:
  636. case BattleHex::BOTTOM_RIGHT:
  637. {
  638. if ( attacker->unitSide() == BattleSide::ATTACKER )
  639. return attackTarget.cloneInDirection(direction).cloneInDirection(BattleHex::RIGHT);
  640. else
  641. return attackTarget.cloneInDirection(direction);
  642. }
  643. case BattleHex::TOP:
  644. {
  645. if ( attacker->unitSide() == BattleSide::ATTACKER )
  646. return attackTarget.cloneInDirection(BattleHex::TOP_RIGHT);
  647. else
  648. return attackTarget.cloneInDirection(BattleHex::TOP_LEFT);
  649. }
  650. case BattleHex::BOTTOM:
  651. {
  652. if ( attacker->unitSide() == BattleSide::ATTACKER )
  653. return attackTarget.cloneInDirection(BattleHex::BOTTOM_RIGHT);
  654. else
  655. return attackTarget.cloneInDirection(BattleHex::BOTTOM_LEFT);
  656. }
  657. default:
  658. assert(0);
  659. return BattleHex::INVALID;
  660. }
  661. }
  662. }
  663. bool BattleFieldController::isTileAttackable(const BattleHex & number) const
  664. {
  665. if(!number.isValid())
  666. return false;
  667. for (auto & elem : occupiableHexes)
  668. {
  669. if (BattleHex::mutualPosition(elem, number) != -1 || elem == number)
  670. return true;
  671. }
  672. return false;
  673. }
  674. void BattleFieldController::updateAccessibleHexes()
  675. {
  676. auto accessibility = owner.getBattle()->getAccessibility();
  677. for(int i = 0; i < accessibility.size(); i++)
  678. stackCountOutsideHexes[i] = (accessibility[i] == EAccessibility::ACCESSIBLE || (accessibility[i] == EAccessibility::SIDE_COLUMN));
  679. }
  680. bool BattleFieldController::stackCountOutsideHex(const BattleHex & number) const
  681. {
  682. return stackCountOutsideHexes[number.toInt()];
  683. }
  684. void BattleFieldController::showAll(Canvas & to)
  685. {
  686. show(to);
  687. }
  688. void BattleFieldController::tick(uint32_t msPassed)
  689. {
  690. updateAccessibleHexes();
  691. owner.stacksController->tick(msPassed);
  692. owner.obstacleController->tick(msPassed);
  693. owner.projectilesController->tick(msPassed);
  694. }
  695. void BattleFieldController::show(Canvas & to)
  696. {
  697. CanvasClipRectGuard guard(to, pos);
  698. renderBattlefield(to);
  699. if (isActive() && isGesturing() && getHoveredHex() != BattleHex::INVALID)
  700. {
  701. auto combatCursorIndex = CCS->curh->get<Cursor::Combat>();
  702. if (combatCursorIndex)
  703. {
  704. auto combatImageIndex = static_cast<size_t>(*combatCursorIndex);
  705. to.draw(attackCursors->getImage(combatImageIndex), hexPositionAbsolute(getHoveredHex()).center() - CCS->curh->getPivotOffsetCombat(combatImageIndex));
  706. return;
  707. }
  708. auto spellCursorIndex = CCS->curh->get<Cursor::Spellcast>();
  709. if (spellCursorIndex)
  710. {
  711. auto spellImageIndex = static_cast<size_t>(*spellCursorIndex);
  712. to.draw(spellCursors->getImage(spellImageIndex), hexPositionAbsolute(getHoveredHex()).center() - CCS->curh->getPivotOffsetSpellcast());
  713. return;
  714. }
  715. }
  716. }
  717. bool BattleFieldController::receiveEvent(const Point & position, int eventType) const
  718. {
  719. if (eventType == HOVER)
  720. return true;
  721. return CIntObject::receiveEvent(position, eventType);
  722. }