BattleInterfaceClasses.cpp 35 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060
  1. /*
  2. * BattleInterfaceClasses.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 "BattleInterfaceClasses.h"
  12. #include "BattleInterface.h"
  13. #include "BattleActionsController.h"
  14. #include "BattleRenderer.h"
  15. #include "BattleSiegeController.h"
  16. #include "BattleFieldController.h"
  17. #include "BattleStacksController.h"
  18. #include "BattleWindow.h"
  19. #include "../CGameInfo.h"
  20. #include "../CPlayerInterface.h"
  21. #include "../gui/CursorHandler.h"
  22. #include "../gui/CGuiHandler.h"
  23. #include "../gui/Shortcut.h"
  24. #include "../gui/MouseButton.h"
  25. #include "../gui/WindowHandler.h"
  26. #include "../media/IMusicPlayer.h"
  27. #include "../render/Canvas.h"
  28. #include "../render/IImage.h"
  29. #include "../render/IFont.h"
  30. #include "../render/Graphics.h"
  31. #include "../widgets/Buttons.h"
  32. #include "../widgets/Images.h"
  33. #include "../widgets/Slider.h"
  34. #include "../widgets/TextControls.h"
  35. #include "../widgets/VideoWidget.h"
  36. #include "../widgets/GraphicalPrimitiveCanvas.h"
  37. #include "../windows/CMessage.h"
  38. #include "../windows/CCreatureWindow.h"
  39. #include "../windows/CSpellWindow.h"
  40. #include "../render/CAnimation.h"
  41. #include "../render/IRenderHandler.h"
  42. #include "../adventureMap/CInGameConsole.h"
  43. #include "../../CCallback.h"
  44. #include "../../lib/CStack.h"
  45. #include "../../lib/CConfigHandler.h"
  46. #include "../../lib/CCreatureHandler.h"
  47. #include "../../lib/gameState/InfoAboutArmy.h"
  48. #include "../../lib/CGeneralTextHandler.h"
  49. #include "../../lib/CTownHandler.h"
  50. #include "../../lib/CHeroHandler.h"
  51. #include "../../lib/StartInfo.h"
  52. #include "../../lib/mapObjects/CGTownInstance.h"
  53. #include "../../lib/networkPacks/PacksForClientBattle.h"
  54. #include "../../lib/TextOperations.h"
  55. void BattleConsole::showAll(Canvas & to)
  56. {
  57. CIntObject::showAll(to);
  58. Point line1 (pos.x + pos.w/2, pos.y + 8);
  59. Point line2 (pos.x + pos.w/2, pos.y + 24);
  60. auto visibleText = getVisibleText();
  61. if(visibleText.size() > 0)
  62. to.drawText(line1, FONT_SMALL, Colors::WHITE, ETextAlignment::CENTER, visibleText[0]);
  63. if(visibleText.size() > 1)
  64. to.drawText(line2, FONT_SMALL, Colors::WHITE, ETextAlignment::CENTER, visibleText[1]);
  65. }
  66. std::vector<std::string> BattleConsole::getVisibleText() const
  67. {
  68. // high priority texts that hide battle log entries
  69. for(const auto & text : {consoleText, hoverText})
  70. {
  71. if (text.empty())
  72. continue;
  73. auto result = CMessage::breakText(text, pos.w, FONT_SMALL);
  74. if(result.size() > 2 && text.find('\n') != std::string::npos)
  75. {
  76. // Text has too many lines to fit into console, but has line breaks. Try ignore them and fit text that way
  77. std::string cleanText = boost::algorithm::replace_all_copy(text, "\n", " ");
  78. result = CMessage::breakText(cleanText, pos.w, FONT_SMALL);
  79. }
  80. if(result.size() > 2)
  81. result.resize(2);
  82. return result;
  83. }
  84. // log is small enough to fit entirely - display it as such
  85. if (logEntries.size() < 3)
  86. return logEntries;
  87. return { logEntries[scrollPosition - 1], logEntries[scrollPosition] };
  88. }
  89. std::vector<std::string> BattleConsole::splitText(const std::string &text)
  90. {
  91. std::vector<std::string> lines;
  92. std::vector<std::string> output;
  93. boost::split(lines, text, boost::is_any_of("\n"));
  94. for(const auto & line : lines)
  95. {
  96. if (graphics->fonts[FONT_SMALL]->getStringWidth(text) < pos.w)
  97. {
  98. output.push_back(line);
  99. }
  100. else
  101. {
  102. std::vector<std::string> substrings = CMessage::breakText(line, pos.w, FONT_SMALL);
  103. output.insert(output.end(), substrings.begin(), substrings.end());
  104. }
  105. }
  106. return output;
  107. }
  108. bool BattleConsole::addText(const std::string & text)
  109. {
  110. logGlobal->trace("CBattleConsole message: %s", text);
  111. auto newLines = splitText(text);
  112. logEntries.insert(logEntries.end(), newLines.begin(), newLines.end());
  113. scrollPosition = (int)logEntries.size()-1;
  114. redraw();
  115. return true;
  116. }
  117. void BattleConsole::scrollUp(ui32 by)
  118. {
  119. if(scrollPosition > static_cast<int>(by))
  120. scrollPosition -= by;
  121. redraw();
  122. }
  123. void BattleConsole::scrollDown(ui32 by)
  124. {
  125. if(scrollPosition + by < logEntries.size())
  126. scrollPosition += by;
  127. redraw();
  128. }
  129. BattleConsole::BattleConsole(const BattleInterface & owner, std::shared_ptr<CPicture> backgroundSource, const Point & objectPos, const Point & imagePos, const Point &size)
  130. : CIntObject(LCLICK)
  131. , owner(owner)
  132. , scrollPosition(-1)
  133. , enteringText(false)
  134. {
  135. OBJ_CONSTRUCTION_CAPTURING_ALL_NO_DISPOSE;
  136. pos += objectPos;
  137. pos.w = size.x;
  138. pos.h = size.y;
  139. background = std::make_shared<CPicture>(backgroundSource->getSurface(), Rect(imagePos, size), 0, 0 );
  140. }
  141. void BattleConsole::deactivate()
  142. {
  143. if (enteringText)
  144. LOCPLINT->cingconsole->endEnteringText(false);
  145. CIntObject::deactivate();
  146. }
  147. void BattleConsole::clickPressed(const Point & cursorPosition)
  148. {
  149. if(owner.makingTurn() && !owner.openingPlaying())
  150. {
  151. GH.windows().createAndPushWindow<BattleConsoleWindow>(boost::algorithm::join(logEntries, "\n"));
  152. }
  153. }
  154. void BattleConsole::setEnteringMode(bool on)
  155. {
  156. consoleText.clear();
  157. if (on)
  158. {
  159. assert(enteringText == false);
  160. GH.startTextInput(pos);
  161. }
  162. else
  163. {
  164. assert(enteringText == true);
  165. GH.stopTextInput();
  166. }
  167. enteringText = on;
  168. redraw();
  169. }
  170. void BattleConsole::setEnteredText(const std::string & text)
  171. {
  172. assert(enteringText == true);
  173. consoleText = text;
  174. redraw();
  175. }
  176. void BattleConsole::write(const std::string & Text)
  177. {
  178. hoverText = Text;
  179. redraw();
  180. }
  181. void BattleConsole::clearIfMatching(const std::string & Text)
  182. {
  183. if (hoverText == Text)
  184. clear();
  185. }
  186. void BattleConsole::clear()
  187. {
  188. write({});
  189. }
  190. BattleConsoleWindow::BattleConsoleWindow(const std::string & text)
  191. : CWindowObject(BORDERED)
  192. {
  193. OBJ_CONSTRUCTION_CAPTURING_ALL_NO_DISPOSE;
  194. pos.w = 429;
  195. pos.h = 434;
  196. updateShadow();
  197. center();
  198. backgroundTexture = std::make_shared<CFilledTexture>(ImagePath::builtin("DiBoxBck"), Rect(0, 0, pos.w, pos.h));
  199. buttonOk = std::make_shared<CButton>(Point(183, 388), AnimationPath::builtin("IOKAY"), CButton::tooltip(), [this](){ close(); }, EShortcut::GLOBAL_ACCEPT);
  200. Rect textArea(18, 17, 393, 354);
  201. textBoxBackgroundBorder = std::make_shared<TransparentFilledRectangle>(textArea, ColorRGBA(0, 0, 0, 75), ColorRGBA(128, 100, 75));
  202. textBox = std::make_shared<CTextBox>(text, textArea.resize(-5), CSlider::BROWN);
  203. if(textBox->slider)
  204. textBox->slider->scrollToMax();
  205. }
  206. const CGHeroInstance * BattleHero::instance()
  207. {
  208. return hero;
  209. }
  210. void BattleHero::tick(uint32_t msPassed)
  211. {
  212. size_t groupIndex = static_cast<size_t>(phase);
  213. float timePassed = msPassed / 1000.f;
  214. flagCurrentFrame += currentSpeed * timePassed;
  215. currentFrame += currentSpeed * timePassed;
  216. if(flagCurrentFrame >= flagAnimation->size(0))
  217. flagCurrentFrame -= flagAnimation->size(0);
  218. if(currentFrame >= animation->size(groupIndex))
  219. {
  220. currentFrame -= animation->size(groupIndex);
  221. switchToNextPhase();
  222. }
  223. }
  224. void BattleHero::render(Canvas & canvas)
  225. {
  226. size_t groupIndex = static_cast<size_t>(phase);
  227. auto flagFrame = flagAnimation->getImage(flagCurrentFrame, 0, true);
  228. auto heroFrame = animation->getImage(currentFrame, groupIndex, true);
  229. Point heroPosition = pos.center() - parent->pos.topLeft() - heroFrame->dimensions() / 2;
  230. Point flagPosition = pos.center() - parent->pos.topLeft() - flagFrame->dimensions() / 2;
  231. if(defender)
  232. flagPosition += Point(-4, -41);
  233. else
  234. flagPosition += Point(4, -41);
  235. canvas.draw(flagFrame, flagPosition);
  236. canvas.draw(heroFrame, heroPosition);
  237. }
  238. void BattleHero::pause()
  239. {
  240. currentSpeed = 0.f;
  241. }
  242. void BattleHero::play()
  243. {
  244. //H3 speed: 10 fps ( 100 ms per frame)
  245. currentSpeed = 10.f;
  246. }
  247. float BattleHero::getFrame() const
  248. {
  249. return currentFrame;
  250. }
  251. void BattleHero::collectRenderableObjects(BattleRenderer & renderer)
  252. {
  253. auto hex = defender ? BattleHex(GameConstants::BFIELD_WIDTH-1) : BattleHex(0);
  254. renderer.insert(EBattleFieldLayer::HEROES, hex, [this](BattleRenderer::RendererRef canvas)
  255. {
  256. render(canvas);
  257. });
  258. }
  259. void BattleHero::onPhaseFinished(const std::function<void()> & callback)
  260. {
  261. phaseFinishedCallback = callback;
  262. }
  263. void BattleHero::setPhase(EHeroAnimType newPhase)
  264. {
  265. nextPhase = newPhase;
  266. switchToNextPhase(); //immediately switch to next phase and then restore idling phase
  267. nextPhase = EHeroAnimType::HOLDING;
  268. }
  269. void BattleHero::heroLeftClicked()
  270. {
  271. if(owner.actionsController->spellcastingModeActive()) //we are casting a spell
  272. return;
  273. if(!hero || !owner.makingTurn())
  274. return;
  275. if(owner.getBattle()->battleCanCastSpell(hero, spells::Mode::HERO) == ESpellCastProblem::OK) //check conditions
  276. {
  277. CCS->curh->set(Cursor::Map::POINTER);
  278. GH.windows().createAndPushWindow<CSpellWindow>(hero, owner.getCurrentPlayerInterface());
  279. }
  280. }
  281. void BattleHero::heroRightClicked()
  282. {
  283. if(settings["battle"]["stickyHeroInfoWindows"].Bool())
  284. return;
  285. Point windowPosition;
  286. if(GH.screenDimensions().x < 1000)
  287. {
  288. windowPosition.x = (!defender) ? owner.fieldController->pos.left() + 1 : owner.fieldController->pos.right() - 79;
  289. windowPosition.y = owner.fieldController->pos.y + 135;
  290. }
  291. else
  292. {
  293. windowPosition.x = (!defender) ? owner.fieldController->pos.left() - 93 : owner.fieldController->pos.right() + 15;
  294. windowPosition.y = owner.fieldController->pos.y;
  295. }
  296. InfoAboutHero targetHero;
  297. if(owner.makingTurn() || settings["session"]["spectate"].Bool())
  298. {
  299. auto h = defender ? owner.defendingHeroInstance : owner.attackingHeroInstance;
  300. targetHero.initFromHero(h, InfoAboutHero::EInfoLevel::INBATTLE);
  301. GH.windows().createAndPushWindow<HeroInfoWindow>(targetHero, &windowPosition);
  302. }
  303. }
  304. void BattleHero::switchToNextPhase()
  305. {
  306. phase = nextPhase;
  307. currentFrame = 0.f;
  308. auto copy = phaseFinishedCallback;
  309. phaseFinishedCallback.clear();
  310. copy();
  311. }
  312. BattleHero::BattleHero(const BattleInterface & owner, const CGHeroInstance * hero, bool defender):
  313. defender(defender),
  314. hero(hero),
  315. owner(owner),
  316. phase(EHeroAnimType::HOLDING),
  317. nextPhase(EHeroAnimType::HOLDING),
  318. currentSpeed(0.f),
  319. currentFrame(0.f),
  320. flagCurrentFrame(0.f)
  321. {
  322. AnimationPath animationPath;
  323. if(!hero->type->battleImage.empty())
  324. animationPath = hero->type->battleImage;
  325. else
  326. if(hero->gender == EHeroGender::FEMALE)
  327. animationPath = hero->type->heroClass->imageBattleFemale;
  328. else
  329. animationPath = hero->type->heroClass->imageBattleMale;
  330. animation = GH.renderHandler().loadAnimation(animationPath);
  331. animation->preload();
  332. pos.w = 64;
  333. pos.h = 136;
  334. pos.x = owner.fieldController->pos.x + (defender ? (owner.fieldController->pos.w - pos.w) : 0);
  335. pos.y = owner.fieldController->pos.y;
  336. if(defender)
  337. animation->verticalFlip();
  338. if(defender)
  339. flagAnimation = GH.renderHandler().loadAnimation(AnimationPath::builtin("CMFLAGR"));
  340. else
  341. flagAnimation = GH.renderHandler().loadAnimation(AnimationPath::builtin("CMFLAGL"));
  342. flagAnimation->preload();
  343. flagAnimation->playerColored(hero->tempOwner);
  344. switchToNextPhase();
  345. play();
  346. addUsedEvents(TIME);
  347. }
  348. HeroInfoBasicPanel::HeroInfoBasicPanel(const InfoAboutHero & hero, Point * position, bool initializeBackground)
  349. : CIntObject(0)
  350. {
  351. OBJECT_CONSTRUCTION_CAPTURING(255-DISPOSE);
  352. if (position != nullptr)
  353. moveTo(*position);
  354. if(initializeBackground)
  355. {
  356. background = std::make_shared<CPicture>(ImagePath::builtin("CHRPOP"));
  357. background->getSurface()->setBlitMode(EImageBlitMode::OPAQUE);
  358. background->colorize(hero.owner);
  359. }
  360. initializeData(hero);
  361. }
  362. void HeroInfoBasicPanel::initializeData(const InfoAboutHero & hero)
  363. {
  364. OBJ_CONSTRUCTION_CAPTURING_ALL_NO_DISPOSE;
  365. auto attack = hero.details->primskills[0];
  366. auto defense = hero.details->primskills[1];
  367. auto power = hero.details->primskills[2];
  368. auto knowledge = hero.details->primskills[3];
  369. auto morale = hero.details->morale;
  370. auto luck = hero.details->luck;
  371. auto currentSpellPoints = hero.details->mana;
  372. auto maxSpellPoints = hero.details->manaLimit;
  373. icons.push_back(std::make_shared<CAnimImage>(AnimationPath::builtin("PortraitsLarge"), hero.getIconIndex(), 0, 10, 6));
  374. //primary stats
  375. labels.push_back(std::make_shared<CLabel>(9, 75, EFonts::FONT_TINY, ETextAlignment::TOPLEFT, Colors::WHITE, CGI->generaltexth->allTexts[380] + ":"));
  376. labels.push_back(std::make_shared<CLabel>(9, 87, EFonts::FONT_TINY, ETextAlignment::TOPLEFT, Colors::WHITE, CGI->generaltexth->allTexts[381] + ":"));
  377. labels.push_back(std::make_shared<CLabel>(9, 99, EFonts::FONT_TINY, ETextAlignment::TOPLEFT, Colors::WHITE, CGI->generaltexth->allTexts[382] + ":"));
  378. labels.push_back(std::make_shared<CLabel>(9, 111, EFonts::FONT_TINY, ETextAlignment::TOPLEFT, Colors::WHITE, CGI->generaltexth->allTexts[383] + ":"));
  379. labels.push_back(std::make_shared<CLabel>(69, 87, EFonts::FONT_TINY, ETextAlignment::BOTTOMRIGHT, Colors::WHITE, std::to_string(attack)));
  380. labels.push_back(std::make_shared<CLabel>(69, 99, EFonts::FONT_TINY, ETextAlignment::BOTTOMRIGHT, Colors::WHITE, std::to_string(defense)));
  381. labels.push_back(std::make_shared<CLabel>(69, 111, EFonts::FONT_TINY, ETextAlignment::BOTTOMRIGHT, Colors::WHITE, std::to_string(power)));
  382. labels.push_back(std::make_shared<CLabel>(69, 123, EFonts::FONT_TINY, ETextAlignment::BOTTOMRIGHT, Colors::WHITE, std::to_string(knowledge)));
  383. //morale+luck
  384. labels.push_back(std::make_shared<CLabel>(9, 131, EFonts::FONT_TINY, ETextAlignment::TOPLEFT, Colors::WHITE, CGI->generaltexth->allTexts[384] + ":"));
  385. labels.push_back(std::make_shared<CLabel>(9, 143, EFonts::FONT_TINY, ETextAlignment::TOPLEFT, Colors::WHITE, CGI->generaltexth->allTexts[385] + ":"));
  386. icons.push_back(std::make_shared<CAnimImage>(AnimationPath::builtin("IMRL22"), morale + 3, 0, 47, 131));
  387. icons.push_back(std::make_shared<CAnimImage>(AnimationPath::builtin("ILCK22"), luck + 3, 0, 47, 143));
  388. //spell points
  389. labels.push_back(std::make_shared<CLabel>(39, 174, EFonts::FONT_TINY, ETextAlignment::CENTER, Colors::WHITE, CGI->generaltexth->allTexts[387]));
  390. labels.push_back(std::make_shared<CLabel>(39, 186, EFonts::FONT_TINY, ETextAlignment::CENTER, Colors::WHITE, std::to_string(currentSpellPoints) + "/" + std::to_string(maxSpellPoints)));
  391. }
  392. void HeroInfoBasicPanel::update(const InfoAboutHero & updatedInfo)
  393. {
  394. icons.clear();
  395. labels.clear();
  396. initializeData(updatedInfo);
  397. }
  398. void HeroInfoBasicPanel::show(Canvas & to)
  399. {
  400. showAll(to);
  401. CIntObject::show(to);
  402. }
  403. StackInfoBasicPanel::StackInfoBasicPanel(const CStack * stack, bool initializeBackground)
  404. : CIntObject(0)
  405. {
  406. OBJECT_CONSTRUCTION_CAPTURING(255-DISPOSE);
  407. if(initializeBackground)
  408. {
  409. background = std::make_shared<CPicture>(ImagePath::builtin("CCRPOP"));
  410. background->pos.y += 37;
  411. background->getSurface()->setBlitMode(EImageBlitMode::OPAQUE);
  412. background->colorize(stack->getOwner());
  413. background2 = std::make_shared<CPicture>(ImagePath::builtin("CHRPOP"));
  414. background2->getSurface()->setBlitMode(EImageBlitMode::OPAQUE);
  415. background2->colorize(stack->getOwner());
  416. }
  417. initializeData(stack);
  418. }
  419. void StackInfoBasicPanel::initializeData(const CStack * stack)
  420. {
  421. OBJ_CONSTRUCTION_CAPTURING_ALL_NO_DISPOSE;
  422. icons.push_back(std::make_shared<CAnimImage>(AnimationPath::builtin("TWCRPORT"), stack->creatureId() + 2, 0, 10, 6));
  423. labels.push_back(std::make_shared<CLabel>(10 + 58, 6 + 64, FONT_MEDIUM, ETextAlignment::BOTTOMRIGHT, Colors::WHITE, TextOperations::formatMetric(stack->getCount(), 4)));
  424. auto attack = std::to_string(CGI->creatures()->getByIndex(stack->creatureIndex())->getAttack(stack->isShooter())) + "(" + std::to_string(stack->getAttack(stack->isShooter())) + ")";
  425. auto defense = std::to_string(CGI->creatures()->getByIndex(stack->creatureIndex())->getDefense(stack->isShooter())) + "(" + std::to_string(stack->getDefense(stack->isShooter())) + ")";
  426. auto damage = std::to_string(CGI->creatures()->getByIndex(stack->creatureIndex())->getMinDamage(stack->isShooter())) + "-" + std::to_string(stack->getMaxDamage(stack->isShooter()));
  427. auto health = CGI->creatures()->getByIndex(stack->creatureIndex())->getMaxHealth();
  428. auto morale = stack->moraleVal();
  429. auto luck = stack->luckVal();
  430. auto killed = stack->getKilled();
  431. auto healthRemaining = TextOperations::formatMetric(std::max(stack->getAvailableHealth() - (stack->getCount() - 1) * health, (si64)0), 4);
  432. //primary stats*/
  433. labels.push_back(std::make_shared<CLabel>(9, 75, EFonts::FONT_TINY, ETextAlignment::TOPLEFT, Colors::WHITE, CGI->generaltexth->allTexts[380] + ":"));
  434. labels.push_back(std::make_shared<CLabel>(9, 87, EFonts::FONT_TINY, ETextAlignment::TOPLEFT, Colors::WHITE, CGI->generaltexth->allTexts[381] + ":"));
  435. labels.push_back(std::make_shared<CLabel>(9, 99, EFonts::FONT_TINY, ETextAlignment::TOPLEFT, Colors::WHITE, CGI->generaltexth->allTexts[386] + ":"));
  436. labels.push_back(std::make_shared<CLabel>(9, 111, EFonts::FONT_TINY, ETextAlignment::TOPLEFT, Colors::WHITE, CGI->generaltexth->allTexts[389] + ":"));
  437. labels.push_back(std::make_shared<CLabel>(69, 87, EFonts::FONT_TINY, ETextAlignment::BOTTOMRIGHT, Colors::WHITE, attack));
  438. labels.push_back(std::make_shared<CLabel>(69, 99, EFonts::FONT_TINY, ETextAlignment::BOTTOMRIGHT, Colors::WHITE, defense));
  439. labels.push_back(std::make_shared<CLabel>(69, 111, EFonts::FONT_TINY, ETextAlignment::BOTTOMRIGHT, Colors::WHITE, damage));
  440. labels.push_back(std::make_shared<CLabel>(69, 123, EFonts::FONT_TINY, ETextAlignment::BOTTOMRIGHT, Colors::WHITE, std::to_string(health)));
  441. //morale+luck
  442. labels.push_back(std::make_shared<CLabel>(9, 131, EFonts::FONT_TINY, ETextAlignment::TOPLEFT, Colors::WHITE, CGI->generaltexth->allTexts[384] + ":"));
  443. labels.push_back(std::make_shared<CLabel>(9, 143, EFonts::FONT_TINY, ETextAlignment::TOPLEFT, Colors::WHITE, CGI->generaltexth->allTexts[385] + ":"));
  444. icons.push_back(std::make_shared<CAnimImage>(AnimationPath::builtin("IMRL22"), morale + 3, 0, 47, 131));
  445. icons.push_back(std::make_shared<CAnimImage>(AnimationPath::builtin("ILCK22"), luck + 3, 0, 47, 143));
  446. //extra information
  447. labels.push_back(std::make_shared<CLabel>(9, 168, EFonts::FONT_TINY, ETextAlignment::TOPLEFT, Colors::WHITE, VLC->generaltexth->translate("vcmi.battleWindow.killed") + ":"));
  448. labels.push_back(std::make_shared<CLabel>(9, 180, EFonts::FONT_TINY, ETextAlignment::TOPLEFT, Colors::WHITE, CGI->generaltexth->allTexts[389] + ":"));
  449. labels.push_back(std::make_shared<CLabel>(69, 180, EFonts::FONT_TINY, ETextAlignment::BOTTOMRIGHT, Colors::WHITE, std::to_string(killed)));
  450. labels.push_back(std::make_shared<CLabel>(69, 192, EFonts::FONT_TINY, ETextAlignment::BOTTOMRIGHT, Colors::WHITE, healthRemaining));
  451. //spells
  452. static const Point firstPos(15, 206); // position of 1st spell box
  453. static const Point offset(0, 38); // offset of each spell box from previous
  454. for(int i = 0; i < 3; i++)
  455. icons.push_back(std::make_shared<CAnimImage>(AnimationPath::builtin("SpellInt"), 78, 0, firstPos.x + offset.x * i, firstPos.y + offset.y * i));
  456. int printed=0; //how many effect pics have been printed
  457. std::vector<SpellID> spells = stack->activeSpells();
  458. for(SpellID effect : spells)
  459. {
  460. //not all effects have graphics (for eg. Acid Breath)
  461. //for modded spells iconEffect is added to SpellInt.def
  462. const bool hasGraphics = (effect < SpellID::THUNDERBOLT) || (effect >= SpellID::AFTER_LAST);
  463. if (hasGraphics)
  464. {
  465. //FIXME: support permanent duration
  466. int duration = stack->getFirstBonus(Selector::source(BonusSource::SPELL_EFFECT, BonusSourceID(effect)))->turnsRemain;
  467. icons.push_back(std::make_shared<CAnimImage>(AnimationPath::builtin("SpellInt"), effect + 1, 0, firstPos.x + offset.x * printed, firstPos.y + offset.y * printed));
  468. if(settings["general"]["enableUiEnhancements"].Bool())
  469. labels.push_back(std::make_shared<CLabel>(firstPos.x + offset.x * printed + 46, firstPos.y + offset.y * printed + 36, EFonts::FONT_TINY, ETextAlignment::BOTTOMRIGHT, Colors::WHITE, std::to_string(duration)));
  470. if(++printed >= 3 || (printed == 2 && spells.size() > 3)) // interface limit reached
  471. break;
  472. }
  473. }
  474. if(spells.size() == 0)
  475. labelsMultiline.push_back(std::make_shared<CMultiLineLabel>(Rect(firstPos.x, firstPos.y, 48, 36), EFonts::FONT_TINY, ETextAlignment::CENTER, Colors::WHITE, CGI->generaltexth->allTexts[674]));
  476. if(spells.size() > 3)
  477. labelsMultiline.push_back(std::make_shared<CMultiLineLabel>(Rect(firstPos.x + offset.x * 2, firstPos.y + offset.y * 2 - 4, 48, 36), EFonts::FONT_MEDIUM, ETextAlignment::CENTER, Colors::WHITE, "..."));
  478. }
  479. void StackInfoBasicPanel::update(const CStack * updatedInfo)
  480. {
  481. icons.clear();
  482. labels.clear();
  483. labelsMultiline.clear();
  484. initializeData(updatedInfo);
  485. }
  486. void StackInfoBasicPanel::show(Canvas & to)
  487. {
  488. showAll(to);
  489. CIntObject::show(to);
  490. }
  491. HeroInfoWindow::HeroInfoWindow(const InfoAboutHero & hero, Point * position)
  492. : CWindowObject(RCLICK_POPUP | SHADOW_DISABLED, ImagePath::builtin("CHRPOP"))
  493. {
  494. OBJECT_CONSTRUCTION_CAPTURING(255-DISPOSE);
  495. if (position != nullptr)
  496. moveTo(*position);
  497. background->colorize(hero.owner); //maybe add this functionality to base class?
  498. content = std::make_shared<HeroInfoBasicPanel>(hero, nullptr, false);
  499. }
  500. BattleResultWindow::BattleResultWindow(const BattleResult & br, CPlayerInterface & _owner, bool allowReplay)
  501. : owner(_owner)
  502. {
  503. OBJECT_CONSTRUCTION_CAPTURING(255-DISPOSE);
  504. background = std::make_shared<CPicture>(ImagePath::builtin("CPRESULT"));
  505. background->colorize(owner.playerID);
  506. pos = center(background->pos);
  507. exit = std::make_shared<CButton>(Point(384, 505), AnimationPath::builtin("iok6432.def"), std::make_pair("", ""), [&](){ bExitf();}, EShortcut::GLOBAL_ACCEPT);
  508. exit->setBorderColor(Colors::METALLIC_GOLD);
  509. if(allowReplay || owner.cb->getStartInfo()->extraOptionsInfo.unlimitedReplay)
  510. {
  511. repeat = std::make_shared<CButton>(Point(24, 505), AnimationPath::builtin("icn6432.def"), std::make_pair("", ""), [&](){ bRepeatf();}, EShortcut::GLOBAL_CANCEL);
  512. repeat->setBorderColor(Colors::METALLIC_GOLD);
  513. labels.push_back(std::make_shared<CLabel>(232, 520, FONT_MEDIUM, ETextAlignment::CENTER, Colors::WHITE, CGI->generaltexth->translate("vcmi.battleResultsWindow.applyResultsLabel")));
  514. }
  515. if(br.winner == 0) //attacker won
  516. {
  517. labels.push_back(std::make_shared<CLabel>(59, 124, FONT_SMALL, ETextAlignment::CENTER, Colors::WHITE, CGI->generaltexth->allTexts[410]));
  518. }
  519. else
  520. {
  521. labels.push_back(std::make_shared<CLabel>(59, 124, FONT_SMALL, ETextAlignment::CENTER, Colors::WHITE, CGI->generaltexth->allTexts[411]));
  522. }
  523. if(br.winner == 1)
  524. {
  525. labels.push_back(std::make_shared<CLabel>(412, 124, FONT_SMALL, ETextAlignment::CENTER, Colors::WHITE, CGI->generaltexth->allTexts[410]));
  526. }
  527. else
  528. {
  529. labels.push_back(std::make_shared<CLabel>(408, 124, FONT_SMALL, ETextAlignment::CENTER, Colors::WHITE, CGI->generaltexth->allTexts[411]));
  530. }
  531. labels.push_back(std::make_shared<CLabel>(232, 302, FONT_BIG, ETextAlignment::CENTER, Colors::YELLOW, CGI->generaltexth->allTexts[407]));
  532. labels.push_back(std::make_shared<CLabel>(232, 332, FONT_SMALL, ETextAlignment::CENTER, Colors::WHITE, CGI->generaltexth->allTexts[408]));
  533. labels.push_back(std::make_shared<CLabel>(232, 428, FONT_SMALL, ETextAlignment::CENTER, Colors::WHITE, CGI->generaltexth->allTexts[409]));
  534. std::string sideNames[2] = {"N/A", "N/A"};
  535. for(int i = 0; i < 2; i++)
  536. {
  537. auto heroInfo = owner.cb->getBattle(br.battleID)->battleGetHeroInfo(i);
  538. const int xs[] = {21, 392};
  539. if(heroInfo.portraitSource.isValid()) //attacking hero
  540. {
  541. icons.push_back(std::make_shared<CAnimImage>(AnimationPath::builtin("PortraitsLarge"), heroInfo.getIconIndex(), 0, xs[i], 38));
  542. sideNames[i] = heroInfo.name;
  543. }
  544. else
  545. {
  546. auto stacks = owner.cb->getBattle(br.battleID)->battleGetAllStacks();
  547. vstd::erase_if(stacks, [i](const CStack * stack) //erase stack of other side and not coming from garrison
  548. {
  549. return stack->unitSide() != i || !stack->base;
  550. });
  551. auto best = vstd::maxElementByFun(stacks, [](const CStack * stack)
  552. {
  553. return stack->unitType()->getAIValue();
  554. });
  555. if(best != stacks.end()) //should be always but to be safe...
  556. {
  557. icons.push_back(std::make_shared<CAnimImage>(AnimationPath::builtin("TWCRPORT"), (*best)->unitType()->getIconIndex(), 0, xs[i], 38));
  558. sideNames[i] = (*best)->unitType()->getNamePluralTranslated();
  559. }
  560. }
  561. }
  562. //printing attacker and defender's names
  563. labels.push_back(std::make_shared<CLabel>(89, 37, FONT_SMALL, ETextAlignment::TOPLEFT, Colors::WHITE, sideNames[0]));
  564. labels.push_back(std::make_shared<CLabel>(381, 53, FONT_SMALL, ETextAlignment::BOTTOMRIGHT, Colors::WHITE, sideNames[1]));
  565. //printing casualties
  566. for(int step = 0; step < 2; ++step)
  567. {
  568. if(br.casualties[step].size()==0)
  569. {
  570. labels.push_back(std::make_shared<CLabel>(235, 360 + 97 * step, FONT_SMALL, ETextAlignment::CENTER, Colors::WHITE, CGI->generaltexth->allTexts[523]));
  571. }
  572. else
  573. {
  574. int xPos = 235 - ((int)br.casualties[step].size()*32 + ((int)br.casualties[step].size() - 1)*10)/2; //increment by 42 with each picture
  575. int yPos = 344 + step * 97;
  576. for(auto & elem : br.casualties[step])
  577. {
  578. auto creature = CGI->creatures()->getByIndex(elem.first);
  579. if (creature->getId() == CreatureID::ARROW_TOWERS )
  580. continue; // do not show destroyed towers in battle results
  581. icons.push_back(std::make_shared<CAnimImage>(AnimationPath::builtin("CPRSMALL"), creature->getIconIndex(), 0, xPos, yPos));
  582. std::ostringstream amount;
  583. amount<<elem.second;
  584. labels.push_back(std::make_shared<CLabel>(xPos + 16, yPos + 42, FONT_SMALL, ETextAlignment::CENTER, Colors::WHITE, amount.str()));
  585. xPos += 42;
  586. }
  587. }
  588. }
  589. auto resources = getResources(br);
  590. description = std::make_shared<CTextBox>(resources.resultText.toString(), Rect(69, 203, 330, 68), 0, FONT_SMALL, ETextAlignment::CENTER, Colors::WHITE);
  591. videoPlayer = std::make_shared<VideoWidget>(Point(107, 70), resources.prologueVideo, resources.loopedVideo, false);
  592. CCS->musich->playMusic(resources.musicName, false, true);
  593. }
  594. BattleResultResources BattleResultWindow::getResources(const BattleResult & br)
  595. {
  596. //printing result description
  597. bool weAreAttacker = !(owner.cb->getBattle(br.battleID)->battleGetMySide());
  598. bool weAreDefender = !weAreAttacker;
  599. bool weWon = (br.winner == 0 && weAreAttacker) || (br.winner == 1 && !weAreAttacker);
  600. bool isSiege = owner.cb->getBattle(br.battleID)->battleGetDefendedTown() != nullptr;
  601. BattleResultResources resources;
  602. if(weWon)
  603. {
  604. if(isSiege && weAreDefender)
  605. {
  606. resources.musicName = AudioPath::builtin("Music/Defend Castle");
  607. resources.prologueVideo = VideoPath::builtin("DEFENDALL.BIK");
  608. resources.loopedVideo = VideoPath::builtin("defendloop.bik");
  609. }
  610. else
  611. {
  612. resources.musicName = AudioPath::builtin("Music/Win Battle");
  613. resources.prologueVideo = VideoPath();
  614. resources.loopedVideo = VideoPath::builtin("WIN3.BIK");
  615. }
  616. switch(br.result)
  617. {
  618. case EBattleResult::NORMAL:
  619. resources.resultText.appendTextID("core.genrltxt.304");
  620. break;
  621. case EBattleResult::ESCAPE:
  622. resources.resultText.appendTextID("core.genrltxt.303");
  623. break;
  624. case EBattleResult::SURRENDER:
  625. resources.resultText.appendTextID("core.genrltxt.302");
  626. break;
  627. default:
  628. throw std::runtime_error("Invalid battle result!");
  629. }
  630. const CGHeroInstance * ourHero = owner.cb->getBattle(br.battleID)->battleGetMyHero();
  631. if (ourHero)
  632. {
  633. resources.resultText.appendTextID("core.genrltxt.305");
  634. resources.resultText.replaceTextID(ourHero->getNameTranslated());
  635. resources.resultText.replaceNumber(br.exp[weAreAttacker ? 0 : 1]);
  636. }
  637. }
  638. else // we lose
  639. {
  640. switch(br.result)
  641. {
  642. case EBattleResult::NORMAL:
  643. resources.resultText.appendTextID("core.genrltxt.311");
  644. resources.musicName = AudioPath::builtin("Music/LoseCombat");
  645. resources.prologueVideo = VideoPath::builtin("LBSTART.BIK");
  646. resources.loopedVideo = VideoPath::builtin("LBLOOP.BIK");
  647. break;
  648. case EBattleResult::ESCAPE:
  649. resources.resultText.appendTextID("core.genrltxt.310");
  650. resources.musicName = AudioPath::builtin("Music/Retreat Battle");
  651. resources.prologueVideo = VideoPath::builtin("RTSTART.BIK");
  652. resources.loopedVideo = VideoPath::builtin("RTLOOP.BIK");
  653. break;
  654. case EBattleResult::SURRENDER:
  655. resources.resultText.appendTextID("core.genrltxt.309");
  656. resources.musicName = AudioPath::builtin("Music/Surrender Battle");
  657. resources.prologueVideo = VideoPath();
  658. resources.loopedVideo = VideoPath::builtin("SURRENDER.BIK");
  659. break;
  660. default:
  661. throw std::runtime_error("Invalid battle result!");
  662. }
  663. if(isSiege && weAreDefender)
  664. {
  665. resources.musicName = AudioPath::builtin("Music/LoseCastle");
  666. resources.prologueVideo = VideoPath::builtin("LOSECSTL.BIK");
  667. resources.loopedVideo = VideoPath::builtin("LOSECSLP.BIK");
  668. }
  669. }
  670. return resources;
  671. }
  672. void BattleResultWindow::activate()
  673. {
  674. owner.showingDialog->setBusy();
  675. CIntObject::activate();
  676. }
  677. void BattleResultWindow::buttonPressed(int button)
  678. {
  679. if (resultCallback)
  680. resultCallback(button);
  681. CPlayerInterface &intTmp = owner; //copy reference because "this" will be destructed soon
  682. close();
  683. if(GH.windows().topWindow<BattleWindow>())
  684. GH.windows().popWindows(1); //pop battle interface if present
  685. //Result window and battle interface are gone. We requested all dialogs to be closed before opening the battle,
  686. //so we can be sure that there is no dialogs left on GUI stack.
  687. intTmp.showingDialog->setFree();
  688. }
  689. void BattleResultWindow::bExitf()
  690. {
  691. buttonPressed(0);
  692. }
  693. void BattleResultWindow::bRepeatf()
  694. {
  695. buttonPressed(1);
  696. }
  697. StackQueue::StackQueue(bool Embedded, BattleInterface & owner)
  698. : embedded(Embedded),
  699. owner(owner)
  700. {
  701. OBJECT_CONSTRUCTION_CAPTURING(255-DISPOSE);
  702. uint32_t queueSize = QUEUE_SIZE_BIG;
  703. if(embedded)
  704. {
  705. int32_t queueSmallOutsideYOffset = 65;
  706. bool queueSmallOutside = settings["battle"]["queueSmallOutside"].Bool() && (pos.y - queueSmallOutsideYOffset) >= 0;
  707. queueSize = std::clamp(static_cast<int>(settings["battle"]["queueSmallSlots"].Float()), 1, queueSmallOutside ? GH.screenDimensions().x / 41 : 19);
  708. pos.w = queueSize * 41;
  709. pos.h = 49;
  710. pos.x += parent->pos.w/2 - pos.w/2;
  711. pos.y += queueSmallOutside ? -queueSmallOutsideYOffset : 10;
  712. icons = GH.renderHandler().loadAnimation(AnimationPath::builtin("CPRSMALL"));
  713. stateIcons = GH.renderHandler().loadAnimation(AnimationPath::builtin("VCMI/BATTLEQUEUE/STATESSMALL"));
  714. }
  715. else
  716. {
  717. pos.w = 800;
  718. pos.h = 85;
  719. pos.x += 0;
  720. pos.y -= pos.h;
  721. background = std::make_shared<CFilledTexture>(ImagePath::builtin("DIBOXBCK"), Rect(0, 0, pos.w, pos.h));
  722. icons = GH.renderHandler().loadAnimation(AnimationPath::builtin("TWCRPORT"));
  723. stateIcons = GH.renderHandler().loadAnimation(AnimationPath::builtin("VCMI/BATTLEQUEUE/STATESSMALL"));
  724. //TODO: where use big icons?
  725. //stateIcons = GH.renderHandler().loadAnimation("VCMI/BATTLEQUEUE/STATESBIG");
  726. }
  727. stateIcons->preload();
  728. stackBoxes.resize(queueSize);
  729. for (int i = 0; i < stackBoxes.size(); i++)
  730. {
  731. stackBoxes[i] = std::make_shared<StackBox>(this);
  732. stackBoxes[i]->moveBy(Point(1 + (embedded ? 41 : 80) * i, 0));
  733. }
  734. }
  735. void StackQueue::show(Canvas & to)
  736. {
  737. if (embedded)
  738. showAll(to);
  739. CIntObject::show(to);
  740. }
  741. void StackQueue::update()
  742. {
  743. std::vector<battle::Units> queueData;
  744. owner.getBattle()->battleGetTurnOrder(queueData, stackBoxes.size(), 0);
  745. size_t boxIndex = 0;
  746. ui32 tmpTurn = -1;
  747. for(size_t turn = 0; turn < queueData.size() && boxIndex < stackBoxes.size(); turn++)
  748. {
  749. for(size_t unitIndex = 0; unitIndex < queueData[turn].size() && boxIndex < stackBoxes.size(); boxIndex++, unitIndex++)
  750. {
  751. ui32 currentTurn = owner.round + turn;
  752. stackBoxes[boxIndex]->setUnit(queueData[turn][unitIndex], turn, tmpTurn != currentTurn && owner.round != 0 && (!embedded || tmpTurn != -1) ? (std::optional<ui32>)currentTurn : std::nullopt);
  753. tmpTurn = currentTurn;
  754. }
  755. }
  756. for(; boxIndex < stackBoxes.size(); boxIndex++)
  757. stackBoxes[boxIndex]->setUnit(nullptr);
  758. }
  759. int32_t StackQueue::getSiegeShooterIconID()
  760. {
  761. return owner.siegeController->getSiegedTown()->town->faction->getIndex();
  762. }
  763. std::optional<uint32_t> StackQueue::getHoveredUnitIdIfAny() const
  764. {
  765. for(const auto & stackBox : stackBoxes)
  766. {
  767. if(stackBox->isHovered())
  768. {
  769. return stackBox->getBoundUnitID();
  770. }
  771. }
  772. return std::nullopt;
  773. }
  774. StackQueue::StackBox::StackBox(StackQueue * owner):
  775. CIntObject(SHOW_POPUP | HOVER), owner(owner)
  776. {
  777. OBJECT_CONSTRUCTION_CAPTURING(255-DISPOSE);
  778. background = std::make_shared<CPicture>(ImagePath::builtin(owner->embedded ? "StackQueueSmall" : "StackQueueLarge"));
  779. pos.w = background->pos.w;
  780. pos.h = background->pos.h;
  781. if(owner->embedded)
  782. {
  783. icon = std::make_shared<CAnimImage>(owner->icons, 0, 0, 5, 2);
  784. amount = std::make_shared<CLabel>(pos.w/2, pos.h - 7, FONT_SMALL, ETextAlignment::CENTER, Colors::WHITE);
  785. roundRect = std::make_shared<TransparentFilledRectangle>(Rect(0, 0, 2, 48), ColorRGBA(0, 0, 0, 255), ColorRGBA(0, 255, 0, 255));
  786. }
  787. else
  788. {
  789. icon = std::make_shared<CAnimImage>(owner->icons, 0, 0, 9, 1);
  790. amount = std::make_shared<CLabel>(pos.w/2, pos.h - 8, FONT_MEDIUM, ETextAlignment::CENTER, Colors::WHITE);
  791. roundRect = std::make_shared<TransparentFilledRectangle>(Rect(0, 0, 15, 18), ColorRGBA(0, 0, 0, 255), ColorRGBA(241, 216, 120, 255));
  792. round = std::make_shared<CLabel>(4, 2, FONT_SMALL, ETextAlignment::TOPLEFT, Colors::WHITE);
  793. int icon_x = pos.w - 17;
  794. int icon_y = pos.h - 18;
  795. stateIcon = std::make_shared<CAnimImage>(owner->stateIcons, 0, 0, icon_x, icon_y);
  796. stateIcon->visible = false;
  797. }
  798. roundRect->disable();
  799. }
  800. void StackQueue::StackBox::setUnit(const battle::Unit * unit, size_t turn, std::optional<ui32> currentTurn)
  801. {
  802. if(unit)
  803. {
  804. boundUnitID = unit->unitId();
  805. background->colorize(unit->unitOwner());
  806. icon->visible = true;
  807. // temporary code for mod compatibility:
  808. // first, set icon that should definitely exist (arrow tower icon in base vcmi mod)
  809. // second, try to switch to icon that should be provided by mod
  810. // if mod is not up to date and does have arrow tower icon yet - second setFrame call will fail and retain previously set image
  811. // for 1.2 release & later next line should be moved into 'else' block
  812. icon->setFrame(unit->creatureIconIndex(), 0);
  813. if (unit->unitType()->getId() == CreatureID::ARROW_TOWERS)
  814. icon->setFrame(owner->getSiegeShooterIconID(), 1);
  815. roundRect->setEnabled(currentTurn.has_value());
  816. if(!owner->embedded)
  817. round->setEnabled(currentTurn.has_value());
  818. amount->setText(TextOperations::formatMetric(unit->getCount(), 4));
  819. if(currentTurn && !owner->embedded)
  820. {
  821. std::string tmp = std::to_string(*currentTurn);
  822. int len = graphics->fonts[FONT_SMALL]->getStringWidth(tmp);
  823. roundRect->pos.w = len + 6;
  824. round->setText(tmp);
  825. }
  826. if(stateIcon)
  827. {
  828. if(unit->defended((int)turn) || (turn > 0 && unit->defended((int)turn - 1)))
  829. {
  830. stateIcon->setFrame(0, 0);
  831. stateIcon->visible = true;
  832. }
  833. else if(unit->waited((int)turn))
  834. {
  835. stateIcon->setFrame(1, 0);
  836. stateIcon->visible = true;
  837. }
  838. else
  839. {
  840. stateIcon->visible = false;
  841. }
  842. }
  843. }
  844. else
  845. {
  846. boundUnitID = std::nullopt;
  847. background->colorize(PlayerColor::NEUTRAL);
  848. icon->visible = false;
  849. icon->setFrame(0);
  850. amount->setText("");
  851. if(stateIcon)
  852. stateIcon->visible = false;
  853. }
  854. }
  855. std::optional<uint32_t> StackQueue::StackBox::getBoundUnitID() const
  856. {
  857. return boundUnitID;
  858. }
  859. bool StackQueue::StackBox::isBoundUnitHighlighted() const
  860. {
  861. auto unitIdsToHighlight = owner->owner.stacksController->getHoveredStacksUnitIds();
  862. return vstd::contains(unitIdsToHighlight, getBoundUnitID());
  863. }
  864. void StackQueue::StackBox::showAll(Canvas & to)
  865. {
  866. CIntObject::showAll(to);
  867. if(isBoundUnitHighlighted())
  868. to.drawBorder(background->pos, Colors::CYAN, 2);
  869. }
  870. void StackQueue::StackBox::show(Canvas & to)
  871. {
  872. CIntObject::show(to);
  873. if(isBoundUnitHighlighted())
  874. to.drawBorder(background->pos, Colors::CYAN, 2);
  875. }
  876. void StackQueue::StackBox::showPopupWindow(const Point & cursorPosition)
  877. {
  878. auto stacks = owner->owner.getBattle()->battleGetAllStacks();
  879. for(const CStack * stack : stacks)
  880. if(boundUnitID.has_value() && stack->unitId() == *boundUnitID)
  881. GH.windows().createAndPushWindow<CStackWindow>(stack, true);
  882. }