CBattleInterfaceClasses.cpp 27 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822
  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)
  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(br.winner==0) //attacker won
  338. {
  339. labels.push_back(std::make_shared<CLabel>(59, 124, FONT_SMALL, CENTER, Colors::WHITE, CGI->generaltexth->allTexts[410]));
  340. labels.push_back(std::make_shared<CLabel>(408, 124, FONT_SMALL, CENTER, Colors::WHITE, CGI->generaltexth->allTexts[411]));
  341. }
  342. else //if(br.winner==1)
  343. {
  344. labels.push_back(std::make_shared<CLabel>(59, 124, FONT_SMALL, CENTER, Colors::WHITE, CGI->generaltexth->allTexts[411]));
  345. labels.push_back(std::make_shared<CLabel>(412, 124, FONT_SMALL, CENTER, Colors::WHITE, CGI->generaltexth->allTexts[410]));
  346. }
  347. labels.push_back(std::make_shared<CLabel>(232, 302, FONT_BIG, CENTER, Colors::YELLOW, CGI->generaltexth->allTexts[407]));
  348. labels.push_back(std::make_shared<CLabel>(232, 332, FONT_SMALL, CENTER, Colors::WHITE, CGI->generaltexth->allTexts[408]));
  349. labels.push_back(std::make_shared<CLabel>(232, 428, FONT_SMALL, CENTER, Colors::WHITE, CGI->generaltexth->allTexts[409]));
  350. std::string sideNames[2] = {"N/A", "N/A"};
  351. for(int i = 0; i < 2; i++)
  352. {
  353. auto heroInfo = owner.cb->battleGetHeroInfo(i);
  354. const int xs[] = {21, 392};
  355. if(heroInfo.portrait >= 0) //attacking hero
  356. {
  357. icons.push_back(std::make_shared<CAnimImage>("PortraitsLarge", heroInfo.portrait, 0, xs[i], 38));
  358. sideNames[i] = heroInfo.name;
  359. }
  360. else
  361. {
  362. auto stacks = owner.cb->battleGetAllStacks();
  363. vstd::erase_if(stacks, [i](const CStack * stack) //erase stack of other side and not coming from garrison
  364. {
  365. return stack->side != i || !stack->base;
  366. });
  367. auto best = vstd::maxElementByFun(stacks, [](const CStack * stack)
  368. {
  369. return stack->type->AIValue;
  370. });
  371. if(best != stacks.end()) //should be always but to be safe...
  372. {
  373. icons.push_back(std::make_shared<CAnimImage>("TWCRPORT", (*best)->type->idNumber+2, 0, xs[i], 38));
  374. sideNames[i] = CGI->creh->creatures[(*best)->type->idNumber]->namePl;
  375. }
  376. }
  377. }
  378. //printing attacker and defender's names
  379. labels.push_back(std::make_shared<CLabel>(89, 37, FONT_SMALL, TOPLEFT, Colors::WHITE, sideNames[0]));
  380. labels.push_back(std::make_shared<CLabel>(381, 53, FONT_SMALL, BOTTOMRIGHT, Colors::WHITE, sideNames[1]));
  381. //printing casualties
  382. for(int step = 0; step < 2; ++step)
  383. {
  384. if(br.casualties[step].size()==0)
  385. {
  386. labels.push_back(std::make_shared<CLabel>(235, 360 + 97 * step, FONT_SMALL, CENTER, Colors::WHITE, CGI->generaltexth->allTexts[523]));
  387. }
  388. else
  389. {
  390. int xPos = 235 - ((int)br.casualties[step].size()*32 + ((int)br.casualties[step].size() - 1)*10)/2; //increment by 42 with each picture
  391. int yPos = 344 + step * 97;
  392. for(auto & elem : br.casualties[step])
  393. {
  394. icons.push_back(std::make_shared<CAnimImage>("CPRSMALL", CGI->creh->creatures[elem.first]->iconIndex, 0, xPos, yPos));
  395. std::ostringstream amount;
  396. amount<<elem.second;
  397. labels.push_back(std::make_shared<CLabel>(xPos + 16, yPos + 42, FONT_SMALL, CENTER, Colors::WHITE, amount.str()));
  398. xPos += 42;
  399. }
  400. }
  401. }
  402. //printing result description
  403. bool weAreAttacker = !(owner.cb->battleGetMySide());
  404. if((br.winner == 0 && weAreAttacker) || (br.winner == 1 && !weAreAttacker)) //we've won
  405. {
  406. int text = 304;
  407. switch(br.result)
  408. {
  409. case BattleResult::NORMAL:
  410. break;
  411. case BattleResult::ESCAPE:
  412. text = 303;
  413. break;
  414. case BattleResult::SURRENDER:
  415. text = 302;
  416. break;
  417. default:
  418. logGlobal->error("Invalid battle result code %d. Assumed normal.", static_cast<int>(br.result));
  419. break;
  420. }
  421. CCS->musich->playMusic("Music/Win Battle", false);
  422. CCS->videoh->open("WIN3.BIK");
  423. std::string str = CGI->generaltexth->allTexts[text];
  424. const CGHeroInstance * ourHero = owner.cb->battleGetMyHero();
  425. if (ourHero)
  426. {
  427. str += CGI->generaltexth->allTexts[305];
  428. boost::algorithm::replace_first(str, "%s", ourHero->name);
  429. boost::algorithm::replace_first(str, "%d", boost::lexical_cast<std::string>(br.exp[weAreAttacker ? 0 : 1]));
  430. }
  431. description = std::make_shared<CTextBox>(str, Rect(69, 203, 330, 68), 0, FONT_SMALL, CENTER, Colors::WHITE);
  432. }
  433. else // we lose
  434. {
  435. int text = 311;
  436. std::string musicName = "Music/LoseCombat";
  437. std::string videoName = "LBSTART.BIK";
  438. switch(br.result)
  439. {
  440. case BattleResult::NORMAL:
  441. break;
  442. case BattleResult::ESCAPE:
  443. musicName = "Music/Retreat Battle";
  444. videoName = "RTSTART.BIK";
  445. text = 310;
  446. break;
  447. case BattleResult::SURRENDER:
  448. musicName = "Music/Surrender Battle";
  449. videoName = "SURRENDER.BIK";
  450. text = 309;
  451. break;
  452. default:
  453. logGlobal->error("Invalid battle result code %d. Assumed normal.", static_cast<int>(br.result));
  454. break;
  455. }
  456. CCS->musich->playMusic(musicName, false);
  457. CCS->videoh->open(videoName);
  458. labels.push_back(std::make_shared<CLabel>(235, 235, FONT_SMALL, CENTER, Colors::WHITE, CGI->generaltexth->allTexts[text]));
  459. }
  460. }
  461. CBattleResultWindow::~CBattleResultWindow() = default;
  462. void CBattleResultWindow::activate()
  463. {
  464. owner.showingDialog->set(true);
  465. CIntObject::activate();
  466. }
  467. void CBattleResultWindow::show(SDL_Surface * to)
  468. {
  469. CIntObject::show(to);
  470. CCS->videoh->update(pos.x + 107, pos.y + 70, screen, true, false);
  471. }
  472. void CBattleResultWindow::bExitf()
  473. {
  474. CPlayerInterface &intTmp = owner; //copy reference because "this" will be destructed soon
  475. close();
  476. if(dynamic_cast<CBattleInterface*>(GH.topInt().get()))
  477. GH.popInts(1); //pop battle interface if present
  478. //Result window and battle interface are gone. We requested all dialogs to be closed before opening the battle,
  479. //so we can be sure that there is no dialogs left on GUI stack.
  480. intTmp.showingDialog->setn(false);
  481. CCS->videoh->close();
  482. }
  483. Point CClickableHex::getXYUnitAnim(BattleHex hexNum, const CStack * stack, CBattleInterface * cbi)
  484. {
  485. assert(cbi);
  486. Point ret(-500, -500); //returned value
  487. if(stack && stack->initialPosition < 0) //creatures in turrets
  488. {
  489. switch(stack->initialPosition)
  490. {
  491. case -2: //keep
  492. ret = cbi->siegeH->town->town->clientInfo.siegePositions[18];
  493. break;
  494. case -3: //lower turret
  495. ret = cbi->siegeH->town->town->clientInfo.siegePositions[19];
  496. break;
  497. case -4: //upper turret
  498. ret = cbi->siegeH->town->town->clientInfo.siegePositions[20];
  499. break;
  500. }
  501. }
  502. else
  503. {
  504. static const Point basePos(-190, -139); // position of creature in topleft corner
  505. static const int imageShiftX = 30; // X offset to base pos for facing right stacks, negative for facing left
  506. ret.x = basePos.x + 22 * ( (hexNum.getY() + 1)%2 ) + 44 * hexNum.getX();
  507. ret.y = basePos.y + 42 * hexNum.getY();
  508. if (stack)
  509. {
  510. if(cbi->creDir[stack->ID])
  511. ret.x += imageShiftX;
  512. else
  513. ret.x -= imageShiftX;
  514. //shifting position for double - hex creatures
  515. if(stack->doubleWide())
  516. {
  517. if(stack->side == BattleSide::ATTACKER)
  518. {
  519. if(cbi->creDir[stack->ID])
  520. ret.x -= 44;
  521. }
  522. else
  523. {
  524. if(!cbi->creDir[stack->ID])
  525. ret.x += 44;
  526. }
  527. }
  528. }
  529. }
  530. //returning
  531. return ret + CPlayerInterface::battleInt->pos;
  532. }
  533. void CClickableHex::hover(bool on)
  534. {
  535. hovered = on;
  536. //Hoverable::hover(on);
  537. if(!on && setAlterText)
  538. {
  539. myInterface->console->alterTxt = std::string();
  540. setAlterText = false;
  541. }
  542. }
  543. CClickableHex::CClickableHex() : setAlterText(false), myNumber(-1), accessible(true), strictHovered(false), myInterface(nullptr)
  544. {
  545. addUsedEvents(LCLICK | RCLICK | HOVER | MOVE);
  546. }
  547. void CClickableHex::mouseMoved(const SDL_MouseMotionEvent &sEvent)
  548. {
  549. if(myInterface->cellShade)
  550. {
  551. if(CSDL_Ext::SDL_GetPixel(myInterface->cellShade, sEvent.x-pos.x, sEvent.y-pos.y) == 0) //hovered pixel is outside hex
  552. {
  553. strictHovered = false;
  554. }
  555. else //hovered pixel is inside hex
  556. {
  557. strictHovered = true;
  558. }
  559. }
  560. if(hovered && strictHovered) //print attacked creature to console
  561. {
  562. const CStack * attackedStack = myInterface->getCurrentPlayerInterface()->cb->battleGetStackByPos(myNumber);
  563. if(myInterface->console->alterTxt.size() == 0 &&attackedStack != nullptr &&
  564. attackedStack->owner != myInterface->getCurrentPlayerInterface()->playerID &&
  565. attackedStack->alive())
  566. {
  567. MetaString text;
  568. text.addTxt(MetaString::GENERAL_TXT, 220);
  569. attackedStack->addNameReplacement(text);
  570. myInterface->console->alterTxt = text.toString();
  571. setAlterText = true;
  572. }
  573. }
  574. else if(setAlterText)
  575. {
  576. myInterface->console->alterTxt = std::string();
  577. setAlterText = false;
  578. }
  579. }
  580. void CClickableHex::clickLeft(tribool down, bool previousState)
  581. {
  582. if(!down && hovered && strictHovered) //we've been really clicked!
  583. {
  584. myInterface->hexLclicked(myNumber);
  585. }
  586. }
  587. void CClickableHex::clickRight(tribool down, bool previousState)
  588. {
  589. const CStack * myst = myInterface->getCurrentPlayerInterface()->cb->battleGetStackByPos(myNumber); //stack info
  590. if(hovered && strictHovered && myst!=nullptr)
  591. {
  592. if(!myst->alive()) return;
  593. if(down)
  594. {
  595. GH.pushIntT<CStackWindow>(myst, true);
  596. }
  597. }
  598. }
  599. CStackQueue::CStackQueue(bool Embedded, CBattleInterface * _owner)
  600. : embedded(Embedded),
  601. owner(_owner)
  602. {
  603. OBJECT_CONSTRUCTION_CAPTURING(255-DISPOSE);
  604. if(embedded)
  605. {
  606. pos.w = QUEUE_SIZE * 37;
  607. pos.h = 46;
  608. pos.x = screen->w/2 - pos.w/2;
  609. pos.y = (screen->h - 600)/2 + 10;
  610. icons = std::make_shared<CAnimation>("CPRSMALL");
  611. stateIcons = std::make_shared<CAnimation>("VCMI/BATTLEQUEUE/STATESSMALL");
  612. }
  613. else
  614. {
  615. pos.w = 800;
  616. pos.h = 85;
  617. background = std::make_shared<CFilledTexture>("DIBOXBCK", Rect(0, 0, pos.w, pos.h));
  618. icons = std::make_shared<CAnimation>("TWCRPORT");
  619. stateIcons = std::make_shared<CAnimation>("VCMI/BATTLEQUEUE/STATESSMALL");
  620. //TODO: where use big icons?
  621. //stateIcons = std::make_shared<CAnimation>("VCMI/BATTLEQUEUE/STATESBIG");
  622. }
  623. stateIcons->preload();
  624. stackBoxes.resize(QUEUE_SIZE);
  625. for (int i = 0; i < stackBoxes.size(); i++)
  626. {
  627. stackBoxes[i] = std::make_shared<StackBox>(this);
  628. stackBoxes[i]->moveBy(Point(1 + (embedded ? 36 : 80) * i, 0));
  629. }
  630. }
  631. CStackQueue::~CStackQueue() = default;
  632. void CStackQueue::update()
  633. {
  634. std::vector<battle::Units> queueData;
  635. owner->getCurrentPlayerInterface()->cb->battleGetTurnOrder(queueData, stackBoxes.size(), 0);
  636. size_t boxIndex = 0;
  637. for(size_t turn = 0; turn < queueData.size() && boxIndex < stackBoxes.size(); turn++)
  638. {
  639. for(size_t unitIndex = 0; unitIndex < queueData[turn].size() && boxIndex < stackBoxes.size(); boxIndex++, unitIndex++)
  640. stackBoxes[boxIndex]->setUnit(queueData[turn][unitIndex], turn);
  641. }
  642. for(; boxIndex < stackBoxes.size(); boxIndex++)
  643. stackBoxes[boxIndex]->setUnit(nullptr);
  644. }
  645. CStackQueue::StackBox::StackBox(CStackQueue * owner)
  646. {
  647. OBJECT_CONSTRUCTION_CAPTURING(255-DISPOSE);
  648. background = std::make_shared<CPicture>(owner->embedded ? "StackQueueSmall" : "StackQueueLarge");
  649. pos.w = background->pos.w;
  650. pos.h = background->pos.h;
  651. if(owner->embedded)
  652. {
  653. icon = std::make_shared<CAnimImage>(owner->icons, 0, 0, 5, 2);
  654. amount = std::make_shared<CLabel>(pos.w/2, pos.h - 7, FONT_SMALL, CENTER, Colors::WHITE);
  655. }
  656. else
  657. {
  658. icon = std::make_shared<CAnimImage>(owner->icons, 0, 0, 9, 1);
  659. amount = std::make_shared<CLabel>(pos.w/2, pos.h - 8, FONT_MEDIUM, CENTER, Colors::WHITE);
  660. int icon_x = pos.w - 17;
  661. int icon_y = pos.h - 18;
  662. stateIcon = std::make_shared<CAnimImage>(owner->stateIcons, 0, 0, icon_x, icon_y);
  663. stateIcon->visible = false;
  664. }
  665. }
  666. void CStackQueue::StackBox::setUnit(const battle::Unit * unit, size_t turn)
  667. {
  668. if(unit)
  669. {
  670. background->colorize(unit->unitOwner());
  671. icon->visible = true;
  672. icon->setFrame(unit->creatureIconIndex());
  673. amount->setText(makeNumberShort(unit->getCount()));
  674. if(stateIcon)
  675. {
  676. if(unit->defended((int)turn) || (turn > 0 && unit->defended((int)turn - 1)))
  677. {
  678. stateIcon->setFrame(0, 0);
  679. stateIcon->visible = true;
  680. }
  681. else if(unit->waited((int)turn))
  682. {
  683. stateIcon->setFrame(1, 0);
  684. stateIcon->visible = true;
  685. }
  686. else
  687. {
  688. stateIcon->visible = false;
  689. }
  690. }
  691. }
  692. else
  693. {
  694. background->colorize(PlayerColor::NEUTRAL);
  695. icon->visible = false;
  696. icon->setFrame(0);
  697. amount->setText("");
  698. if(stateIcon)
  699. stateIcon->visible = false;
  700. }
  701. }