CBattleInterfaceClasses.cpp 27 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846
  1. /*
  2. * CBattleInterfaceClasses.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 "CBattleInterfaceClasses.h"
  12. #include "CBattleInterface.h"
  13. #include "../CBitmapHandler.h"
  14. #include "../CGameInfo.h"
  15. #include "../CMessage.h"
  16. #include "../CMusicHandler.h"
  17. #include "../CPlayerInterface.h"
  18. #include "../CVideoHandler.h"
  19. #include "../Graphics.h"
  20. #include "../gui/CAnimation.h"
  21. #include "../gui/CCursorHandler.h"
  22. #include "../gui/CGuiHandler.h"
  23. #include "../gui/SDL_Extensions.h"
  24. #include "../widgets/Buttons.h"
  25. #include "../widgets/TextControls.h"
  26. #include "../windows/CCreatureWindow.h"
  27. #include "../windows/CSpellWindow.h"
  28. #include "../../CCallback.h"
  29. #include "../../lib/CStack.h"
  30. #include "../../lib/CConfigHandler.h"
  31. #include "../../lib/CCreatureHandler.h"
  32. #include "../../lib/CGameState.h"
  33. #include "../../lib/CGeneralTextHandler.h"
  34. #include "../../lib/CTownHandler.h"
  35. #include "../../lib/NetPacks.h"
  36. #include "../../lib/StartInfo.h"
  37. #include "../../lib/CondSh.h"
  38. #include "../../lib/mapObjects/CGTownInstance.h"
  39. void CBattleConsole::showAll(SDL_Surface * to)
  40. {
  41. Point textPos(pos.x + pos.w/2, pos.y + 17);
  42. if(ingcAlter.size())
  43. {
  44. graphics->fonts[FONT_SMALL]->renderTextLinesCenter(to, CMessage::breakText(ingcAlter, pos.w, FONT_SMALL), Colors::WHITE, textPos);
  45. }
  46. else if(alterTxt.size())
  47. {
  48. graphics->fonts[FONT_SMALL]->renderTextLinesCenter(to, CMessage::breakText(alterTxt, pos.w, FONT_SMALL), Colors::WHITE, textPos);
  49. }
  50. else if(texts.size())
  51. {
  52. if(texts.size()==1)
  53. {
  54. graphics->fonts[FONT_SMALL]->renderTextLinesCenter(to, CMessage::breakText(texts[0], pos.w, FONT_SMALL), Colors::WHITE, textPos);
  55. }
  56. else
  57. {
  58. graphics->fonts[FONT_SMALL]->renderTextLinesCenter(to, CMessage::breakText(texts[lastShown - 1], pos.w, FONT_SMALL), Colors::WHITE, textPos);
  59. textPos.y += 16;
  60. graphics->fonts[FONT_SMALL]->renderTextLinesCenter(to, CMessage::breakText(texts[lastShown], pos.w, FONT_SMALL), Colors::WHITE, textPos);
  61. }
  62. }
  63. }
  64. bool CBattleConsole::addText(const std::string & text)
  65. {
  66. logGlobal->trace("CBattleConsole message: %s", text);
  67. if(text.size()>70)
  68. return false; //text too long!
  69. int firstInToken = 0;
  70. for(size_t i = 0; i < text.size(); ++i) //tokenize
  71. {
  72. if(text[i] == 10)
  73. {
  74. texts.push_back( text.substr(firstInToken, i-firstInToken) );
  75. firstInToken = (int)i+1;
  76. }
  77. }
  78. texts.push_back( text.substr(firstInToken, text.size()) );
  79. lastShown = (int)texts.size()-1;
  80. return true;
  81. }
  82. void CBattleConsole::alterText(const std::string &text)
  83. {
  84. //char buf[500];
  85. //sprintf(buf, text.c_str());
  86. //alterTxt = buf;
  87. alterTxt = text;
  88. }
  89. void CBattleConsole::eraseText(ui32 pos)
  90. {
  91. if(pos < texts.size())
  92. {
  93. texts.erase(texts.begin() + pos);
  94. if(lastShown == texts.size())
  95. --lastShown;
  96. }
  97. }
  98. void CBattleConsole::changeTextAt(const std::string & text, ui32 pos)
  99. {
  100. if(pos >= texts.size()) //no such pos
  101. return;
  102. texts[pos] = text;
  103. }
  104. void CBattleConsole::scrollUp(ui32 by)
  105. {
  106. if(lastShown > static_cast<int>(by))
  107. lastShown -= by;
  108. }
  109. void CBattleConsole::scrollDown(ui32 by)
  110. {
  111. if(lastShown + by < texts.size())
  112. lastShown += by;
  113. }
  114. CBattleConsole::CBattleConsole() : lastShown(-1), alterTxt(""), whoSetAlter(0)
  115. {}
  116. void CBattleHero::show(SDL_Surface * to)
  117. {
  118. auto flagFrame = flagAnimation->getImage(flagAnim, 0, true);
  119. if(!flagFrame)
  120. return;
  121. //animation of flag
  122. SDL_Rect temp_rect;
  123. if(flip)
  124. {
  125. temp_rect = genRect(
  126. flagFrame->height(),
  127. flagFrame->width(),
  128. pos.x + 61,
  129. pos.y + 39);
  130. }
  131. else
  132. {
  133. temp_rect = genRect(
  134. flagFrame->height(),
  135. flagFrame->width(),
  136. pos.x + 72,
  137. pos.y + 39);
  138. }
  139. flagFrame->draw(screen, &temp_rect, nullptr); //FIXME: why screen?
  140. //animation of hero
  141. SDL_Rect rect = pos;
  142. auto heroFrame = animation->getImage(currentFrame, phase, true);
  143. if(!heroFrame)
  144. return;
  145. heroFrame->draw(to, &rect, nullptr);
  146. if(++animCount >= 4)
  147. {
  148. animCount = 0;
  149. if(++flagAnim >= flagAnimation->size(0))
  150. flagAnim = 0;
  151. if(++currentFrame >= lastFrame)
  152. switchToNextPhase();
  153. }
  154. }
  155. void CBattleHero::setPhase(int newPhase)
  156. {
  157. nextPhase = newPhase;
  158. switchToNextPhase(); //immediately switch to next phase and then restore idling phase
  159. nextPhase = 0;
  160. }
  161. void CBattleHero::hover(bool on)
  162. {
  163. //TODO: Make lines below work properly
  164. if (on)
  165. CCS->curh->changeGraphic(ECursor::COMBAT, 5);
  166. else
  167. CCS->curh->changeGraphic(ECursor::COMBAT, 0);
  168. }
  169. void CBattleHero::clickLeft(tribool down, bool previousState)
  170. {
  171. if(myOwner->spellDestSelectMode) //we are casting a spell
  172. return;
  173. if(boost::logic::indeterminate(down))
  174. return;
  175. if(!myHero || down || !myOwner->myTurn)
  176. return;
  177. if(myOwner->getCurrentPlayerInterface()->cb->battleCanCastSpell(myHero, spells::Mode::HERO) == ESpellCastProblem::OK) //check conditions
  178. {
  179. for(int it=0; it<GameConstants::BFIELD_SIZE; ++it) //do nothing when any hex is hovered - hero's animation overlaps battlefield
  180. {
  181. if(myOwner->bfield[it]->hovered && myOwner->bfield[it]->strictHovered)
  182. return;
  183. }
  184. CCS->curh->changeGraphic(ECursor::ADVENTURE, 0);
  185. GH.pushIntT<CSpellWindow>(myHero, myOwner->getCurrentPlayerInterface());
  186. }
  187. }
  188. void CBattleHero::clickRight(tribool down, bool previousState)
  189. {
  190. if(boost::logic::indeterminate(down))
  191. return;
  192. Point windowPosition;
  193. windowPosition.x = (!flip) ? myOwner->pos.topLeft().x + 1 : myOwner->pos.topRight().x - 79;
  194. windowPosition.y = myOwner->pos.y + 135;
  195. InfoAboutHero targetHero;
  196. if(down && (myOwner->myTurn || settings["session"]["spectate"].Bool()))
  197. {
  198. auto h = flip ? myOwner->defendingHeroInstance : myOwner->attackingHeroInstance;
  199. targetHero.initFromHero(h, InfoAboutHero::EInfoLevel::INBATTLE);
  200. GH.pushIntT<CHeroInfoWindow>(targetHero, &windowPosition);
  201. }
  202. }
  203. void CBattleHero::switchToNextPhase()
  204. {
  205. if(phase != nextPhase)
  206. {
  207. phase = nextPhase;
  208. firstFrame = 0;
  209. lastFrame = static_cast<int>(animation->size(phase));
  210. }
  211. currentFrame = firstFrame;
  212. }
  213. CBattleHero::CBattleHero(const std::string & animationPath, bool flipG, PlayerColor player, const CGHeroInstance * hero, const CBattleInterface * owner):
  214. flip(flipG),
  215. myHero(hero),
  216. myOwner(owner),
  217. phase(1),
  218. nextPhase(0),
  219. flagAnim(0),
  220. animCount(0)
  221. {
  222. animation = std::make_shared<CAnimation>(animationPath);
  223. animation->preload();
  224. if(flipG)
  225. animation->verticalFlip();
  226. if(flip)
  227. flagAnimation = std::make_shared<CAnimation>("CMFLAGR");
  228. else
  229. flagAnimation = std::make_shared<CAnimation>("CMFLAGL");
  230. flagAnimation->preload();
  231. flagAnimation->playerColored(player);
  232. addUsedEvents(LCLICK | RCLICK | HOVER);
  233. switchToNextPhase();
  234. }
  235. CBattleHero::~CBattleHero() = default;
  236. CHeroInfoWindow::CHeroInfoWindow(const InfoAboutHero & hero, Point * position)
  237. : CWindowObject(RCLICK_POPUP | SHADOW_DISABLED, "CHRPOP")
  238. {
  239. OBJECT_CONSTRUCTION_CAPTURING(255-DISPOSE);
  240. if (position != nullptr)
  241. moveTo(*position);
  242. background->colorize(hero.owner); //maybe add this functionality to base class?
  243. auto attack = hero.details->primskills[0];
  244. auto defense = hero.details->primskills[1];
  245. auto power = hero.details->primskills[2];
  246. auto knowledge = hero.details->primskills[3];
  247. auto morale = hero.details->morale;
  248. auto luck = hero.details->luck;
  249. auto currentSpellPoints = hero.details->mana;
  250. auto maxSpellPoints = hero.details->manaLimit;
  251. icons.push_back(std::make_shared<CAnimImage>("PortraitsLarge", hero.portrait, 0, 10, 6));
  252. //primary stats
  253. labels.push_back(std::make_shared<CLabel>(9, 75, EFonts::FONT_TINY, EAlignment::TOPLEFT, Colors::WHITE, CGI->generaltexth->allTexts[380] + ":"));
  254. labels.push_back(std::make_shared<CLabel>(9, 87, EFonts::FONT_TINY, EAlignment::TOPLEFT, Colors::WHITE, CGI->generaltexth->allTexts[381] + ":"));
  255. labels.push_back(std::make_shared<CLabel>(9, 99, EFonts::FONT_TINY, EAlignment::TOPLEFT, Colors::WHITE, CGI->generaltexth->allTexts[382] + ":"));
  256. labels.push_back(std::make_shared<CLabel>(9, 111, EFonts::FONT_TINY, EAlignment::TOPLEFT, Colors::WHITE, CGI->generaltexth->allTexts[383] + ":"));
  257. labels.push_back(std::make_shared<CLabel>(69, 87, EFonts::FONT_TINY, EAlignment::BOTTOMRIGHT, Colors::WHITE, std::to_string(attack)));
  258. labels.push_back(std::make_shared<CLabel>(69, 99, EFonts::FONT_TINY, EAlignment::BOTTOMRIGHT, Colors::WHITE, std::to_string(defense)));
  259. labels.push_back(std::make_shared<CLabel>(69, 111, EFonts::FONT_TINY, EAlignment::BOTTOMRIGHT, Colors::WHITE, std::to_string(power)));
  260. labels.push_back(std::make_shared<CLabel>(69, 123, EFonts::FONT_TINY, EAlignment::BOTTOMRIGHT, Colors::WHITE, std::to_string(knowledge)));
  261. //morale+luck
  262. labels.push_back(std::make_shared<CLabel>(9, 131, EFonts::FONT_TINY, EAlignment::TOPLEFT, Colors::WHITE, CGI->generaltexth->allTexts[384] + ":"));
  263. labels.push_back(std::make_shared<CLabel>(9, 143, EFonts::FONT_TINY, EAlignment::TOPLEFT, Colors::WHITE, CGI->generaltexth->allTexts[385] + ":"));
  264. icons.push_back(std::make_shared<CAnimImage>("IMRL22", morale + 3, 0, 47, 131));
  265. icons.push_back(std::make_shared<CAnimImage>("ILCK22", luck + 3, 0, 47, 143));
  266. //spell points
  267. labels.push_back(std::make_shared<CLabel>(39, 174, EFonts::FONT_TINY, EAlignment::CENTER, Colors::WHITE, CGI->generaltexth->allTexts[387]));
  268. labels.push_back(std::make_shared<CLabel>(39, 186, EFonts::FONT_TINY, EAlignment::CENTER, Colors::WHITE, std::to_string(currentSpellPoints) + "/" + std::to_string(maxSpellPoints)));
  269. }
  270. CBattleOptionsWindow::CBattleOptionsWindow(const SDL_Rect & position, CBattleInterface *owner)
  271. {
  272. OBJECT_CONSTRUCTION_CAPTURING(255-DISPOSE);
  273. pos = position;
  274. background = std::make_shared<CPicture>("comopbck.bmp");
  275. background->colorize(owner->getCurrentPlayerInterface()->playerID);
  276. auto viewGrid = std::make_shared<CToggleButton>(Point(25, 56), "sysopchk.def", CGI->generaltexth->zelp[427], [=](bool on){owner->setPrintCellBorders(on);} );
  277. viewGrid->setSelected(settings["battle"]["cellBorders"].Bool());
  278. toggles.push_back(viewGrid);
  279. auto movementShadow = std::make_shared<CToggleButton>(Point(25, 89), "sysopchk.def", CGI->generaltexth->zelp[428], [=](bool on){owner->setPrintStackRange(on);});
  280. movementShadow->setSelected(settings["battle"]["stackRange"].Bool());
  281. toggles.push_back(movementShadow);
  282. auto mouseShadow = std::make_shared<CToggleButton>(Point(25, 122), "sysopchk.def", CGI->generaltexth->zelp[429], [=](bool on){owner->setPrintMouseShadow(on);});
  283. mouseShadow->setSelected(settings["battle"]["mouseShadow"].Bool());
  284. toggles.push_back(mouseShadow);
  285. animSpeeds = std::make_shared<CToggleGroup>([=](int value){ owner->setAnimSpeed(value);});
  286. std::shared_ptr<CToggleButton> toggle;
  287. toggle = std::make_shared<CToggleButton>(Point( 28, 225), "sysopb9.def", CGI->generaltexth->zelp[422]);
  288. animSpeeds->addToggle(40, toggle);
  289. toggle = std::make_shared<CToggleButton>(Point( 92, 225), "sysob10.def", CGI->generaltexth->zelp[423]);
  290. animSpeeds->addToggle(63, toggle);
  291. toggle = std::make_shared<CToggleButton>(Point(156, 225), "sysob11.def", CGI->generaltexth->zelp[424]);
  292. animSpeeds->addToggle(100, toggle);
  293. animSpeeds->setSelected(owner->getAnimSpeed());
  294. setToDefault = std::make_shared<CButton>(Point(246, 359), "codefaul.def", CGI->generaltexth->zelp[393], [&](){ bDefaultf(); });
  295. setToDefault->setImageOrder(1, 0, 2, 3);
  296. exit = std::make_shared<CButton>(Point(357, 359), "soretrn.def", CGI->generaltexth->zelp[392], [&](){ bExitf();}, SDLK_RETURN);
  297. exit->setImageOrder(1, 0, 2, 3);
  298. //creating labels
  299. labels.push_back(std::make_shared<CLabel>(242, 32, FONT_BIG, CENTER, Colors::YELLOW, CGI->generaltexth->allTexts[392]));//window title
  300. labels.push_back(std::make_shared<CLabel>(122, 214, FONT_MEDIUM, CENTER, Colors::YELLOW, CGI->generaltexth->allTexts[393]));//animation speed
  301. labels.push_back(std::make_shared<CLabel>(122, 293, FONT_MEDIUM, CENTER, Colors::YELLOW, CGI->generaltexth->allTexts[394]));//music volume
  302. labels.push_back(std::make_shared<CLabel>(122, 359, FONT_MEDIUM, CENTER, Colors::YELLOW, CGI->generaltexth->allTexts[395]));//effects' volume
  303. labels.push_back(std::make_shared<CLabel>(353, 66, FONT_MEDIUM, CENTER, Colors::YELLOW, CGI->generaltexth->allTexts[396]));//auto - combat options
  304. labels.push_back(std::make_shared<CLabel>(353, 265, FONT_MEDIUM, CENTER, Colors::YELLOW, CGI->generaltexth->allTexts[397]));//creature info
  305. //auto - combat options
  306. labels.push_back(std::make_shared<CLabel>(283, 86, FONT_MEDIUM, TOPLEFT, Colors::WHITE, CGI->generaltexth->allTexts[398]));//creatures
  307. labels.push_back(std::make_shared<CLabel>(283, 116, FONT_MEDIUM, TOPLEFT, Colors::WHITE, CGI->generaltexth->allTexts[399]));//spells
  308. labels.push_back(std::make_shared<CLabel>(283, 146, FONT_MEDIUM, TOPLEFT, Colors::WHITE, CGI->generaltexth->allTexts[400]));//catapult
  309. labels.push_back(std::make_shared<CLabel>(283, 176, FONT_MEDIUM, TOPLEFT, Colors::WHITE, CGI->generaltexth->allTexts[151]));//ballista
  310. labels.push_back(std::make_shared<CLabel>(283, 206, FONT_MEDIUM, TOPLEFT, Colors::WHITE, CGI->generaltexth->allTexts[401]));//first aid tent
  311. //creature info
  312. labels.push_back(std::make_shared<CLabel>(283, 285, FONT_MEDIUM, TOPLEFT, Colors::WHITE, CGI->generaltexth->allTexts[402]));//all stats
  313. labels.push_back(std::make_shared<CLabel>(283, 315, FONT_MEDIUM, TOPLEFT, Colors::WHITE, CGI->generaltexth->allTexts[403]));//spells only
  314. //general options
  315. labels.push_back(std::make_shared<CLabel>(61, 57, FONT_MEDIUM, TOPLEFT, Colors::WHITE, CGI->generaltexth->allTexts[404]));
  316. labels.push_back(std::make_shared<CLabel>(61, 90, FONT_MEDIUM, TOPLEFT, Colors::WHITE, CGI->generaltexth->allTexts[405]));
  317. labels.push_back(std::make_shared<CLabel>(61, 123, FONT_MEDIUM, TOPLEFT, Colors::WHITE, CGI->generaltexth->allTexts[406]));
  318. labels.push_back(std::make_shared<CLabel>(61, 156, FONT_MEDIUM, TOPLEFT, Colors::WHITE, CGI->generaltexth->allTexts[407]));
  319. }
  320. void CBattleOptionsWindow::bDefaultf()
  321. {
  322. //TODO: implement
  323. }
  324. void CBattleOptionsWindow::bExitf()
  325. {
  326. close();
  327. }
  328. CBattleResultWindow::CBattleResultWindow(const BattleResult & br, CPlayerInterface & _owner, bool allowReplay)
  329. : owner(_owner)
  330. {
  331. OBJECT_CONSTRUCTION_CAPTURING(255-DISPOSE);
  332. pos = genRect(561, 470, (screen->w - 800)/2 + 165, (screen->h - 600)/2 + 19);
  333. background = std::make_shared<CPicture>("CPRESULT");
  334. background->colorize(owner.playerID);
  335. exit = std::make_shared<CButton>(Point(384, 505), "iok6432.def", std::make_pair("", ""), [&](){ bExitf();}, SDLK_RETURN);
  336. exit->setBorderColor(Colors::METALLIC_GOLD);
  337. if(allowReplay)
  338. {
  339. repeat = std::make_shared<CButton>(Point(24, 505), "icn6432.def", std::make_pair("", ""), [&](){ bRepeatf();}, SDLK_ESCAPE);
  340. repeat->setBorderColor(Colors::METALLIC_GOLD);
  341. }
  342. if(br.winner == 0) //attacker won
  343. {
  344. labels.push_back(std::make_shared<CLabel>(59, 124, FONT_SMALL, CENTER, Colors::WHITE, CGI->generaltexth->allTexts[410]));
  345. }
  346. else
  347. {
  348. labels.push_back(std::make_shared<CLabel>(59, 124, FONT_SMALL, CENTER, Colors::WHITE, CGI->generaltexth->allTexts[411]));
  349. }
  350. if(br.winner == 1)
  351. {
  352. labels.push_back(std::make_shared<CLabel>(412, 124, FONT_SMALL, CENTER, Colors::WHITE, CGI->generaltexth->allTexts[410]));
  353. }
  354. else
  355. {
  356. labels.push_back(std::make_shared<CLabel>(408, 124, FONT_SMALL, CENTER, Colors::WHITE, CGI->generaltexth->allTexts[411]));
  357. }
  358. labels.push_back(std::make_shared<CLabel>(232, 302, FONT_BIG, CENTER, Colors::YELLOW, CGI->generaltexth->allTexts[407]));
  359. labels.push_back(std::make_shared<CLabel>(232, 332, FONT_SMALL, CENTER, Colors::WHITE, CGI->generaltexth->allTexts[408]));
  360. labels.push_back(std::make_shared<CLabel>(232, 428, FONT_SMALL, CENTER, Colors::WHITE, CGI->generaltexth->allTexts[409]));
  361. std::string sideNames[2] = {"N/A", "N/A"};
  362. for(int i = 0; i < 2; i++)
  363. {
  364. auto heroInfo = owner.cb->battleGetHeroInfo(i);
  365. const int xs[] = {21, 392};
  366. if(heroInfo.portrait >= 0) //attacking hero
  367. {
  368. icons.push_back(std::make_shared<CAnimImage>("PortraitsLarge", heroInfo.portrait, 0, xs[i], 38));
  369. sideNames[i] = heroInfo.name;
  370. }
  371. else
  372. {
  373. auto stacks = owner.cb->battleGetAllStacks();
  374. vstd::erase_if(stacks, [i](const CStack * stack) //erase stack of other side and not coming from garrison
  375. {
  376. return stack->side != i || !stack->base;
  377. });
  378. auto best = vstd::maxElementByFun(stacks, [](const CStack * stack)
  379. {
  380. return stack->type->AIValue;
  381. });
  382. if(best != stacks.end()) //should be always but to be safe...
  383. {
  384. icons.push_back(std::make_shared<CAnimImage>("TWCRPORT", (*best)->type->getIconIndex(), 0, xs[i], 38));
  385. sideNames[i] = (*best)->type->getPluralName();
  386. }
  387. }
  388. }
  389. //printing attacker and defender's names
  390. labels.push_back(std::make_shared<CLabel>(89, 37, FONT_SMALL, TOPLEFT, Colors::WHITE, sideNames[0]));
  391. labels.push_back(std::make_shared<CLabel>(381, 53, FONT_SMALL, BOTTOMRIGHT, Colors::WHITE, sideNames[1]));
  392. //printing casualties
  393. for(int step = 0; step < 2; ++step)
  394. {
  395. if(br.casualties[step].size()==0)
  396. {
  397. labels.push_back(std::make_shared<CLabel>(235, 360 + 97 * step, FONT_SMALL, CENTER, Colors::WHITE, CGI->generaltexth->allTexts[523]));
  398. }
  399. else
  400. {
  401. int xPos = 235 - ((int)br.casualties[step].size()*32 + ((int)br.casualties[step].size() - 1)*10)/2; //increment by 42 with each picture
  402. int yPos = 344 + step * 97;
  403. for(auto & elem : br.casualties[step])
  404. {
  405. icons.push_back(std::make_shared<CAnimImage>("CPRSMALL", CGI->creatures()->getByIndex(elem.first)->getIconIndex(), 0, xPos, yPos));
  406. std::ostringstream amount;
  407. amount<<elem.second;
  408. labels.push_back(std::make_shared<CLabel>(xPos + 16, yPos + 42, FONT_SMALL, CENTER, Colors::WHITE, amount.str()));
  409. xPos += 42;
  410. }
  411. }
  412. }
  413. //printing result description
  414. bool weAreAttacker = !(owner.cb->battleGetMySide());
  415. if((br.winner == 0 && weAreAttacker) || (br.winner == 1 && !weAreAttacker)) //we've won
  416. {
  417. int text = 304;
  418. switch(br.result)
  419. {
  420. case BattleResult::NORMAL:
  421. break;
  422. case BattleResult::ESCAPE:
  423. text = 303;
  424. break;
  425. case BattleResult::SURRENDER:
  426. text = 302;
  427. break;
  428. default:
  429. logGlobal->error("Invalid battle result code %d. Assumed normal.", static_cast<int>(br.result));
  430. break;
  431. }
  432. CCS->musich->playMusic("Music/Win Battle", false, true);
  433. CCS->videoh->open("WIN3.BIK");
  434. std::string str = CGI->generaltexth->allTexts[text];
  435. const CGHeroInstance * ourHero = owner.cb->battleGetMyHero();
  436. if (ourHero)
  437. {
  438. str += CGI->generaltexth->allTexts[305];
  439. boost::algorithm::replace_first(str, "%s", ourHero->name);
  440. boost::algorithm::replace_first(str, "%d", boost::lexical_cast<std::string>(br.exp[weAreAttacker ? 0 : 1]));
  441. }
  442. description = std::make_shared<CTextBox>(str, Rect(69, 203, 330, 68), 0, FONT_SMALL, CENTER, Colors::WHITE);
  443. }
  444. else // we lose
  445. {
  446. int text = 311;
  447. std::string musicName = "Music/LoseCombat";
  448. std::string videoName = "LBSTART.BIK";
  449. switch(br.result)
  450. {
  451. case BattleResult::NORMAL:
  452. break;
  453. case BattleResult::ESCAPE:
  454. musicName = "Music/Retreat Battle";
  455. videoName = "RTSTART.BIK";
  456. text = 310;
  457. break;
  458. case BattleResult::SURRENDER:
  459. musicName = "Music/Surrender Battle";
  460. videoName = "SURRENDER.BIK";
  461. text = 309;
  462. break;
  463. default:
  464. logGlobal->error("Invalid battle result code %d. Assumed normal.", static_cast<int>(br.result));
  465. break;
  466. }
  467. CCS->musich->playMusic(musicName, false, true);
  468. CCS->videoh->open(videoName);
  469. labels.push_back(std::make_shared<CLabel>(235, 235, FONT_SMALL, CENTER, Colors::WHITE, CGI->generaltexth->allTexts[text]));
  470. }
  471. }
  472. CBattleResultWindow::~CBattleResultWindow() = default;
  473. void CBattleResultWindow::activate()
  474. {
  475. owner.showingDialog->set(true);
  476. CIntObject::activate();
  477. }
  478. void CBattleResultWindow::show(SDL_Surface * to)
  479. {
  480. CIntObject::show(to);
  481. CCS->videoh->update(pos.x + 107, pos.y + 70, screen, true, false);
  482. }
  483. void CBattleResultWindow::buttonPressed(int button)
  484. {
  485. resultCallback(button);
  486. CPlayerInterface &intTmp = owner; //copy reference because "this" will be destructed soon
  487. close();
  488. if(dynamic_cast<CBattleInterface*>(GH.topInt().get()))
  489. GH.popInts(1); //pop battle interface if present
  490. //Result window and battle interface are gone. We requested all dialogs to be closed before opening the battle,
  491. //so we can be sure that there is no dialogs left on GUI stack.
  492. intTmp.showingDialog->setn(false);
  493. CCS->videoh->close();
  494. }
  495. void CBattleResultWindow::bExitf()
  496. {
  497. buttonPressed(0);
  498. }
  499. void CBattleResultWindow::bRepeatf()
  500. {
  501. buttonPressed(1);
  502. }
  503. Point CClickableHex::getXYUnitAnim(BattleHex hexNum, const CStack * stack, CBattleInterface * cbi)
  504. {
  505. assert(cbi);
  506. Point ret(-500, -500); //returned value
  507. if(stack && stack->initialPosition < 0) //creatures in turrets
  508. {
  509. switch(stack->initialPosition)
  510. {
  511. case -2: //keep
  512. ret = cbi->siegeH->town->town->clientInfo.siegePositions[18];
  513. break;
  514. case -3: //lower turret
  515. ret = cbi->siegeH->town->town->clientInfo.siegePositions[19];
  516. break;
  517. case -4: //upper turret
  518. ret = cbi->siegeH->town->town->clientInfo.siegePositions[20];
  519. break;
  520. }
  521. }
  522. else
  523. {
  524. static const Point basePos(-190, -139); // position of creature in topleft corner
  525. static const int imageShiftX = 30; // X offset to base pos for facing right stacks, negative for facing left
  526. ret.x = basePos.x + 22 * ( (hexNum.getY() + 1)%2 ) + 44 * hexNum.getX();
  527. ret.y = basePos.y + 42 * hexNum.getY();
  528. if (stack)
  529. {
  530. if(cbi->creDir[stack->ID])
  531. ret.x += imageShiftX;
  532. else
  533. ret.x -= imageShiftX;
  534. //shifting position for double - hex creatures
  535. if(stack->doubleWide())
  536. {
  537. if(stack->side == BattleSide::ATTACKER)
  538. {
  539. if(cbi->creDir[stack->ID])
  540. ret.x -= 44;
  541. }
  542. else
  543. {
  544. if(!cbi->creDir[stack->ID])
  545. ret.x += 44;
  546. }
  547. }
  548. }
  549. }
  550. //returning
  551. return ret + CPlayerInterface::battleInt->pos;
  552. }
  553. void CClickableHex::hover(bool on)
  554. {
  555. hovered = on;
  556. //Hoverable::hover(on);
  557. if(!on && setAlterText)
  558. {
  559. myInterface->console->alterTxt = std::string();
  560. setAlterText = false;
  561. }
  562. }
  563. CClickableHex::CClickableHex() : setAlterText(false), myNumber(-1), accessible(true), strictHovered(false), myInterface(nullptr)
  564. {
  565. addUsedEvents(LCLICK | RCLICK | HOVER | MOVE);
  566. }
  567. void CClickableHex::mouseMoved(const SDL_MouseMotionEvent &sEvent)
  568. {
  569. if(myInterface->cellShade)
  570. {
  571. if(CSDL_Ext::SDL_GetPixel(myInterface->cellShade, sEvent.x-pos.x, sEvent.y-pos.y) == 0) //hovered pixel is outside hex
  572. {
  573. strictHovered = false;
  574. }
  575. else //hovered pixel is inside hex
  576. {
  577. strictHovered = true;
  578. }
  579. }
  580. if(hovered && strictHovered) //print attacked creature to console
  581. {
  582. const CStack * attackedStack = myInterface->getCurrentPlayerInterface()->cb->battleGetStackByPos(myNumber);
  583. if(myInterface->console->alterTxt.size() == 0 &&attackedStack != nullptr &&
  584. attackedStack->owner != myInterface->getCurrentPlayerInterface()->playerID &&
  585. attackedStack->alive())
  586. {
  587. MetaString text;
  588. text.addTxt(MetaString::GENERAL_TXT, 220);
  589. attackedStack->addNameReplacement(text);
  590. myInterface->console->alterTxt = text.toString();
  591. setAlterText = true;
  592. }
  593. }
  594. else if(setAlterText)
  595. {
  596. myInterface->console->alterTxt = std::string();
  597. setAlterText = false;
  598. }
  599. }
  600. void CClickableHex::clickLeft(tribool down, bool previousState)
  601. {
  602. if(!down && hovered && strictHovered) //we've been really clicked!
  603. {
  604. myInterface->hexLclicked(myNumber);
  605. }
  606. }
  607. void CClickableHex::clickRight(tribool down, bool previousState)
  608. {
  609. const CStack * myst = myInterface->getCurrentPlayerInterface()->cb->battleGetStackByPos(myNumber); //stack info
  610. if(hovered && strictHovered && myst!=nullptr)
  611. {
  612. if(!myst->alive()) return;
  613. if(down)
  614. {
  615. GH.pushIntT<CStackWindow>(myst, true);
  616. }
  617. }
  618. }
  619. CStackQueue::CStackQueue(bool Embedded, CBattleInterface * _owner)
  620. : embedded(Embedded),
  621. owner(_owner)
  622. {
  623. OBJECT_CONSTRUCTION_CAPTURING(255-DISPOSE);
  624. if(embedded)
  625. {
  626. pos.w = QUEUE_SIZE * 37;
  627. pos.h = 46;
  628. pos.x = screen->w/2 - pos.w/2;
  629. pos.y = (screen->h - 600)/2 + 10;
  630. icons = std::make_shared<CAnimation>("CPRSMALL");
  631. stateIcons = std::make_shared<CAnimation>("VCMI/BATTLEQUEUE/STATESSMALL");
  632. }
  633. else
  634. {
  635. pos.w = 800;
  636. pos.h = 85;
  637. background = std::make_shared<CFilledTexture>("DIBOXBCK", Rect(0, 0, pos.w, pos.h));
  638. icons = std::make_shared<CAnimation>("TWCRPORT");
  639. stateIcons = std::make_shared<CAnimation>("VCMI/BATTLEQUEUE/STATESSMALL");
  640. //TODO: where use big icons?
  641. //stateIcons = std::make_shared<CAnimation>("VCMI/BATTLEQUEUE/STATESBIG");
  642. }
  643. stateIcons->preload();
  644. stackBoxes.resize(QUEUE_SIZE);
  645. for (int i = 0; i < stackBoxes.size(); i++)
  646. {
  647. stackBoxes[i] = std::make_shared<StackBox>(this);
  648. stackBoxes[i]->moveBy(Point(1 + (embedded ? 36 : 80) * i, 0));
  649. }
  650. }
  651. CStackQueue::~CStackQueue() = default;
  652. void CStackQueue::update()
  653. {
  654. std::vector<battle::Units> queueData;
  655. owner->getCurrentPlayerInterface()->cb->battleGetTurnOrder(queueData, stackBoxes.size(), 0);
  656. size_t boxIndex = 0;
  657. for(size_t turn = 0; turn < queueData.size() && boxIndex < stackBoxes.size(); turn++)
  658. {
  659. for(size_t unitIndex = 0; unitIndex < queueData[turn].size() && boxIndex < stackBoxes.size(); boxIndex++, unitIndex++)
  660. stackBoxes[boxIndex]->setUnit(queueData[turn][unitIndex], turn);
  661. }
  662. for(; boxIndex < stackBoxes.size(); boxIndex++)
  663. stackBoxes[boxIndex]->setUnit(nullptr);
  664. }
  665. CStackQueue::StackBox::StackBox(CStackQueue * owner)
  666. {
  667. OBJECT_CONSTRUCTION_CAPTURING(255-DISPOSE);
  668. background = std::make_shared<CPicture>(owner->embedded ? "StackQueueSmall" : "StackQueueLarge");
  669. pos.w = background->pos.w;
  670. pos.h = background->pos.h;
  671. if(owner->embedded)
  672. {
  673. icon = std::make_shared<CAnimImage>(owner->icons, 0, 0, 5, 2);
  674. amount = std::make_shared<CLabel>(pos.w/2, pos.h - 7, FONT_SMALL, CENTER, Colors::WHITE);
  675. }
  676. else
  677. {
  678. icon = std::make_shared<CAnimImage>(owner->icons, 0, 0, 9, 1);
  679. amount = std::make_shared<CLabel>(pos.w/2, pos.h - 8, FONT_MEDIUM, CENTER, Colors::WHITE);
  680. int icon_x = pos.w - 17;
  681. int icon_y = pos.h - 18;
  682. stateIcon = std::make_shared<CAnimImage>(owner->stateIcons, 0, 0, icon_x, icon_y);
  683. stateIcon->visible = false;
  684. }
  685. }
  686. void CStackQueue::StackBox::setUnit(const battle::Unit * unit, size_t turn)
  687. {
  688. if(unit)
  689. {
  690. background->colorize(unit->unitOwner());
  691. icon->visible = true;
  692. icon->setFrame(unit->creatureIconIndex());
  693. amount->setText(makeNumberShort(unit->getCount()));
  694. if(stateIcon)
  695. {
  696. if(unit->defended((int)turn) || (turn > 0 && unit->defended((int)turn - 1)))
  697. {
  698. stateIcon->setFrame(0, 0);
  699. stateIcon->visible = true;
  700. }
  701. else if(unit->waited((int)turn))
  702. {
  703. stateIcon->setFrame(1, 0);
  704. stateIcon->visible = true;
  705. }
  706. else
  707. {
  708. stateIcon->visible = false;
  709. }
  710. }
  711. }
  712. else
  713. {
  714. background->colorize(PlayerColor::NEUTRAL);
  715. icon->visible = false;
  716. icon->setFrame(0);
  717. amount->setText("");
  718. if(stateIcon)
  719. stateIcon->visible = false;
  720. }
  721. }