GUIClasses.cpp 61 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839
  1. #include "StdInc.h"
  2. #include "GUIClasses.h"
  3. #include "CAdvmapInterface.h"
  4. #include "CCastleInterface.h"
  5. #include "CCreatureWindow.h"
  6. #include "CHeroWindow.h"
  7. #include "CSpellWindow.h"
  8. #include "../CBitmapHandler.h"
  9. #include "../CDefHandler.h"
  10. #include "../CGameInfo.h"
  11. #include "../CMessage.h"
  12. #include "../CMusicHandler.h"
  13. #include "../CPlayerInterface.h"
  14. #include "../CPreGame.h"
  15. #include "../CVideoHandler.h"
  16. #include "../Graphics.h"
  17. #include "../mapHandler.h"
  18. #include "../battle/CBattleInterfaceClasses.h"
  19. #include "../battle/CBattleInterface.h"
  20. #include "../battle/CCreatureAnimation.h"
  21. #include "../gui/CGuiHandler.h"
  22. #include "../gui/SDL_Extensions.h"
  23. #include "../gui/CCursorHandler.h"
  24. #include "../widgets/CComponent.h"
  25. #include "../widgets/MiscWidgets.h"
  26. #include "../windows/InfoWindows.h"
  27. #include "../../CCallback.h"
  28. #include "../lib/BattleState.h"
  29. #include "../lib/CArtHandler.h"
  30. #include "../lib/CBuildingHandler.h"
  31. #include "../lib/CConfigHandler.h"
  32. #include "../lib/CCreatureHandler.h"
  33. #include "../lib/CGameState.h"
  34. #include "../lib/CGeneralTextHandler.h"
  35. #include "../lib/CHeroHandler.h"
  36. #include "../lib/CModHandler.h"
  37. #include "../lib/CondSh.h"
  38. #include "../lib/CSpellHandler.h"
  39. #include "../lib/CStopWatch.h"
  40. #include "../lib/CTownHandler.h"
  41. #include "../lib/GameConstants.h"
  42. #include "../lib/HeroBonus.h"
  43. #include "../lib/mapping/CMap.h"
  44. #include "../lib/NetPacksBase.h"
  45. #include "../lib/StartInfo.h"
  46. /*
  47. * GUIClasses.cpp, part of VCMI engine
  48. *
  49. * Authors: listed in file AUTHORS in main folder
  50. *
  51. * License: GNU General Public License v2.0 or later
  52. * Full text of license available in license.txt file, in main folder
  53. *
  54. */
  55. using namespace CSDL_Ext;
  56. std::list<CFocusable*> CFocusable::focusables;
  57. CFocusable * CFocusable::inputWithFocus;
  58. #undef min
  59. #undef max
  60. CRecruitmentWindow::CCreatureCard::CCreatureCard(CRecruitmentWindow *window, const CCreature *crea, int totalAmount):
  61. CIntObject(LCLICK | RCLICK),
  62. parent(window),
  63. selected(false),
  64. creature(crea),
  65. amount(totalAmount)
  66. {
  67. OBJ_CONSTRUCTION_CAPTURING_ALL;
  68. pic = new CCreaturePic(1,1, creature, true, true);
  69. // 1 + 1 px for borders
  70. pos.w = pic->pos.w + 2;
  71. pos.h = pic->pos.h + 2;
  72. }
  73. void CRecruitmentWindow::CCreatureCard::select(bool on)
  74. {
  75. selected = on;
  76. redraw();
  77. }
  78. void CRecruitmentWindow::CCreatureCard::clickLeft(tribool down, bool previousState)
  79. {
  80. if (down)
  81. parent->select(this);
  82. }
  83. void CRecruitmentWindow::CCreatureCard::clickRight(tribool down, bool previousState)
  84. {
  85. if (down)
  86. GH.pushInt(new CStackWindow(creature, true));
  87. }
  88. void CRecruitmentWindow::CCreatureCard::showAll(SDL_Surface * to)
  89. {
  90. CIntObject::showAll(to);
  91. if (selected)
  92. drawBorder(to, pos, int3(248, 0, 0));
  93. else
  94. drawBorder(to, pos, int3(232, 212, 120));
  95. }
  96. CRecruitmentWindow::CCostBox::CCostBox(Rect position, std::string title)
  97. {
  98. type |= REDRAW_PARENT;
  99. pos = position + pos;
  100. OBJ_CONSTRUCTION_CAPTURING_ALL;
  101. new CLabel(pos.w/2, 10, FONT_SMALL, CENTER, Colors::WHITE, title);
  102. }
  103. void CRecruitmentWindow::CCostBox::set(TResources res)
  104. {
  105. //just update values
  106. for(auto & item : resources)
  107. {
  108. item.second.first->setText(boost::lexical_cast<std::string>(res[item.first]));
  109. }
  110. }
  111. void CRecruitmentWindow::CCostBox::createItems(TResources res)
  112. {
  113. OBJ_CONSTRUCTION_CAPTURING_ALL;
  114. for(auto & curr : resources)
  115. {
  116. delete curr.second.first;
  117. delete curr.second.second;
  118. }
  119. resources.clear();
  120. TResources::nziterator iter(res);
  121. while (iter.valid())
  122. {
  123. CAnimImage * image = new CAnimImage("RESOURCE", iter->resType);
  124. CLabel * text = new CLabel(15, 43, FONT_SMALL, CENTER, Colors::WHITE, "0");
  125. resources.insert(std::make_pair(iter->resType, std::make_pair(text, image)));
  126. iter++;
  127. }
  128. if (!resources.empty())
  129. {
  130. int curx = pos.w / 2 - (16 * resources.size()) - (8 * (resources.size() - 1));
  131. //reverse to display gold as first resource
  132. for (auto & res : boost::adaptors::reverse(resources))
  133. {
  134. res.second.first->moveBy(Point(curx, 22));
  135. res.second.second->moveBy(Point(curx, 22));
  136. curx += 48;
  137. }
  138. }
  139. redraw();
  140. }
  141. void CRecruitmentWindow::select(CCreatureCard *card)
  142. {
  143. if (card == selected)
  144. return;
  145. if (selected)
  146. selected->select(false);
  147. selected = card;
  148. if (selected)
  149. selected->select(true);
  150. if (card)
  151. {
  152. si32 maxAmount = card->creature->maxAmount(LOCPLINT->cb->getResourceAmount());
  153. vstd::amin(maxAmount, card->amount);
  154. slider->setAmount(maxAmount);
  155. if(slider->getValue() != maxAmount)
  156. slider->moveTo(maxAmount);
  157. else // if slider already at 0 - emulate call to sliderMoved()
  158. sliderMoved(maxAmount);
  159. costPerTroopValue->createItems(card->creature->cost);
  160. totalCostValue->createItems(card->creature->cost);
  161. costPerTroopValue->set(card->creature->cost);
  162. totalCostValue->set(card->creature->cost * maxAmount);
  163. //Recruit %s
  164. title->setText(boost::str(boost::format(CGI->generaltexth->tcommands[21]) % card->creature->namePl));
  165. maxButton->block(maxAmount == 0);
  166. slider->block(maxAmount == 0);
  167. }
  168. }
  169. void CRecruitmentWindow::buy()
  170. {
  171. CreatureID crid = selected->creature->idNumber;
  172. SlotID dstslot = dst-> getSlotFor(crid);
  173. if(!dstslot.validSlot() && !vstd::contains(CGI->arth->bigArtifacts,CGI->arth->creatureToMachineID(crid))) //no available slot
  174. {
  175. std::string txt;
  176. if(dst->ID == Obj::HERO)
  177. {
  178. txt = CGI->generaltexth->allTexts[425]; //The %s would join your hero, but there aren't enough provisions to support them.
  179. boost::algorithm::replace_first(txt, "%s", slider->getValue() > 1 ? CGI->creh->creatures[crid]->namePl : CGI->creh->creatures[crid]->nameSing);
  180. }
  181. else
  182. {
  183. txt = CGI->generaltexth->allTexts[17]; //There is no room in the garrison for this army.
  184. }
  185. LOCPLINT->showInfoDialog(txt);
  186. return;
  187. }
  188. onRecruit(crid, slider->getValue());
  189. if(level >= 0)
  190. close();
  191. }
  192. void CRecruitmentWindow::showAll(SDL_Surface * to)
  193. {
  194. CWindowObject::showAll(to);
  195. // recruit\total values
  196. drawBorder(to, pos.x + 172, pos.y + 222, 67, 42, int3(239,215,123));
  197. drawBorder(to, pos.x + 246, pos.y + 222, 67, 42, int3(239,215,123));
  198. //cost boxes
  199. drawBorder(to, pos.x + 64, pos.y + 222, 99, 76, int3(239,215,123));
  200. drawBorder(to, pos.x + 322, pos.y + 222, 99, 76, int3(239,215,123));
  201. //buttons borders
  202. drawBorder(to, pos.x + 133, pos.y + 312, 66, 34, int3(173,142,66));
  203. drawBorder(to, pos.x + 211, pos.y + 312, 66, 34, int3(173,142,66));
  204. drawBorder(to, pos.x + 289, pos.y + 312, 66, 34, int3(173,142,66));
  205. }
  206. CRecruitmentWindow::CRecruitmentWindow(const CGDwelling *Dwelling, int Level, const CArmedInstance *Dst, const std::function<void(CreatureID,int)> &Recruit, int y_offset):
  207. CWindowObject(PLAYER_COLORED, "TPRCRT"),
  208. onRecruit(Recruit),
  209. level(Level),
  210. dst(Dst),
  211. selected(nullptr),
  212. dwelling(Dwelling)
  213. {
  214. moveBy(Point(0, y_offset));
  215. OBJ_CONSTRUCTION_CAPTURING_ALL;
  216. new CGStatusBar(new CPicture(*background, Rect(8, pos.h - 26, pos.w - 16, 19), 8, pos.h - 26));
  217. slider = new CSlider(Point(176,279),135,std::bind(&CRecruitmentWindow::sliderMoved,this, _1),0,0,0,true);
  218. maxButton = new CButton(Point(134, 313), "IRCBTNS.DEF", CGI->generaltexth->zelp[553], std::bind(&CSlider::moveToMax,slider), SDLK_m);
  219. buyButton = new CButton(Point(212, 313), "IBY6432.DEF", CGI->generaltexth->zelp[554], std::bind(&CRecruitmentWindow::buy,this), SDLK_RETURN);
  220. cancelButton = new CButton(Point(290, 313), "ICN6432.DEF", CGI->generaltexth->zelp[555], std::bind(&CRecruitmentWindow::close,this), SDLK_ESCAPE);
  221. title = new CLabel(243, 32, FONT_BIG, CENTER, Colors::YELLOW);
  222. availableValue = new CLabel(205, 253, FONT_SMALL, CENTER, Colors::WHITE);
  223. toRecruitValue = new CLabel(279, 253, FONT_SMALL, CENTER, Colors::WHITE);
  224. costPerTroopValue = new CCostBox(Rect(65, 222, 97, 74), CGI->generaltexth->allTexts[346]);
  225. totalCostValue = new CCostBox(Rect(323, 222, 97, 74), CGI->generaltexth->allTexts[466]);
  226. new CLabel(205, 233, FONT_SMALL, CENTER, Colors::WHITE, CGI->generaltexth->allTexts[465]); //available t
  227. new CLabel(279, 233, FONT_SMALL, CENTER, Colors::WHITE, CGI->generaltexth->allTexts[16]); //recruit t
  228. availableCreaturesChanged();
  229. }
  230. void CRecruitmentWindow::availableCreaturesChanged()
  231. {
  232. OBJ_CONSTRUCTION_CAPTURING_ALL;
  233. size_t selectedIndex = 0;
  234. if (!cards.empty() && selected) // find position of selected item
  235. selectedIndex = std::find(cards.begin(), cards.end(), selected) - cards.begin();
  236. //deselect card
  237. select(nullptr);
  238. //delete old cards
  239. for(auto & card : cards)
  240. delete card;
  241. cards.clear();
  242. for(int i=0; i<dwelling->creatures.size(); i++)
  243. {
  244. //find appropriate level
  245. if(level >= 0 && i != level)
  246. continue;
  247. int amount = dwelling->creatures[i].first;
  248. //create new cards
  249. for(auto & creature : boost::adaptors::reverse(dwelling->creatures[i].second))
  250. cards.push_back(new CCreatureCard(this, CGI->creh->creatures[creature], amount));
  251. }
  252. assert(!cards.empty());
  253. const int creatureWidth = 102;
  254. //normal distance between cards - 18px
  255. int requiredSpace = 18;
  256. //maximum distance we can use without reaching window borders
  257. int availableSpace = pos.w - 50 - creatureWidth * cards.size();
  258. if (cards.size() > 1) // avoid division by zero
  259. availableSpace /= cards.size() - 1;
  260. else
  261. availableSpace = 0;
  262. assert(availableSpace >= 0);
  263. const int spaceBetween = std::min(requiredSpace, availableSpace);
  264. const int totalCreatureWidth = spaceBetween + creatureWidth;
  265. //now we know total amount of cards and can move them to correct position
  266. int curx = pos.w / 2 - (creatureWidth*cards.size()/2) - (spaceBetween*(cards.size()-1)/2);
  267. for(auto & card : cards)
  268. {
  269. card->moveBy(Point(curx, 64));
  270. curx += totalCreatureWidth;
  271. }
  272. //restore selection
  273. select(cards[selectedIndex]);
  274. if(slider->getValue() == slider->getAmount())
  275. slider->moveToMax();
  276. else // if slider already at 0 - emulate call to sliderMoved()
  277. sliderMoved(slider->getAmount());
  278. }
  279. void CRecruitmentWindow::sliderMoved(int to)
  280. {
  281. if (!selected)
  282. return;
  283. buyButton->block(!to);
  284. availableValue->setText(boost::lexical_cast<std::string>(selected->amount - to));
  285. toRecruitValue->setText(boost::lexical_cast<std::string>(to));
  286. totalCostValue->set(selected->creature->cost * to);
  287. }
  288. CSplitWindow::CSplitWindow(const CCreature * creature, std::function<void(int, int)> callback_,
  289. int leftMin_, int rightMin_, int leftAmount_, int rightAmount_):
  290. CWindowObject(PLAYER_COLORED, "GPUCRDIV"),
  291. callback(callback_),
  292. leftAmount(leftAmount_),
  293. rightAmount(rightAmount_),
  294. leftMin(leftMin_),
  295. rightMin(rightMin_),
  296. slider(nullptr)
  297. {
  298. OBJ_CONSTRUCTION_CAPTURING_ALL;
  299. int total = leftAmount + rightAmount;
  300. int leftMax = total - rightMin;
  301. int rightMax = total - leftMin;
  302. ok = new CButton(Point(20, 263), "IOK6432", CButton::tooltip(), std::bind(&CSplitWindow::apply, this), SDLK_RETURN);
  303. cancel = new CButton(Point(214, 263), "ICN6432", CButton::tooltip(), std::bind(&CSplitWindow::close, this), SDLK_ESCAPE);
  304. int sliderPositions = total - leftMin - rightMin;
  305. leftInput = new CTextInput(Rect(20, 218, 100, 36), FONT_BIG, std::bind(&CSplitWindow::setAmountText, this, _1, true));
  306. rightInput = new CTextInput(Rect(176, 218, 100, 36), FONT_BIG, std::bind(&CSplitWindow::setAmountText, this, _1, false));
  307. //add filters to allow only number input
  308. leftInput->filters += std::bind(&CTextInput::numberFilter, _1, _2, leftMin, leftMax);
  309. rightInput->filters += std::bind(&CTextInput::numberFilter, _1, _2, rightMin, rightMax);
  310. leftInput->setText(boost::lexical_cast<std::string>(leftAmount), false);
  311. rightInput->setText(boost::lexical_cast<std::string>(rightAmount), false);
  312. animLeft = new CCreaturePic(20, 54, creature, true, false);
  313. animRight = new CCreaturePic(177, 54,creature, true, false);
  314. slider = new CSlider(Point(21, 194), 257, std::bind(&CSplitWindow::sliderMoved, this, _1), 0, sliderPositions, rightAmount - rightMin, true);
  315. std::string title = CGI->generaltexth->allTexts[256];
  316. boost::algorithm::replace_first(title,"%s", creature->namePl);
  317. new CLabel(150, 34, FONT_BIG, CENTER, Colors::YELLOW, title);
  318. }
  319. void CSplitWindow::setAmountText(std::string text, bool left)
  320. {
  321. int amount = 0;
  322. if (text.length())
  323. {
  324. try
  325. {
  326. amount = boost::lexical_cast<int>(text);
  327. }
  328. catch(boost::bad_lexical_cast &)
  329. {
  330. amount = left ? leftAmount : rightAmount;
  331. }
  332. int total = leftAmount + rightAmount;
  333. if (amount > total)
  334. amount = total;
  335. }
  336. setAmount(amount, left);
  337. slider->moveTo(rightAmount - rightMin);
  338. }
  339. void CSplitWindow::setAmount(int value, bool left)
  340. {
  341. int total = leftAmount + rightAmount;
  342. leftAmount = left ? value : total - value;
  343. rightAmount = left ? total - value : value;
  344. leftInput->setText(boost::lexical_cast<std::string>(leftAmount));
  345. rightInput->setText(boost::lexical_cast<std::string>(rightAmount));
  346. }
  347. void CSplitWindow::apply()
  348. {
  349. callback(leftAmount, rightAmount);
  350. close();
  351. }
  352. void CSplitWindow::sliderMoved(int to)
  353. {
  354. setAmount(rightMin + to, false);
  355. }
  356. CLevelWindow::CLevelWindow(const CGHeroInstance *hero, PrimarySkill::PrimarySkill pskill, std::vector<SecondarySkill> &skills, std::function<void(ui32)> callback):
  357. CWindowObject(PLAYER_COLORED, "LVLUPBKG"),
  358. cb(callback)
  359. {
  360. OBJ_CONSTRUCTION_CAPTURING_ALL;
  361. LOCPLINT->showingDialog->setn(true);
  362. new CAnimImage("PortraitsLarge", hero->portrait, 0, 170, 66);
  363. new CButton(Point(297, 413), "IOKAY", CButton::tooltip(), std::bind(&CLevelWindow::close, this), SDLK_RETURN);
  364. //%s has gained a level.
  365. new CLabel(192, 33, FONT_MEDIUM, CENTER, Colors::WHITE,
  366. boost::str(boost::format(CGI->generaltexth->allTexts[444]) % hero->name));
  367. //%s is now a level %d %s.
  368. new CLabel(192, 162, FONT_MEDIUM, CENTER, Colors::WHITE,
  369. boost::str(boost::format(CGI->generaltexth->allTexts[445]) % hero->name % hero->level % hero->type->heroClass->name));
  370. new CAnimImage("PSKIL42", pskill, 0, 174, 190);
  371. new CLabel(192, 253, FONT_MEDIUM, CENTER, Colors::WHITE,
  372. CGI->generaltexth->primarySkillNames[pskill] + " +1");
  373. if (!skills.empty())
  374. {
  375. std::vector<CSelectableComponent *> comps;
  376. for(auto & skill : skills)
  377. {
  378. comps.push_back(new CSelectableComponent(
  379. CComponent::secskill,
  380. skill,
  381. hero->getSecSkillLevel( SecondarySkill(skill) )+1,
  382. CComponent::medium));
  383. }
  384. box = new CComponentBox(comps, Rect(75, 300, pos.w - 150, 100));
  385. }
  386. else
  387. box = nullptr;
  388. }
  389. CLevelWindow::~CLevelWindow()
  390. {
  391. //FIXME: call callback if there was nothing to select?
  392. if (box && box->selectedIndex() != -1)
  393. cb(box->selectedIndex());
  394. LOCPLINT->showingDialog->setn(false);
  395. }
  396. static void setIntSetting(std::string group, std::string field, int value)
  397. {
  398. Settings entry = settings.write[group][field];
  399. entry->Float() = value;
  400. }
  401. static void setBoolSetting(std::string group, std::string field, bool value)
  402. {
  403. Settings fullscreen = settings.write[group][field];
  404. fullscreen->Bool() = value;
  405. }
  406. CSystemOptionsWindow::CSystemOptionsWindow():
  407. CWindowObject(PLAYER_COLORED, "SysOpBck"),
  408. onFullscreenChanged(settings.listen["video"]["fullscreen"])
  409. {
  410. OBJ_CONSTRUCTION_CAPTURING_ALL;
  411. title = new CLabel(242, 32, FONT_BIG, CENTER, Colors::YELLOW, CGI->generaltexth->allTexts[568]);
  412. const JsonNode & texts = CGI->generaltexth->localizedTexts["systemOptions"];
  413. //left window section
  414. leftGroup = new CLabelGroup(FONT_MEDIUM, CENTER, Colors::YELLOW);
  415. leftGroup->add(122, 64, CGI->generaltexth->allTexts[569]);
  416. leftGroup->add(122, 130, CGI->generaltexth->allTexts[570]);
  417. leftGroup->add(122, 196, CGI->generaltexth->allTexts[571]);
  418. leftGroup->add(122, 262, texts["resolutionButton"]["label"].String());
  419. leftGroup->add(122, 347, CGI->generaltexth->allTexts[394]);
  420. leftGroup->add(122, 412, CGI->generaltexth->allTexts[395]);
  421. //right section
  422. rightGroup = new CLabelGroup(FONT_MEDIUM, TOPLEFT, Colors::WHITE);
  423. rightGroup->add(282, 57, CGI->generaltexth->allTexts[572]);
  424. rightGroup->add(282, 89, CGI->generaltexth->allTexts[573]);
  425. rightGroup->add(282, 121, CGI->generaltexth->allTexts[574]);
  426. rightGroup->add(282, 153, CGI->generaltexth->allTexts[577]);
  427. rightGroup->add(282, 185, texts["creatureWindowButton"]["label"].String());
  428. rightGroup->add(282, 217, texts["fullscreenButton"]["label"].String());
  429. //setting up buttons
  430. load = new CButton (Point(246, 298), "SOLOAD.DEF", CGI->generaltexth->zelp[321], [&] { bloadf(); }, SDLK_l);
  431. load->setImageOrder(1, 0, 2, 3);
  432. save = new CButton (Point(357, 298), "SOSAVE.DEF", CGI->generaltexth->zelp[322], [&] { bsavef(); }, SDLK_s);
  433. save->setImageOrder(1, 0, 2, 3);
  434. restart = new CButton (Point(246, 357), "SORSTRT", CGI->generaltexth->zelp[323], [&] { brestartf(); }, SDLK_r);
  435. restart->setImageOrder(1, 0, 2, 3);
  436. mainMenu = new CButton (Point(357, 357), "SOMAIN.DEF", CGI->generaltexth->zelp[320], [&] { bmainmenuf(); }, SDLK_m);
  437. mainMenu->setImageOrder(1, 0, 2, 3);
  438. quitGame = new CButton (Point(246, 415), "soquit.def", CGI->generaltexth->zelp[324], [&] { bquitf(); }, SDLK_q);
  439. quitGame->setImageOrder(1, 0, 2, 3);
  440. backToMap = new CButton ( Point(357, 415), "soretrn.def", CGI->generaltexth->zelp[325], [&] { breturnf(); }, SDLK_RETURN);
  441. backToMap->setImageOrder(1, 0, 2, 3);
  442. backToMap->assignedKeys.insert(SDLK_ESCAPE);
  443. heroMoveSpeed = new CToggleGroup(0);
  444. heroMoveSpeed->addToggle(1, new CToggleButton(Point( 28, 77), "sysopb1.def", CGI->generaltexth->zelp[349]));
  445. heroMoveSpeed->addToggle(2, new CToggleButton(Point( 76, 77), "sysopb2.def", CGI->generaltexth->zelp[350]));
  446. heroMoveSpeed->addToggle(4, new CToggleButton(Point(124, 77), "sysopb3.def", CGI->generaltexth->zelp[351]));
  447. heroMoveSpeed->addToggle(8, new CToggleButton(Point(172, 77), "sysopb4.def", CGI->generaltexth->zelp[352]));
  448. heroMoveSpeed->setSelected(settings["adventure"]["heroSpeed"].Float());
  449. heroMoveSpeed->addCallback(std::bind(&setIntSetting, "adventure", "heroSpeed", _1));
  450. enemyMoveSpeed = new CToggleGroup(0);
  451. enemyMoveSpeed->addToggle(2, new CToggleButton(Point( 28, 144), "sysopb5.def", CGI->generaltexth->zelp[353]));
  452. enemyMoveSpeed->addToggle(4, new CToggleButton(Point( 76, 144), "sysopb6.def", CGI->generaltexth->zelp[354]));
  453. enemyMoveSpeed->addToggle(8, new CToggleButton(Point(124, 144), "sysopb7.def", CGI->generaltexth->zelp[355]));
  454. enemyMoveSpeed->addToggle(0, new CToggleButton(Point(172, 144), "sysopb8.def", CGI->generaltexth->zelp[356]));
  455. enemyMoveSpeed->setSelected(settings["adventure"]["enemySpeed"].Float());
  456. enemyMoveSpeed->addCallback(std::bind(&setIntSetting, "adventure", "enemySpeed", _1));
  457. mapScrollSpeed = new CToggleGroup(0);
  458. mapScrollSpeed->addToggle(1, new CToggleButton(Point( 28, 210), "sysopb9.def", CGI->generaltexth->zelp[357]));
  459. mapScrollSpeed->addToggle(2, new CToggleButton(Point( 92, 210), "sysob10.def", CGI->generaltexth->zelp[358]));
  460. mapScrollSpeed->addToggle(4, new CToggleButton(Point(156, 210), "sysob11.def", CGI->generaltexth->zelp[359]));
  461. mapScrollSpeed->setSelected(settings["adventure"]["scrollSpeed"].Float());
  462. mapScrollSpeed->addCallback(std::bind(&setIntSetting, "adventure", "scrollSpeed", _1));
  463. musicVolume = new CToggleGroup(0, true);
  464. for(int i=0; i<10; ++i)
  465. musicVolume->addToggle(i*11, new CToggleButton(Point(29 + 19*i, 359), "syslb.def", CGI->generaltexth->zelp[326+i]));
  466. musicVolume->setSelected(CCS->musich->getVolume());
  467. musicVolume->addCallback(std::bind(&setIntSetting, "general", "music", _1));
  468. effectsVolume = new CToggleGroup(0, true);
  469. for(int i=0; i<10; ++i)
  470. effectsVolume->addToggle(i*11, new CToggleButton(Point(29 + 19*i, 425), "syslb.def", CGI->generaltexth->zelp[336+i]));
  471. effectsVolume->setSelected(CCS->soundh->getVolume());
  472. effectsVolume->addCallback(std::bind(&setIntSetting, "general", "sound", _1));
  473. showReminder = new CToggleButton(Point(246, 87), "sysopchk.def", CGI->generaltexth->zelp[361],
  474. [&] (bool value) { setBoolSetting("adventure", "heroReminder", value); });
  475. quickCombat = new CToggleButton(Point(246, 87+32), "sysopchk.def", CGI->generaltexth->zelp[362],
  476. [&] (bool value) { setBoolSetting("adventure", "quickCombat", value); });
  477. spellbookAnim = new CToggleButton(Point(246, 87+64), "sysopchk.def", CGI->generaltexth->zelp[364],
  478. [&] (bool value) { setBoolSetting("video", "spellbookAnimation", value); });
  479. fullscreen = new CToggleButton(Point(246, 215), "sysopchk.def", CButton::tooltip(texts["fullscreenButton"]),
  480. [&] (bool value) { setBoolSetting("video", "fullscreen", value); });
  481. showReminder->setSelected(settings["adventure"]["heroReminder"].Bool());
  482. quickCombat->setSelected(settings["adventure"]["quickCombat"].Bool());
  483. spellbookAnim->setSelected(settings["video"]["spellbookAnimation"].Bool());
  484. fullscreen->setSelected(settings["video"]["fullscreen"].Bool());
  485. onFullscreenChanged([&](const JsonNode &newState){ fullscreen->setSelected(newState.Bool());});
  486. gameResButton = new CButton(Point(28, 275),"buttons/resolution", CButton::tooltip(texts["resolutionButton"]),
  487. std::bind(&CSystemOptionsWindow::selectGameRes, this), SDLK_g);
  488. std::string resText;
  489. resText += boost::lexical_cast<std::string>(settings["video"]["screenRes"]["width"].Float());
  490. resText += "x";
  491. resText += boost::lexical_cast<std::string>(settings["video"]["screenRes"]["height"].Float());
  492. gameResLabel = new CLabel(170, 292, FONT_MEDIUM, CENTER, Colors::YELLOW, resText);
  493. }
  494. void CSystemOptionsWindow::selectGameRes()
  495. {
  496. std::vector<std::string> items;
  497. const JsonNode & texts = CGI->generaltexth->localizedTexts["systemOptions"]["resolutionMenu"];
  498. for( config::CConfigHandler::GuiOptionsMap::value_type& value : conf.guiOptions)
  499. {
  500. std::string resX = boost::lexical_cast<std::string>(value.first.first);
  501. std::string resY = boost::lexical_cast<std::string>(value.first.second);
  502. items.push_back(resX + 'x' + resY);
  503. }
  504. GH.pushInt(new CObjectListWindow(items, nullptr, texts["label"].String(), texts["help"].String(),
  505. std::bind(&CSystemOptionsWindow::setGameRes, this, _1)));
  506. }
  507. void CSystemOptionsWindow::setGameRes(int index)
  508. {
  509. auto iter = conf.guiOptions.begin();
  510. std::advance(iter, index);
  511. //do not set resolution to illegal one (0x0)
  512. assert(iter!=conf.guiOptions.end() && iter->first.first > 0 && iter->first.second > 0);
  513. Settings gameRes = settings.write["video"]["screenRes"];
  514. gameRes["width"].Float() = iter->first.first;
  515. gameRes["height"].Float() = iter->first.second;
  516. std::string resText;
  517. resText += boost::lexical_cast<std::string>(iter->first.first);
  518. resText += "x";
  519. resText += boost::lexical_cast<std::string>(iter->first.second);
  520. gameResLabel->setText(resText);
  521. }
  522. void CSystemOptionsWindow::bquitf()
  523. {
  524. LOCPLINT->showYesNoDialog(CGI->generaltexth->allTexts[578], [this]{ closeAndPushEvent(SDL_QUIT); }, 0);
  525. }
  526. void CSystemOptionsWindow::breturnf()
  527. {
  528. GH.popIntTotally(this);
  529. }
  530. void CSystemOptionsWindow::bmainmenuf()
  531. {
  532. LOCPLINT->showYesNoDialog(CGI->generaltexth->allTexts[578], [this]{ closeAndPushEvent(SDL_USEREVENT, RETURN_TO_MAIN_MENU); }, 0);
  533. }
  534. void CSystemOptionsWindow::bloadf()
  535. {
  536. GH.popIntTotally(this);
  537. LOCPLINT->proposeLoadingGame();
  538. }
  539. void CSystemOptionsWindow::bsavef()
  540. {
  541. GH.popIntTotally(this);
  542. GH.pushInt(new CSavingScreen(CPlayerInterface::howManyPeople > 1));
  543. }
  544. void CSystemOptionsWindow::brestartf()
  545. {
  546. LOCPLINT->showYesNoDialog(CGI->generaltexth->allTexts[67], [this]{ closeAndPushEvent(SDL_USEREVENT, RESTART_GAME); }, 0);
  547. }
  548. void CSystemOptionsWindow::closeAndPushEvent(int eventType, int code /*= 0*/)
  549. {
  550. GH.popIntTotally(this);
  551. GH.pushSDLEvent(eventType, code);
  552. }
  553. CTavernWindow::CTavernWindow(const CGObjectInstance *TavernObj):
  554. CWindowObject(PLAYER_COLORED, "TPTAVERN"),
  555. tavernObj(TavernObj)
  556. {
  557. OBJ_CONSTRUCTION_CAPTURING_ALL;
  558. std::vector<const CGHeroInstance*> h = LOCPLINT->cb->getAvailableHeroes(TavernObj);
  559. if(h.size() < 2)
  560. h.resize(2, nullptr);
  561. h1 = new HeroPortrait(selected,0,72,299,h[0]);
  562. h2 = new HeroPortrait(selected,1,162,299,h[1]);
  563. selected = 0;
  564. if (!h[0])
  565. selected = 1;
  566. if (!h[0] && !h[1])
  567. selected = -1;
  568. oldSelected = -1;
  569. new CLabel(200, 35, FONT_BIG, CENTER, Colors::YELLOW, CGI->generaltexth->jktexts[37]);
  570. new CLabel(320, 328, FONT_SMALL, CENTER, Colors::WHITE, "2500");
  571. new CTextBox(LOCPLINT->cb->getTavernGossip(tavernObj), Rect(32, 190, 330, 68), 0, FONT_SMALL, CENTER, Colors::WHITE);
  572. new CGStatusBar(new CPicture(*background, Rect(8, pos.h - 26, pos.w - 16, 19), 8, pos.h - 26));
  573. cancel = new CButton(Point(310, 428), "ICANCEL.DEF", CButton::tooltip(CGI->generaltexth->tavernInfo[7]), std::bind(&CTavernWindow::close, this), SDLK_ESCAPE);
  574. recruit = new CButton(Point(272, 355), "TPTAV01.DEF", CButton::tooltip(), std::bind(&CTavernWindow::recruitb, this), SDLK_RETURN);
  575. thiefGuild = new CButton(Point(22, 428), "TPTAV02.DEF", CButton::tooltip(CGI->generaltexth->tavernInfo[5]), std::bind(&CTavernWindow::thievesguildb, this), SDLK_t);
  576. if(LOCPLINT->cb->getResourceAmount(Res::GOLD) < 2500) //not enough gold
  577. {
  578. recruit->addHoverText(CButton::NORMAL, CGI->generaltexth->tavernInfo[0]); //Cannot afford a Hero
  579. recruit->block(true);
  580. }
  581. else if(LOCPLINT->castleInt && LOCPLINT->cb->howManyHeroes(true) >= VLC->modh->settings.MAX_HEROES_AVAILABLE_PER_PLAYER)
  582. {
  583. //Cannot recruit. You already have %d Heroes.
  584. recruit->addHoverText(CButton::NORMAL, boost::str(boost::format(CGI->generaltexth->tavernInfo[1]) % LOCPLINT->cb->howManyHeroes(true)));
  585. recruit->block(true);
  586. }
  587. else if((!LOCPLINT->castleInt) && LOCPLINT->cb->howManyHeroes(false) >= VLC->modh->settings.MAX_HEROES_ON_MAP_PER_PLAYER)
  588. {
  589. //Cannot recruit. You already have %d Heroes.
  590. recruit->addHoverText(CButton::NORMAL, boost::str(boost::format(CGI->generaltexth->tavernInfo[1]) % LOCPLINT->cb->howManyHeroes(false)));
  591. recruit->block(true);
  592. }
  593. else if(LOCPLINT->castleInt && LOCPLINT->castleInt->town->visitingHero)
  594. {
  595. recruit->addHoverText(CButton::NORMAL, CGI->generaltexth->tavernInfo[2]); //Cannot recruit. You already have a Hero in this town.
  596. recruit->block(true);
  597. }
  598. else
  599. {
  600. if(selected == -1)
  601. recruit->block(true);
  602. }
  603. if (LOCPLINT->castleInt)
  604. CCS->videoh->open(LOCPLINT->castleInt->town->town->clientInfo.tavernVideo);
  605. else
  606. CCS->videoh->open("TAVERN.BIK");
  607. }
  608. void CTavernWindow::recruitb()
  609. {
  610. const CGHeroInstance *toBuy = (selected ? h2 : h1)->h;
  611. const CGObjectInstance *obj = tavernObj;
  612. close();
  613. LOCPLINT->cb->recruitHero(obj, toBuy);
  614. }
  615. void CTavernWindow::thievesguildb()
  616. {
  617. GH.pushInt( new CThievesGuildWindow(tavernObj) );
  618. }
  619. CTavernWindow::~CTavernWindow()
  620. {
  621. CCS->videoh->close();
  622. }
  623. void CTavernWindow::show(SDL_Surface * to)
  624. {
  625. CWindowObject::show(to);
  626. CCS->videoh->update(pos.x+70, pos.y+56, to, true, false);
  627. if(selected >= 0)
  628. {
  629. HeroPortrait *sel = selected ? h2 : h1;
  630. if (selected != oldSelected && !recruit->isBlocked())
  631. {
  632. // Selected hero just changed. Update RECRUIT button hover text if recruitment is allowed.
  633. oldSelected = selected;
  634. //Recruit %s the %s
  635. recruit->addHoverText(CButton::NORMAL, boost::str(boost::format(CGI->generaltexth->tavernInfo[3]) % sel->h->name % sel->h->type->heroClass->name));
  636. }
  637. printAtMiddleWBLoc(sel->description, 146, 395, FONT_SMALL, 200, Colors::WHITE, to);
  638. CSDL_Ext::drawBorder(to,sel->pos.x-2,sel->pos.y-2,sel->pos.w+4,sel->pos.h+4,int3(247,223,123));
  639. }
  640. }
  641. void CTavernWindow::HeroPortrait::clickLeft(tribool down, bool previousState)
  642. {
  643. if(previousState && !down && h)
  644. *_sel = _id;
  645. }
  646. void CTavernWindow::HeroPortrait::clickRight(tribool down, bool previousState)
  647. {
  648. if(down && h)
  649. {
  650. GH.pushInt(new CRClickPopupInt(new CHeroWindow(h), true));
  651. }
  652. }
  653. CTavernWindow::HeroPortrait::HeroPortrait(int &sel, int id, int x, int y, const CGHeroInstance *H)
  654. : h(H), _sel(&sel), _id(id)
  655. {
  656. addUsedEvents(LCLICK | RCLICK | HOVER);
  657. OBJ_CONSTRUCTION_CAPTURING_ALL;
  658. h = H;
  659. pos.x += x;
  660. pos.y += y;
  661. pos.w = 58;
  662. pos.h = 64;
  663. if(H)
  664. {
  665. hoverName = CGI->generaltexth->tavernInfo[4];
  666. boost::algorithm::replace_first(hoverName,"%s",H->name);
  667. int artifs = h->artifactsWorn.size() + h->artifactsInBackpack.size();
  668. for(int i=13; i<=17; i++) //war machines and spellbook don't count
  669. if(vstd::contains(h->artifactsWorn, ArtifactPosition(i)))
  670. artifs--;
  671. description = CGI->generaltexth->allTexts[215];
  672. boost::algorithm::replace_first(description, "%s", h->name);
  673. boost::algorithm::replace_first(description, "%d", boost::lexical_cast<std::string>(h->level));
  674. boost::algorithm::replace_first(description, "%s", h->type->heroClass->name);
  675. boost::algorithm::replace_first(description, "%d", boost::lexical_cast<std::string>(artifs));
  676. new CAnimImage("portraitsLarge", h->portrait);
  677. }
  678. }
  679. void CTavernWindow::HeroPortrait::hover( bool on )
  680. {
  681. //Hoverable::hover(on);
  682. if(on)
  683. GH.statusbar->setText(hoverName);
  684. else
  685. GH.statusbar->clear();
  686. }
  687. void CExchangeWindow::questlog(int whichHero)
  688. {
  689. CCS->curh->dragAndDropCursor(nullptr);
  690. }
  691. void CExchangeWindow::prepareBackground()
  692. {
  693. //printing heroes' names and levels
  694. auto genTitle = [](const CGHeroInstance *h)
  695. {
  696. return boost::str(boost::format(CGI->generaltexth->allTexts[138])
  697. % h->name % h->level % h->type->heroClass->name);
  698. };
  699. new CLabel(147, 25, FONT_SMALL, CENTER, Colors::WHITE, genTitle(heroInst[0]));
  700. new CLabel(653, 25, FONT_SMALL, CENTER, Colors::WHITE, genTitle(heroInst[1]));
  701. //printing primary skills
  702. for(int g=0; g<4; ++g)
  703. new CAnimImage("PSKIL32", g, 0, 385, 19 + 36*g);
  704. //heroes related thing
  705. for(int b=0; b<ARRAY_COUNT(heroInst); b++)
  706. {
  707. CHeroWithMaybePickedArtifact heroWArt = CHeroWithMaybePickedArtifact(this, heroInst[b]);
  708. //printing primary skills' amounts
  709. for(int m=0; m<GameConstants::PRIMARY_SKILLS; ++m)
  710. new CLabel(352 + 93 * b, 35 + 36 * m, FONT_SMALL, CENTER, Colors::WHITE,
  711. boost::lexical_cast<std::string>(heroWArt.getPrimSkillLevel(static_cast<PrimarySkill::PrimarySkill>(m))));
  712. //printing secondary skills
  713. for(int m=0; m<heroInst[b]->secSkills.size(); ++m)
  714. {
  715. int id = heroInst[b]->secSkills[m].first;
  716. int level = heroInst[b]->secSkills[m].second;
  717. new CAnimImage("SECSK32", id*3 + level + 2 , 0, 32 + 36 * m + 454 * b, 88);
  718. }
  719. //hero's specialty
  720. new CAnimImage("UN32", heroInst[b]->type->imageIndex, 0, 67 + 490*b, 45);
  721. //experience
  722. new CAnimImage("PSKIL32", 4, 0, 103 + 490*b, 45);
  723. new CLabel(119 + 490*b, 71, FONT_SMALL, CENTER, Colors::WHITE, makeNumberShort(heroInst[b]->exp));
  724. //mana points
  725. new CAnimImage("PSKIL32", 5, 0, 139 + 490*b, 45);
  726. new CLabel(155 + 490*b, 71, FONT_SMALL, CENTER, Colors::WHITE, makeNumberShort(heroInst[b]->mana));
  727. }
  728. //printing portraits
  729. new CAnimImage("PortraitsLarge", heroInst[0]->portrait, 0, 257, 13);
  730. new CAnimImage("PortraitsLarge", heroInst[1]->portrait, 0, 485, 13);
  731. }
  732. CExchangeWindow::CExchangeWindow(ObjectInstanceID hero1, ObjectInstanceID hero2, QueryID queryID):
  733. CWindowObject(PLAYER_COLORED | BORDERED, "TRADE2")
  734. {
  735. OBJ_CONSTRUCTION_CAPTURING_ALL;
  736. heroInst[0] = LOCPLINT->cb->getHero(hero1);
  737. heroInst[1] = LOCPLINT->cb->getHero(hero2);
  738. prepareBackground();
  739. artifs[0] = new CArtifactsOfHero(Point(-334, 150));
  740. artifs[0]->commonInfo = new CArtifactsOfHero::SCommonPart;
  741. artifs[0]->commonInfo->participants.insert(artifs[0]);
  742. artifs[0]->setHero(heroInst[0]);
  743. artifs[1] = new CArtifactsOfHero(Point(96, 150));
  744. artifs[1]->commonInfo = artifs[0]->commonInfo;
  745. artifs[1]->commonInfo->participants.insert(artifs[1]);
  746. artifs[1]->setHero(heroInst[1]);
  747. artSets.push_back(artifs[0]);
  748. artSets.push_back(artifs[1]);
  749. //primary skills
  750. for(int g=0; g<4; ++g)
  751. {
  752. //primary skill's clickable areas
  753. primSkillAreas.push_back(new LRClickableAreaWTextComp());
  754. primSkillAreas[g]->pos = genRect(32, 140, pos.x + 329, pos.y + 19 + 36 * g);
  755. primSkillAreas[g]->text = CGI->generaltexth->arraytxt[2+g];
  756. primSkillAreas[g]->type = g;
  757. primSkillAreas[g]->bonusValue = -1;
  758. primSkillAreas[g]->baseType = 0;
  759. primSkillAreas[g]->hoverText = CGI->generaltexth->heroscrn[1];
  760. boost::replace_first(primSkillAreas[g]->hoverText, "%s", CGI->generaltexth->primarySkillNames[g]);
  761. }
  762. //heroes related thing
  763. for(int b=0; b<ARRAY_COUNT(heroInst); b++)
  764. {
  765. //secondary skill's clickable areas
  766. for(int g=0; g<heroInst[b]->secSkills.size(); ++g)
  767. {
  768. int skill = heroInst[b]->secSkills[g].first,
  769. level = heroInst[b]->secSkills[g].second; // <1, 3>
  770. secSkillAreas[b].push_back(new LRClickableAreaWTextComp());
  771. secSkillAreas[b][g]->pos = genRect(32, 32, pos.x + 32 + g*36 + b*454 , pos.y + 88);
  772. secSkillAreas[b][g]->baseType = 1;
  773. secSkillAreas[b][g]->type = skill;
  774. secSkillAreas[b][g]->bonusValue = level;
  775. secSkillAreas[b][g]->text = CGI->generaltexth->skillInfoTexts[skill][level-1];
  776. secSkillAreas[b][g]->hoverText = CGI->generaltexth->heroscrn[21];
  777. boost::algorithm::replace_first(secSkillAreas[b][g]->hoverText, "%s", CGI->generaltexth->levels[level - 1]);
  778. boost::algorithm::replace_first(secSkillAreas[b][g]->hoverText, "%s", CGI->generaltexth->skillName[skill]);
  779. }
  780. portrait[b] = new CHeroArea(257 + 228*b, 13, heroInst[b]);
  781. specialty[b] = new LRClickableAreaWText();
  782. specialty[b]->pos = genRect(32, 32, pos.x + 69 + 490*b, pos.y + 45);
  783. specialty[b]->hoverText = CGI->generaltexth->heroscrn[27];
  784. specialty[b]->text = heroInst[b]->type->specDescr;
  785. experience[b] = new LRClickableAreaWText();
  786. experience[b]->pos = genRect(32, 32, pos.x + 105 + 490*b, pos.y + 45);
  787. experience[b]->hoverText = CGI->generaltexth->heroscrn[9];
  788. experience[b]->text = CGI->generaltexth->allTexts[2].c_str();
  789. boost::algorithm::replace_first(experience[b]->text, "%d", boost::lexical_cast<std::string>(heroInst[b]->level));
  790. boost::algorithm::replace_first(experience[b]->text, "%d", boost::lexical_cast<std::string>(CGI->heroh->reqExp(heroInst[b]->level+1)));
  791. boost::algorithm::replace_first(experience[b]->text, "%d", boost::lexical_cast<std::string>(heroInst[b]->exp));
  792. spellPoints[b] = new LRClickableAreaWText();
  793. spellPoints[b]->pos = genRect(32, 32, pos.x + 141 + 490*b, pos.y + 45);
  794. spellPoints[b]->hoverText = CGI->generaltexth->heroscrn[22];
  795. spellPoints[b]->text = CGI->generaltexth->allTexts[205];
  796. boost::algorithm::replace_first(spellPoints[b]->text, "%s", heroInst[b]->name);
  797. boost::algorithm::replace_first(spellPoints[b]->text, "%d", boost::lexical_cast<std::string>(heroInst[b]->mana));
  798. boost::algorithm::replace_first(spellPoints[b]->text, "%d", boost::lexical_cast<std::string>(heroInst[b]->manaLimit()));
  799. //setting morale
  800. morale[b] = new MoraleLuckBox(true, genRect(32, 32, 176 + 490*b, 39), true);
  801. morale[b]->set(heroInst[b]);
  802. //setting luck
  803. luck[b] = new MoraleLuckBox(false, genRect(32, 32, 212 + 490*b, 39), true);
  804. luck[b]->set(heroInst[b]);
  805. }
  806. //buttons
  807. quit = new CButton(Point(732, 567), "IOKAY.DEF", CGI->generaltexth->zelp[600], std::bind(&CExchangeWindow::close, this), SDLK_RETURN);
  808. if(queryID.getNum() > 0)
  809. quit->addCallback([=]{ LOCPLINT->cb->selectionMade(0, queryID); });
  810. questlogButton[0] = new CButton(Point( 10, 44), "hsbtns4.def", CButton::tooltip(CGI->generaltexth->heroscrn[0]), std::bind(&CExchangeWindow::questlog,this, 0));
  811. questlogButton[1] = new CButton(Point(740, 44), "hsbtns4.def", CButton::tooltip(CGI->generaltexth->heroscrn[0]), std::bind(&CExchangeWindow::questlog,this, 1));
  812. Rect barRect(5, 578, 725, 18);
  813. ourBar = new CGStatusBar(new CPicture(*background, barRect, 5, 578, false));
  814. //garrison interface
  815. garr = new CGarrisonInt(69, 131, 4, Point(418,0), *background, Point(69,131), heroInst[0],heroInst[1], true, true);
  816. garr->addSplitBtn(new CButton( Point( 10, 132), "TSBTNS.DEF", CButton::tooltip(CGI->generaltexth->tcommands[3]), std::bind(&CGarrisonInt::splitClick, garr)));
  817. garr->addSplitBtn(new CButton( Point(740, 132), "TSBTNS.DEF", CButton::tooltip(CGI->generaltexth->tcommands[3]), std::bind(&CGarrisonInt::splitClick, garr)));
  818. }
  819. CExchangeWindow::~CExchangeWindow() //d-tor
  820. {
  821. delete artifs[0]->commonInfo;
  822. artifs[0]->commonInfo = nullptr;
  823. artifs[1]->commonInfo = nullptr;
  824. }
  825. CShipyardWindow::CShipyardWindow(const std::vector<si32> &cost, int state, int boatType, const std::function<void()> &onBuy):
  826. CWindowObject(PLAYER_COLORED, "TPSHIP")
  827. {
  828. OBJ_CONSTRUCTION_CAPTURING_ALL;
  829. bgWater = new CPicture("TPSHIPBK", 100, 69);
  830. std::string boatFilenames[3] = {"AB01_", "AB02_", "AB03_"};
  831. Point waterCenter = Point(bgWater->pos.x+bgWater->pos.w/2, bgWater->pos.y+bgWater->pos.h/2);
  832. bgShip = new CAnimImage(boatFilenames[boatType], 0, 7, 120, 96, CShowableAnim::USE_RLE);
  833. bgShip->center(waterCenter);
  834. // Create resource icons and costs.
  835. std::string goldValue = boost::lexical_cast<std::string>(cost[Res::GOLD]);
  836. std::string woodValue = boost::lexical_cast<std::string>(cost[Res::WOOD]);
  837. goldCost = new CLabel(118, 294, FONT_SMALL, CENTER, Colors::WHITE, goldValue);
  838. woodCost = new CLabel(212, 294, FONT_SMALL, CENTER, Colors::WHITE, woodValue);
  839. goldPic = new CAnimImage("RESOURCE", Res::GOLD, 0, 100, 244);
  840. woodPic = new CAnimImage("RESOURCE", Res::WOOD, 0, 196, 244);
  841. quit = new CButton( Point(224, 312), "ICANCEL", CButton::tooltip(CGI->generaltexth->allTexts[599]), std::bind(&CShipyardWindow::close, this), SDLK_RETURN);
  842. build = new CButton( Point( 42, 312), "IBUY30", CButton::tooltip(CGI->generaltexth->allTexts[598]), std::bind(&CShipyardWindow::close, this),SDLK_RETURN);
  843. build->addCallback(onBuy);
  844. for(Res::ERes i = Res::WOOD; i <= Res::GOLD; vstd::advance(i, 1))
  845. {
  846. if(cost[i] > LOCPLINT->cb->getResourceAmount(i))
  847. {
  848. build->block(true);
  849. break;
  850. }
  851. }
  852. statusBar = new CGStatusBar(new CPicture(*background, Rect(8, pos.h - 26, pos.w - 16, 19), 8, pos.h - 26));
  853. title = new CLabel(164, 27, FONT_BIG, CENTER, Colors::YELLOW, CGI->generaltexth->jktexts[13]);
  854. costLabel = new CLabel(164, 220, FONT_MEDIUM, CENTER, Colors::WHITE, CGI->generaltexth->jktexts[14]);
  855. }
  856. CPuzzleWindow::CPuzzleWindow(const int3 &GrailPos, double discoveredRatio):
  857. CWindowObject(PLAYER_COLORED | BORDERED, "PUZZLE"),
  858. grailPos(GrailPos),
  859. currentAlpha(SDL_ALPHA_OPAQUE)
  860. {
  861. OBJ_CONSTRUCTION_CAPTURING_ALL;
  862. CCS->soundh->playSound(soundBase::OBELISK);
  863. quitb = new CButton(Point(670, 538), "IOK6432.DEF", CButton::tooltip(CGI->generaltexth->allTexts[599]), std::bind(&CPuzzleWindow::close, this), SDLK_RETURN);
  864. quitb->assignedKeys.insert(SDLK_ESCAPE);
  865. quitb->borderColor = Colors::METALLIC_GOLD;
  866. new CPicture("PUZZLOGO", 607, 3);
  867. new CLabel(700, 95, FONT_BIG, CENTER, Colors::YELLOW, CGI->generaltexth->allTexts[463]);
  868. new CResDataBar("ARESBAR.bmp", 3, 575, 32, 2, 85, 85);
  869. int faction = LOCPLINT->cb->getStartInfo()->playerInfos.find(LOCPLINT->playerID)->second.castle;
  870. auto & puzzleMap = CGI->townh->factions[faction]->puzzleMap;
  871. for(auto & elem : puzzleMap)
  872. {
  873. const SPuzzleInfo & info = elem;
  874. auto piece = new CPicture(info.filename, info.x, info.y);
  875. //piece that will slowly disappear
  876. if(info.whenUncovered <= GameConstants::PUZZLE_MAP_PIECES * discoveredRatio)
  877. {
  878. piecesToRemove.push_back(piece);
  879. piece->needRefresh = true;
  880. piece->recActions = piece->recActions & ~SHOWALL;
  881. #ifndef VCMI_SDL1
  882. SDL_SetSurfaceBlendMode(piece->bg,SDL_BLENDMODE_BLEND);
  883. #endif // VCMI_SDL1
  884. }
  885. }
  886. }
  887. void CPuzzleWindow::showAll(SDL_Surface * to)
  888. {
  889. int3 moveInt = int3(8, 9, 0);
  890. Rect mapRect = genRect(544, 591, pos.x + 8, pos.y + 7);
  891. CGI->mh->terrainRect
  892. (grailPos - moveInt, adventureInt->anim,
  893. &LOCPLINT->cb->getVisibilityMap(), true, adventureInt->heroAnim,
  894. to, &mapRect, 0, 0, true, moveInt);
  895. CWindowObject::showAll(to);
  896. }
  897. void CPuzzleWindow::show(SDL_Surface * to)
  898. {
  899. static int animSpeed = 2;
  900. if (currentAlpha < animSpeed)
  901. {
  902. //animation done
  903. for(auto & piece : piecesToRemove)
  904. delete piece;
  905. piecesToRemove.clear();
  906. }
  907. else
  908. {
  909. //update disappearing puzzles
  910. for(auto & piece : piecesToRemove)
  911. piece->setAlpha(currentAlpha);
  912. currentAlpha -= animSpeed;
  913. }
  914. CWindowObject::show(to);
  915. }
  916. void CTransformerWindow::CItem::move()
  917. {
  918. if (left)
  919. moveBy(Point(289, 0));
  920. else
  921. moveBy(Point(-289, 0));
  922. left = !left;
  923. }
  924. void CTransformerWindow::CItem::clickLeft(tribool down, bool previousState)
  925. {
  926. if(previousState && (!down))
  927. {
  928. move();
  929. parent->showAll(screen2);
  930. }
  931. }
  932. void CTransformerWindow::CItem::update()
  933. {
  934. icon->setFrame(parent->army->getCreature(SlotID(id))->idNumber + 2);
  935. }
  936. CTransformerWindow::CItem::CItem(CTransformerWindow * parent, int size, int id):
  937. id(id), size(size), parent(parent)
  938. {
  939. OBJ_CONSTRUCTION_CAPTURING_ALL;
  940. addUsedEvents(LCLICK);
  941. left = true;
  942. pos.w = 58;
  943. pos.h = 64;
  944. pos.x += 45 + (id%3)*83 + id/6*83;
  945. pos.y += 109 + (id/3)*98;
  946. icon = new CAnimImage("TWCRPORT", parent->army->getCreature(SlotID(id))->idNumber + 2);
  947. new CLabel(28, 76,FONT_SMALL, CENTER, Colors::WHITE, boost::lexical_cast<std::string>(size));//stack size
  948. }
  949. void CTransformerWindow::makeDeal()
  950. {
  951. for (auto & elem : items)
  952. if (!elem->left)
  953. LOCPLINT->cb->trade(town, EMarketMode::CREATURE_UNDEAD, elem->id, 0, 0, hero);
  954. }
  955. void CTransformerWindow::addAll()
  956. {
  957. for (auto & elem : items)
  958. if (elem->left)
  959. elem->move();
  960. showAll(screen2);
  961. }
  962. void CTransformerWindow::updateGarrisons()
  963. {
  964. for(auto & item : items)
  965. {
  966. item->update();
  967. }
  968. }
  969. CTransformerWindow::CTransformerWindow(const CGHeroInstance * _hero, const CGTownInstance * _town):
  970. CWindowObject(PLAYER_COLORED, "SKTRNBK"),
  971. hero(_hero),
  972. town(_town)
  973. {
  974. OBJ_CONSTRUCTION_CAPTURING_ALL;
  975. if (hero)
  976. army = hero;
  977. else
  978. army = town;
  979. for (int i=0; i<GameConstants::ARMY_SIZE; i++ )
  980. if ( army->getCreature(SlotID(i)) )
  981. items.push_back(new CItem(this, army->getStackCount(SlotID(i)), i));
  982. all = new CButton(Point(146, 416), "ALTARMY.DEF", CGI->generaltexth->zelp[590], [&] { addAll(); }, SDLK_a);
  983. convert = new CButton(Point(269, 416), "ALTSACR.DEF", CGI->generaltexth->zelp[591], [&] { makeDeal(); }, SDLK_RETURN);
  984. cancel = new CButton(Point(392, 416), "ICANCEL.DEF", CGI->generaltexth->zelp[592], [&] { close(); },SDLK_ESCAPE);
  985. bar = new CGStatusBar(new CPicture(*background, Rect(8, pos.h - 26, pos.w - 16, 19), 8, pos.h - 26));
  986. new CLabel(153, 29,FONT_SMALL, CENTER, Colors::YELLOW, CGI->generaltexth->allTexts[485]);//holding area
  987. new CLabel(153+295, 29, FONT_SMALL, CENTER, Colors::YELLOW, CGI->generaltexth->allTexts[486]);//transformer
  988. new CTextBox(CGI->generaltexth->allTexts[487], Rect(26, 56, 255, 40), 0, FONT_MEDIUM, CENTER, Colors::YELLOW);//move creatures to create skeletons
  989. new CTextBox(CGI->generaltexth->allTexts[488], Rect(320, 56, 255, 40), 0, FONT_MEDIUM, CENTER, Colors::YELLOW);//creatures here will become skeletons
  990. }
  991. void CUniversityWindow::CItem::clickLeft(tribool down, bool previousState)
  992. {
  993. if(previousState && (!down))
  994. {
  995. if ( state() != 2 )
  996. return;
  997. auto win = new CUnivConfirmWindow(parent, ID, LOCPLINT->cb->getResourceAmount(Res::GOLD) >= 2000);
  998. GH.pushInt(win);
  999. }
  1000. }
  1001. void CUniversityWindow::CItem::clickRight(tribool down, bool previousState)
  1002. {
  1003. if(down)
  1004. {
  1005. CRClickPopup::createAndPush(CGI->generaltexth->skillInfoTexts[ID][0],
  1006. new CComponent(CComponent::secskill, ID, 1));
  1007. }
  1008. }
  1009. void CUniversityWindow::CItem::hover(bool on)
  1010. {
  1011. if (on)
  1012. GH.statusbar->setText(CGI->generaltexth->skillName[ID]);
  1013. else
  1014. GH.statusbar->clear();
  1015. }
  1016. int CUniversityWindow::CItem::state()
  1017. {
  1018. if (parent->hero->getSecSkillLevel(SecondarySkill(ID)))//hero know this skill
  1019. return 1;
  1020. if (!parent->hero->canLearnSkill())//can't learn more skills
  1021. return 0;
  1022. if (parent->hero->type->heroClass->secSkillProbability[ID]==0)//can't learn this skill (like necromancy for most of non-necros)
  1023. return 0;
  1024. return 2;
  1025. }
  1026. void CUniversityWindow::CItem::showAll(SDL_Surface * to)
  1027. {
  1028. CPicture * bar;
  1029. switch (state())
  1030. {
  1031. case 0: bar = parent->red;
  1032. break;
  1033. case 1: bar = parent->yellow;
  1034. break;
  1035. case 2: bar = parent->green;
  1036. break;
  1037. default:bar = nullptr;
  1038. break;
  1039. }
  1040. assert(bar);
  1041. blitAtLoc(bar->bg, -28, -22, to);
  1042. blitAtLoc(bar->bg, -28, 48, to);
  1043. printAtMiddleLoc (CGI->generaltexth->skillName[ID], 22, -13, FONT_SMALL, Colors::WHITE,to);//Name
  1044. printAtMiddleLoc (CGI->generaltexth->levels[0], 22, 57, FONT_SMALL, Colors::WHITE,to);//Level(always basic)
  1045. CAnimImage::showAll(to);
  1046. }
  1047. CUniversityWindow::CItem::CItem(CUniversityWindow * _parent, int _ID, int X, int Y):
  1048. CAnimImage ("SECSKILL", _ID*3+3, 0, X, Y),
  1049. ID(_ID),
  1050. parent(_parent)
  1051. {
  1052. addUsedEvents(LCLICK | RCLICK | HOVER);
  1053. }
  1054. CUniversityWindow::CUniversityWindow(const CGHeroInstance * _hero, const IMarket * _market):
  1055. CWindowObject(PLAYER_COLORED, "UNIVERS1"),
  1056. hero(_hero),
  1057. market(_market)
  1058. {
  1059. OBJ_CONSTRUCTION_CAPTURING_ALL;
  1060. green = new CPicture("UNIVGREN.PCX");
  1061. yellow = new CPicture("UNIVGOLD.PCX");//bars
  1062. red = new CPicture("UNIVRED.PCX");
  1063. green->recActions =
  1064. yellow->recActions =
  1065. red->recActions = DISPOSE;
  1066. CIntObject * titlePic = nullptr;
  1067. if (market->o->ID == Obj::TOWN)
  1068. titlePic = new CAnimImage(CGI->townh->factions[ETownType::CONFLUX]->town->clientInfo.buildingsIcons, BuildingID::MAGIC_UNIVERSITY);
  1069. else
  1070. titlePic = new CPicture("UNIVBLDG");
  1071. titlePic->center(Point(232 + pos.x, 76 + pos.y));
  1072. //Clerk speech
  1073. new CTextBox(CGI->generaltexth->allTexts[603], Rect(24, 129, 413, 70), 0, FONT_SMALL, CENTER, Colors::WHITE);
  1074. //University
  1075. new CLabel(231, 26, FONT_MEDIUM, CENTER, Colors::YELLOW, CGI->generaltexth->allTexts[602]);
  1076. std::vector<int> list = market->availableItemsIds(EMarketMode::RESOURCE_SKILL);
  1077. assert(list.size() == 4);
  1078. for (int i=0; i<list.size(); i++)//prepare clickable items
  1079. items.push_back(new CItem(this, list[i], 54+i*104, 234));
  1080. cancel = new CButton(Point(200, 313), "IOKAY.DEF", CGI->generaltexth->zelp[632], [&]{ close(); }, SDLK_RETURN);
  1081. bar = new CGStatusBar(new CPicture(*background, Rect(8, pos.h - 26, pos.w - 16, 19), 8, pos.h - 26));
  1082. }
  1083. CUnivConfirmWindow::CUnivConfirmWindow(CUniversityWindow * PARENT, int SKILL, bool available ):
  1084. CWindowObject(PLAYER_COLORED, "UNIVERS2.PCX"),
  1085. parent(PARENT)
  1086. {
  1087. OBJ_CONSTRUCTION_CAPTURING_ALL;
  1088. std::string text = CGI->generaltexth->allTexts[608];
  1089. boost::replace_first(text, "%s", CGI->generaltexth->levels[0]);
  1090. boost::replace_first(text, "%s", CGI->generaltexth->skillName[SKILL]);
  1091. boost::replace_first(text, "%d", "2000");
  1092. new CTextBox(text, Rect(24, 129, 413, 70), 0, FONT_SMALL, CENTER, Colors::WHITE);//Clerk speech
  1093. new CLabel(230, 37, FONT_SMALL, CENTER, Colors::WHITE, CGI->generaltexth-> skillName[SKILL]);//Skill name
  1094. new CAnimImage("SECSKILL", SKILL*3+3, 0, 211, 51);//skill
  1095. new CLabel(230, 107, FONT_SMALL, CENTER, Colors::WHITE, CGI->generaltexth->levels[1]);//Skill level
  1096. new CAnimImage("RESOURCE", Res::GOLD, 0, 210, 210);//gold
  1097. new CLabel(230, 267, FONT_SMALL, CENTER, Colors::WHITE, "2000");//Cost
  1098. std::string hoverText = CGI->generaltexth->allTexts[609];
  1099. boost::replace_first(hoverText, "%s", CGI->generaltexth->levels[0]+ " " + CGI->generaltexth->skillName[SKILL]);
  1100. text = CGI->generaltexth->zelp[633].second;
  1101. boost::replace_first(text, "%s", CGI->generaltexth->levels[0]);
  1102. boost::replace_first(text, "%s", CGI->generaltexth->skillName[SKILL]);
  1103. boost::replace_first(text, "%d", "2000");
  1104. confirm= new CButton(Point(148, 299), "IBY6432.DEF", CButton::tooltip(hoverText, text), [=]{makeDeal(SKILL);}, SDLK_RETURN);
  1105. confirm->block(!available);
  1106. cancel = new CButton(Point(252,299), "ICANCEL.DEF", CGI->generaltexth->zelp[631], [&]{ close(); }, SDLK_ESCAPE);
  1107. bar = new CGStatusBar(new CPicture(*background, Rect(8, pos.h - 26, pos.w - 16, 19), 8, pos.h - 26));
  1108. }
  1109. void CUnivConfirmWindow::makeDeal(int skill)
  1110. {
  1111. LOCPLINT->cb->trade(parent->market->o, EMarketMode::RESOURCE_SKILL, 6, skill, 1, parent->hero);
  1112. close();
  1113. }
  1114. CHillFortWindow::CHillFortWindow(const CGHeroInstance *visitor, const CGObjectInstance *object):
  1115. CWindowObject(PLAYER_COLORED, "APHLFTBK"),
  1116. fort(object),
  1117. hero(visitor)
  1118. {
  1119. OBJ_CONSTRUCTION_CAPTURING_ALL;
  1120. slotsCount=7;
  1121. resources = CDefHandler::giveDefEss("SMALRES.DEF");
  1122. new CLabel(325, 32, FONT_BIG, CENTER, Colors::YELLOW, fort->getObjectName());//Hill Fort
  1123. heroPic = new CHeroArea(30, 60, hero);
  1124. currState.resize(slotsCount+1);
  1125. costs.resize(slotsCount);
  1126. totalSumm.resize(GameConstants::RESOURCE_QUANTITY);
  1127. for (int i = 0; i < slotsCount; i++)
  1128. {
  1129. currState[i] = getState(SlotID(i));
  1130. upgrade[i] = new CButton(Point(107 + i * 76, 171), "", CButton::tooltip(getTextForSlot(SlotID(i))), [=]{ makeDeal(SlotID(i)); }, SDLK_1 + i);
  1131. for (auto image : { "APHLF1R.DEF", "APHLF1Y.DEF", "APHLF1G.DEF" })
  1132. upgrade[i]->addImage(image);
  1133. }
  1134. currState[slotsCount] = getState(SlotID(slotsCount));
  1135. upgradeAll = new CButton(Point(30, 231), "", CButton::tooltip(CGI->generaltexth->allTexts[432]), [&]{ makeDeal(SlotID(slotsCount));}, SDLK_0);
  1136. for (auto image : { "APHLF4R.DEF", "APHLF4Y.DEF", "APHLF4G.DEF" })
  1137. upgradeAll->addImage(image);
  1138. quit = new CButton(Point(294, 275), "IOKAY.DEF", CButton::tooltip(), std::bind(&CHillFortWindow::close, this), SDLK_RETURN);
  1139. bar = new CGStatusBar(new CPicture(*background, Rect(8, pos.h - 26, pos.w - 16, 19), 8, pos.h - 26));
  1140. garr = new CGarrisonInt(108, 60, 18, Point(),background->bg,Point(108,60),hero,nullptr);
  1141. updateGarrisons();
  1142. }
  1143. void CHillFortWindow::updateGarrisons()
  1144. {
  1145. for (int i=0; i<GameConstants::RESOURCE_QUANTITY; i++)
  1146. totalSumm[i]=0;
  1147. for (int i=0; i<slotsCount; i++)
  1148. {
  1149. costs[i].clear();
  1150. int newState = getState(SlotID(i));
  1151. if (newState != -1)
  1152. {
  1153. UpgradeInfo info;
  1154. LOCPLINT->cb->getUpgradeInfo(hero, SlotID(i), info);
  1155. if (info.newID.size())//we have upgrades here - update costs
  1156. {
  1157. costs[i] = info.cost[0] * hero->getStackCount(SlotID(i));
  1158. totalSumm += costs[i];
  1159. }
  1160. }
  1161. currState[i] = newState;
  1162. upgrade[i]->setIndex(currState[i] == -1 ? 0 : currState[i]);
  1163. upgrade[i]->block(currState[i] == -1);
  1164. upgrade[i]->addHoverText(CButton::NORMAL, getTextForSlot(SlotID(i)));
  1165. }
  1166. int newState = getState(SlotID(slotsCount));
  1167. currState[slotsCount] = newState;
  1168. upgradeAll->setIndex(newState);
  1169. garr->recreateSlots();
  1170. }
  1171. void CHillFortWindow::makeDeal(SlotID slot)
  1172. {
  1173. assert(slot.getNum()>=0);
  1174. int offset = (slot.getNum() == slotsCount)?2:0;
  1175. switch (currState[slot.getNum()])
  1176. {
  1177. case 0:
  1178. LOCPLINT->showInfoDialog(CGI->generaltexth->allTexts[314 + offset],
  1179. std::vector<CComponent*>(), soundBase::sound_todo);
  1180. break;
  1181. case 1:
  1182. LOCPLINT->showInfoDialog(CGI->generaltexth->allTexts[313 + offset],
  1183. std::vector<CComponent*>(), soundBase::sound_todo);
  1184. break;
  1185. case 2:
  1186. for (int i=0; i<slotsCount; i++)
  1187. if ( slot.getNum() ==i || ( slot.getNum() == slotsCount && currState[i] == 2 ) )//this is activated slot or "upgrade all"
  1188. {
  1189. UpgradeInfo info;
  1190. LOCPLINT->cb->getUpgradeInfo(hero, SlotID(i), info);
  1191. LOCPLINT->cb->upgradeCreature(hero, SlotID(i), info.newID[0]);
  1192. }
  1193. break;
  1194. }
  1195. }
  1196. void CHillFortWindow::showAll (SDL_Surface *to)
  1197. {
  1198. CWindowObject::showAll(to);
  1199. for ( int i=0; i<slotsCount; i++)
  1200. {
  1201. if ( currState[i] == 0 || currState[i] == 2 )
  1202. {
  1203. if ( costs[i].size() )//we have several elements
  1204. {
  1205. int curY = 128;//reverse iterator is used to display gold as first element
  1206. for(int j = costs[i].size()-1; j >= 0; j--)
  1207. {
  1208. int val = costs[i][j];
  1209. if(!val) continue;
  1210. blitAtLoc(resources->ourImages[j].bitmap, 104+76*i, curY, to);
  1211. printToLoc(boost::lexical_cast<std::string>(val), 168+76*i, curY+16, FONT_SMALL, Colors::WHITE, to);
  1212. curY += 20;
  1213. }
  1214. }
  1215. else//free upgrade - print gold image and "Free" text
  1216. {
  1217. blitAtLoc(resources->ourImages[6].bitmap, 104+76*i, 128, to);
  1218. printToLoc(CGI->generaltexth->allTexts[344], 168+76*i, 144, FONT_SMALL, Colors::WHITE, to);
  1219. }
  1220. }
  1221. }
  1222. for (int i=0; i<GameConstants::RESOURCE_QUANTITY; i++)
  1223. {
  1224. if (totalSumm[i])//this resource is used - display it
  1225. {
  1226. blitAtLoc(resources->ourImages[i].bitmap, 104+76*i, 237, to);
  1227. printToLoc(boost::lexical_cast<std::string>(totalSumm[i]), 166+76*i, 253, FONT_SMALL, Colors::WHITE, to);
  1228. }
  1229. }
  1230. }
  1231. std::string CHillFortWindow::getTextForSlot(SlotID slot)
  1232. {
  1233. if ( !hero->getCreature(slot) )//we don`t have creature here
  1234. return "";
  1235. std::string str = CGI->generaltexth->allTexts[318];
  1236. int amount = hero->getStackCount(slot);
  1237. if ( amount == 1 )
  1238. boost::algorithm::replace_first(str,"%s",hero->getCreature(slot)->nameSing);
  1239. else
  1240. boost::algorithm::replace_first(str,"%s",hero->getCreature(slot)->namePl);
  1241. return str;
  1242. }
  1243. int CHillFortWindow::getState(SlotID slot)
  1244. {
  1245. TResources myRes = LOCPLINT->cb->getResourceAmount();
  1246. if ( slot.getNum() == slotsCount )//"Upgrade all" slot
  1247. {
  1248. bool allUpgraded = true;//All creatures are upgraded?
  1249. for (int i=0; i<slotsCount; i++)
  1250. allUpgraded &= currState[i] == 1 || currState[i] == -1;
  1251. if (allUpgraded)
  1252. return 1;
  1253. if(!totalSumm.canBeAfforded(myRes))
  1254. return 0;
  1255. return 2;
  1256. }
  1257. if (hero->slotEmpty(slot))//no creature here
  1258. return -1;
  1259. UpgradeInfo info;
  1260. LOCPLINT->cb->getUpgradeInfo(hero, slot, info);
  1261. if (!info.newID.size())//already upgraded
  1262. return 1;
  1263. if(!(info.cost[0] * hero->getStackCount(slot)).canBeAfforded(myRes))
  1264. return 0;
  1265. return 2;//can upgrade
  1266. }
  1267. CThievesGuildWindow::CThievesGuildWindow(const CGObjectInstance * _owner):
  1268. CWindowObject(PLAYER_COLORED | BORDERED, "TpRank"),
  1269. owner(_owner)
  1270. {
  1271. OBJ_CONSTRUCTION_CAPTURING_ALL;
  1272. type |= BLOCK_ADV_HOTKEYS;
  1273. SThievesGuildInfo tgi; //info to be displayed
  1274. LOCPLINT->cb->getThievesGuildInfo(tgi, owner);
  1275. exitb = new CButton (Point(748, 556), "TPMAGE1", CButton::tooltip(CGI->generaltexth->allTexts[600]), [&]{ close();}, SDLK_RETURN);
  1276. exitb->assignedKeys.insert(SDLK_ESCAPE);
  1277. statusBar = new CGStatusBar(3, 555, "TStatBar.bmp", 742);
  1278. resdatabar = new CMinorResDataBar();
  1279. resdatabar->pos.x += pos.x;
  1280. resdatabar->pos.y += pos.y;
  1281. //data for information table:
  1282. // fields[row][column] = list of id's of players for this box
  1283. static std::vector< std::vector< PlayerColor > > SThievesGuildInfo::* fields[] =
  1284. { &SThievesGuildInfo::numOfTowns, &SThievesGuildInfo::numOfHeroes, &SThievesGuildInfo::gold,
  1285. &SThievesGuildInfo::woodOre, &SThievesGuildInfo::mercSulfCrystGems, &SThievesGuildInfo::obelisks,
  1286. &SThievesGuildInfo::artifacts, &SThievesGuildInfo::army, &SThievesGuildInfo::income };
  1287. //printing texts & descriptions to background
  1288. for(int g=0; g<12; ++g)
  1289. {
  1290. int posY[] = {400, 460, 510};
  1291. int y;
  1292. if(g < 9)
  1293. y = 52 + 32*g;
  1294. else
  1295. y = posY[g-9];
  1296. std::string text = CGI->generaltexth->jktexts[24+g];
  1297. boost::algorithm::trim_if(text,boost::algorithm::is_any_of("\""));
  1298. new CLabel(135, y, FONT_MEDIUM, CENTER, Colors::YELLOW, text);
  1299. }
  1300. for(int g=1; g<tgi.playerColors.size(); ++g)
  1301. new CAnimImage("PRSTRIPS", g-1, 0, 250 + 66*g, 7);
  1302. for(int g=0; g<tgi.playerColors.size(); ++g)
  1303. new CLabel(283 + 66*g, 24, FONT_BIG, CENTER, Colors::YELLOW, CGI->generaltexth->jktexts[16+g]);
  1304. //printing flags
  1305. for(int g = 0; g < ARRAY_COUNT(fields); ++g) //by lines
  1306. {
  1307. for(int b=0; b<(tgi .* fields[g]).size(); ++b) //by places (1st, 2nd, ...)
  1308. {
  1309. std::vector<PlayerColor> &players = (tgi .* fields[g])[b]; //get players with this place in this line
  1310. //position of box
  1311. int xpos = 259 + 66 * b;
  1312. int ypos = 41 + 32 * g;
  1313. size_t rowLength[2]; //size of each row
  1314. rowLength[0] = std::min<size_t>(players.size(), 4);
  1315. rowLength[1] = players.size() - rowLength[0];
  1316. for (size_t j=0; j< 2; j++)
  1317. {
  1318. // origin of this row | offset for 2nd row| shift right for short rows
  1319. //if we have 2 rows, start either from mid or beginning (depending on count), otherwise center the flags
  1320. int rowStartX = xpos + (j ? 6 + (rowLength[j] < 3 ? 12 : 0) : 24 - 6 * rowLength[j]);
  1321. int rowStartY = ypos + (j ? 4 : 0);
  1322. for (size_t i=0; i< rowLength[j]; i++)
  1323. {
  1324. new CAnimImage("itgflags", players[i + j*4].getNum(), 0, rowStartX + i*12, rowStartY);
  1325. }
  1326. }
  1327. }
  1328. }
  1329. static const std::string colorToBox[] = {"PRRED.BMP", "PRBLUE.BMP", "PRTAN.BMP", "PRGREEN.BMP", "PRORANGE.BMP", "PRPURPLE.BMP", "PRTEAL.BMP", "PRROSE.bmp"};
  1330. //printing best hero
  1331. int counter = 0;
  1332. for(auto & iter : tgi.colorToBestHero)
  1333. {
  1334. if(iter.second.portrait >= 0)
  1335. {
  1336. new CPicture(colorToBox[iter.first.getNum()], 253 + 66 * counter, 334);
  1337. new CAnimImage("PortraitsSmall", iter.second.portrait, 0, 260 + 66 * counter, 360);
  1338. //TODO: r-click info:
  1339. // - r-click on hero
  1340. // - r-click on primary skill label
  1341. if(iter.second.details)
  1342. {
  1343. new CTextBox(CGI->generaltexth->allTexts[184], Rect(260 + 66*counter, 396, 52, 64),
  1344. 0, FONT_TINY, TOPLEFT, Colors::WHITE);
  1345. for (int i=0; i<iter.second.details->primskills.size(); ++i)
  1346. {
  1347. new CLabel(310 + 66 * counter, 407 + 11*i, FONT_TINY, BOTTOMRIGHT, Colors::WHITE,
  1348. boost::lexical_cast<std::string>(iter.second.details->primskills[i]));
  1349. }
  1350. }
  1351. }
  1352. counter++;
  1353. }
  1354. //printing best creature
  1355. counter = 0;
  1356. for(auto & it : tgi.bestCreature)
  1357. {
  1358. if(it.second >= 0)
  1359. new CAnimImage("TWCRPORT", it.second+2, 0, 255 + 66 * counter, 479);
  1360. counter++;
  1361. }
  1362. //printing personality
  1363. counter = 0;
  1364. for(auto & it : tgi.personality)
  1365. {
  1366. std::string text;
  1367. if(it.second == EAiTactic::NONE)
  1368. {
  1369. text = CGI->generaltexth->arraytxt[172];
  1370. }
  1371. else if(it.second != EAiTactic::RANDOM)
  1372. {
  1373. text = CGI->generaltexth->arraytxt[168 + it.second];
  1374. }
  1375. new CLabel(283 + 66*counter, 459, FONT_SMALL, CENTER, Colors::WHITE, text);
  1376. counter++;
  1377. }
  1378. }
  1379. CObjectListWindow::CItem::CItem(CObjectListWindow *_parent, size_t _id, std::string _text):
  1380. parent(_parent),
  1381. index(_id)
  1382. {
  1383. OBJ_CONSTRUCTION_CAPTURING_ALL;
  1384. border = new CPicture("TPGATES");
  1385. pos = border->pos;
  1386. addUsedEvents(LCLICK);
  1387. type |= REDRAW_PARENT;
  1388. text = new CLabel(pos.w/2, pos.h/2, FONT_SMALL, CENTER, Colors::WHITE, _text);
  1389. select(index == parent->selected);
  1390. }
  1391. void CObjectListWindow::CItem::select(bool on)
  1392. {
  1393. if (on)
  1394. border->recActions = 255;
  1395. else
  1396. border->recActions = ~(UPDATE | SHOWALL);
  1397. redraw();
  1398. }
  1399. void CObjectListWindow::CItem::clickLeft(tribool down, bool previousState)
  1400. {
  1401. if( previousState && !down)
  1402. parent->changeSelection(index);
  1403. }
  1404. CObjectListWindow::CObjectListWindow(const std::vector<int> &_items, CIntObject * titlePic, std::string _title, std::string _descr,
  1405. std::function<void(int)> Callback):
  1406. CWindowObject(PLAYER_COLORED, "TPGATE"),
  1407. onSelect(Callback)
  1408. {
  1409. items.reserve(_items.size());
  1410. for(int id : _items)
  1411. {
  1412. items.push_back(std::make_pair(id, CGI->mh->map->objects[id]->getObjectName()));
  1413. }
  1414. init(titlePic, _title, _descr);
  1415. }
  1416. CObjectListWindow::CObjectListWindow(const std::vector<std::string> &_items, CIntObject * titlePic, std::string _title, std::string _descr,
  1417. std::function<void(int)> Callback):
  1418. CWindowObject(PLAYER_COLORED, "TPGATE"),
  1419. onSelect(Callback)
  1420. {
  1421. items.reserve(_items.size());
  1422. for (size_t i=0; i<_items.size(); i++)
  1423. items.push_back(std::make_pair(int(i), _items[i]));
  1424. init(titlePic, _title, _descr);
  1425. }
  1426. void CObjectListWindow::init(CIntObject * titlePic, std::string _title, std::string _descr)
  1427. {
  1428. OBJ_CONSTRUCTION_CAPTURING_ALL;
  1429. title = new CLabel(152, 27, FONT_BIG, CENTER, Colors::YELLOW, _title);
  1430. descr = new CLabel(145, 133, FONT_SMALL, CENTER, Colors::WHITE, _descr);
  1431. ok = new CButton(Point(15, 402), "IOKAY.DEF", CButton::tooltip(), std::bind(&CObjectListWindow::elementSelected, this), SDLK_RETURN);
  1432. ok->block(true);
  1433. exit = new CButton( Point(228, 402), "ICANCEL.DEF", CButton::tooltip(), std::bind(&CGuiHandler::popIntTotally,&GH, this), SDLK_ESCAPE);
  1434. if (titlePic)
  1435. {
  1436. titleImage = titlePic;
  1437. addChild(titleImage);
  1438. titleImage->recActions = defActions;
  1439. titleImage->pos.x = pos.w/2 + pos.x - titleImage->pos.w/2;
  1440. titleImage->pos.y =75 + pos.y - titleImage->pos.h/2;
  1441. }
  1442. list = new CListBox(std::bind(&CObjectListWindow::genItem, this, _1), CListBox::DestroyFunc(),
  1443. Point(14, 151), Point(0, 25), 9, items.size(), 0, 1, Rect(262, -32, 256, 256) );
  1444. list->type |= REDRAW_PARENT;
  1445. }
  1446. CIntObject * CObjectListWindow::genItem(size_t index)
  1447. {
  1448. if (index < items.size())
  1449. return new CItem(this, index, items[index].second);
  1450. return nullptr;
  1451. }
  1452. void CObjectListWindow::elementSelected()
  1453. {
  1454. std::function<void(int)> toCall = onSelect;//save
  1455. int where = items[selected].first; //required variables
  1456. GH.popIntTotally(this);//then destroy window
  1457. toCall(where);//and send selected object
  1458. }
  1459. void CObjectListWindow::changeSelection(size_t which)
  1460. {
  1461. ok->block(false);
  1462. if (selected == which)
  1463. return;
  1464. std::list< CIntObject * > elements = list->getItems();
  1465. for(CIntObject * element : elements)
  1466. {
  1467. CItem *item;
  1468. if ( (item = dynamic_cast<CItem*>(element)) )
  1469. {
  1470. if (item->index == selected)
  1471. item->select(false);
  1472. if (item->index == which)
  1473. item->select(true);
  1474. }
  1475. }
  1476. selected = which;
  1477. }
  1478. void CObjectListWindow::keyPressed (const SDL_KeyboardEvent & key)
  1479. {
  1480. if(key.state != SDL_PRESSED)
  1481. return;
  1482. int sel = selected;
  1483. switch(key.keysym.sym)
  1484. {
  1485. break; case SDLK_UP:
  1486. sel -=1;
  1487. break; case SDLK_DOWN:
  1488. sel +=1;
  1489. break; case SDLK_PAGEUP:
  1490. sel -=9;
  1491. break; case SDLK_PAGEDOWN:
  1492. sel +=9;
  1493. break; case SDLK_HOME:
  1494. sel = 0;
  1495. break; case SDLK_END:
  1496. sel = items.size();
  1497. break; default:
  1498. return;
  1499. }
  1500. vstd::abetween(sel, 0, items.size()-1);
  1501. list->scrollTo(sel);
  1502. changeSelection(sel);
  1503. }