CCastleInterface.cpp 59 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878
  1. /*
  2. * CCastleInterface.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 "CCastleInterface.h"
  12. #include "CHeroWindow.h"
  13. #include "CTradeWindow.h"
  14. #include "InfoWindows.h"
  15. #include "GUIClasses.h"
  16. #include "QuickRecruitmentWindow.h"
  17. #include "../CGameInfo.h"
  18. #include "../CMusicHandler.h"
  19. #include "../CPlayerInterface.h"
  20. #include "../gui/CGuiHandler.h"
  21. #include "../widgets/MiscWidgets.h"
  22. #include "../widgets/CComponent.h"
  23. #include "../widgets/Buttons.h"
  24. #include "../widgets/TextControls.h"
  25. #include "../renderSDL/SDL_Extensions.h"
  26. #include "../render/IImage.h"
  27. #include "../render/ColorFilter.h"
  28. #include "../adventureMap/CAdvMapInt.h"
  29. #include "../adventureMap/CList.h"
  30. #include "../adventureMap/CResDataBar.h"
  31. #include "../../CCallback.h"
  32. #include "../../lib/CArtHandler.h"
  33. #include "../../lib/CBuildingHandler.h"
  34. #include "../../lib/CCreatureHandler.h"
  35. #include "../../lib/CGeneralTextHandler.h"
  36. #include "../../lib/CModHandler.h"
  37. #include "../../lib/GameSettings.h"
  38. #include "../../lib/spells/CSpellHandler.h"
  39. #include "../../lib/CTownHandler.h"
  40. #include "../../lib/GameConstants.h"
  41. #include "../../lib/StartInfo.h"
  42. #include "../../lib/mapping/CCampaignHandler.h"
  43. #include "../../lib/mapObjects/CGHeroInstance.h"
  44. #include "../../lib/mapObjects/CGTownInstance.h"
  45. static bool useCompactCreatureBox()
  46. {
  47. return settings["gameTweaks"]["compactTownCreatureInfo"].Bool();
  48. }
  49. static bool useAvailableAmountAsCreatureLabel()
  50. {
  51. return settings["gameTweaks"]["availableCreaturesAsDwellingLabel"].Bool();
  52. }
  53. CBuildingRect::CBuildingRect(CCastleBuildings * Par, const CGTownInstance * Town, const CStructure * Str)
  54. : CShowableAnim(0, 0, Str->defName, CShowableAnim::BASE, BUILDING_FRAME_TIME),
  55. parent(Par),
  56. town(Town),
  57. str(Str),
  58. border(nullptr),
  59. area(nullptr),
  60. stateTimeCounter(BUILD_ANIMATION_FINISHED_TIMEPOINT)
  61. {
  62. addUsedEvents(LCLICK | RCLICK | HOVER);
  63. pos.x += str->pos.x;
  64. pos.y += str->pos.y;
  65. // special animation frame manipulation for castle shipyard with and without ship
  66. // done due to .def used in special way, not to animate building - first image is for shipyard without citadel moat, 2nd image is for including moat
  67. if(Town->town->faction->getId() == FactionID::CASTLE && Str->building &&
  68. (Str->building->bid == BuildingID::SHIPYARD || Str->building->bid == BuildingID::SHIP))
  69. {
  70. if(Town->hasBuilt(BuildingID::CITADEL))
  71. {
  72. this->first = 1;
  73. this->frame = 1;
  74. }
  75. else
  76. this->last = 0;
  77. }
  78. if(!str->borderName.empty())
  79. border = IImage::createFromFile(str->borderName, EImageBlitMode::ALPHA);
  80. if(!str->areaName.empty())
  81. area = IImage::createFromFile(str->areaName, EImageBlitMode::ALPHA);
  82. }
  83. const CBuilding * CBuildingRect::getBuilding()
  84. {
  85. if (!str->building)
  86. return nullptr;
  87. if (str->hiddenUpgrade) // hidden upgrades, e.g. hordes - return base (dwelling for hordes)
  88. return town->town->buildings.at(str->building->getBase());
  89. return str->building;
  90. }
  91. bool CBuildingRect::operator<(const CBuildingRect & p2) const
  92. {
  93. return (str->pos.z) < (p2.str->pos.z);
  94. }
  95. void CBuildingRect::hover(bool on)
  96. {
  97. if(on)
  98. {
  99. if(!(active & MOVE))
  100. addUsedEvents(MOVE);
  101. }
  102. else
  103. {
  104. if(active & MOVE)
  105. removeUsedEvents(MOVE);
  106. if(parent->selectedBuilding == this)
  107. {
  108. parent->selectedBuilding = nullptr;
  109. GH.statusbar->clear();
  110. }
  111. }
  112. }
  113. void CBuildingRect::clickLeft(tribool down, bool previousState)
  114. {
  115. if(previousState && getBuilding() && area && !down && (parent->selectedBuilding==this))
  116. {
  117. if(!area->isTransparent(GH.getCursorPosition() - pos.topLeft())) //inside building image
  118. {
  119. auto building = getBuilding();
  120. parent->buildingClicked(building->bid, building->subId, building->upgrade);
  121. }
  122. }
  123. }
  124. void CBuildingRect::clickRight(tribool down, bool previousState)
  125. {
  126. if((!area) || (!((bool)down)) || (this!=parent->selectedBuilding) || getBuilding() == nullptr)
  127. return;
  128. if( !area->isTransparent(GH.getCursorPosition() - pos.topLeft()) ) //inside building image
  129. {
  130. BuildingID bid = getBuilding()->bid;
  131. const CBuilding *bld = town->town->buildings.at(bid);
  132. if (bid < BuildingID::DWELL_FIRST)
  133. {
  134. CRClickPopup::createAndPush(CInfoWindow::genText(bld->getNameTranslated(), bld->getDescriptionTranslated()),
  135. std::make_shared<CComponent>(CComponent::building, bld->town->faction->getIndex(), bld->bid));
  136. }
  137. else
  138. {
  139. int level = ( bid - BuildingID::DWELL_FIRST ) % GameConstants::CREATURES_PER_TOWN;
  140. GH.pushIntT<CDwellingInfoBox>(parent->pos.x+parent->pos.w / 2, parent->pos.y+parent->pos.h /2, town, level);
  141. }
  142. }
  143. }
  144. SDL_Color multiplyColors(const SDL_Color & b, const SDL_Color & a, double f)
  145. {
  146. SDL_Color ret;
  147. ret.r = static_cast<uint8_t>(a.r * f + b.r * (1 - f));
  148. ret.g = static_cast<uint8_t>(a.g * f + b.g * (1 - f));
  149. ret.b = static_cast<uint8_t>(a.b * f + b.b * (1 - f));
  150. ret.a = static_cast<uint8_t>(a.a * f + b.b * (1 - f));
  151. return ret;
  152. }
  153. void CBuildingRect::show(SDL_Surface * to)
  154. {
  155. uint32_t stageDelay = BUILDING_APPEAR_TIMEPOINT;
  156. if(stateTimeCounter < BUILDING_APPEAR_TIMEPOINT)
  157. {
  158. setAlpha(255 * stateTimeCounter / stageDelay);
  159. CShowableAnim::show(to);
  160. }
  161. else
  162. {
  163. setAlpha(255);
  164. CShowableAnim::show(to);
  165. }
  166. if(border && stateTimeCounter > BUILDING_APPEAR_TIMEPOINT)
  167. {
  168. if(stateTimeCounter >= BUILD_ANIMATION_FINISHED_TIMEPOINT)
  169. {
  170. if(parent->selectedBuilding == this)
  171. border->draw(to, pos.x, pos.y);
  172. return;
  173. }
  174. auto darkBorder = ColorFilter::genRangeShifter(0.f, 0.f, 0.f, 0.5f, 0.5f, 0.5f );
  175. auto lightBorder = ColorFilter::genRangeShifter(0.f, 0.f, 0.f, 2.0f, 2.0f, 2.0f );
  176. auto baseBorder = ColorFilter::genEmptyShifter();
  177. float progress = float(stateTimeCounter % stageDelay) / stageDelay;
  178. if (stateTimeCounter < BUILDING_WHITE_BORDER_TIMEPOINT)
  179. border->adjustPalette(ColorFilter::genInterpolated(lightBorder, darkBorder, progress), 0);
  180. else
  181. if (stateTimeCounter < BUILDING_YELLOW_BORDER_TIMEPOINT)
  182. border->adjustPalette(ColorFilter::genInterpolated(darkBorder, baseBorder, progress), 0);
  183. else
  184. border->adjustPalette(baseBorder, 0);
  185. border->draw(to, pos.x, pos.y);
  186. }
  187. if(stateTimeCounter < BUILD_ANIMATION_FINISHED_TIMEPOINT)
  188. stateTimeCounter += GH.mainFPSmng->getElapsedMilliseconds();
  189. }
  190. void CBuildingRect::showAll(SDL_Surface * to)
  191. {
  192. if (stateTimeCounter == 0)
  193. return;
  194. CShowableAnim::showAll(to);
  195. if(!active && parent->selectedBuilding == this && border)
  196. border->draw(to, pos.x, pos.y);
  197. }
  198. std::string CBuildingRect::getSubtitle()//hover text for building
  199. {
  200. if (!getBuilding())
  201. return "";
  202. int bid = getBuilding()->bid;
  203. if (bid<30)//non-dwellings - only buiding name
  204. return town->town->buildings.at(getBuilding()->bid)->getNameTranslated();
  205. else//dwellings - recruit %creature%
  206. {
  207. auto & availableCreatures = town->creatures[(bid-30)%GameConstants::CREATURES_PER_TOWN].second;
  208. if(availableCreatures.size())
  209. {
  210. int creaID = availableCreatures.back();//taking last of available creatures
  211. return CGI->generaltexth->allTexts[16] + " " + CGI->creh->objects.at(creaID)->getNamePluralTranslated();
  212. }
  213. else
  214. {
  215. logGlobal->warn("Dwelling with id %d offers no creatures!", bid);
  216. return "#ERROR#";
  217. }
  218. }
  219. }
  220. void CBuildingRect::mouseMoved (const Point & cursorPosition)
  221. {
  222. if(area && pos.isInside(cursorPosition.x, cursorPosition.y))
  223. {
  224. if(area->isTransparent(cursorPosition - pos.topLeft())) //hovered pixel is inside this building
  225. {
  226. if(parent->selectedBuilding == this)
  227. {
  228. parent->selectedBuilding = nullptr;
  229. GH.statusbar->clear();
  230. }
  231. }
  232. else //inside the area of this building
  233. {
  234. if(! parent->selectedBuilding //no building hovered
  235. || (*parent->selectedBuilding)<(*this)) //or we are on top
  236. {
  237. parent->selectedBuilding = this;
  238. GH.statusbar->write(getSubtitle());
  239. }
  240. }
  241. }
  242. }
  243. CDwellingInfoBox::CDwellingInfoBox(int centerX, int centerY, const CGTownInstance * Town, int level)
  244. : CWindowObject(RCLICK_POPUP, "CRTOINFO", Point(centerX, centerY))
  245. {
  246. OBJECT_CONSTRUCTION_CAPTURING(255-DISPOSE);
  247. background->colorize(Town->tempOwner);
  248. const CCreature * creature = CGI->creh->objects.at(Town->creatures.at(level).second.back());
  249. title = std::make_shared<CLabel>(80, 30, FONT_SMALL, ETextAlignment::CENTER, Colors::WHITE, creature->getNamePluralTranslated());
  250. animation = std::make_shared<CCreaturePic>(30, 44, creature, true, true);
  251. std::string text = std::to_string(Town->creatures.at(level).first);
  252. available = std::make_shared<CLabel>(80,190, FONT_SMALL, ETextAlignment::CENTER, Colors::WHITE, CGI->generaltexth->allTexts[217] + text);
  253. costPerTroop = std::make_shared<CLabel>(80, 227, FONT_SMALL, ETextAlignment::CENTER, Colors::WHITE, CGI->generaltexth->allTexts[346]);
  254. for(int i = 0; i<GameConstants::RESOURCE_QUANTITY; i++)
  255. {
  256. if(creature->cost[i])
  257. {
  258. resPicture.push_back(std::make_shared<CAnimImage>("RESOURCE", i, 0, 0, 0));
  259. resAmount.push_back(std::make_shared<CLabel>(0,0, FONT_SMALL, ETextAlignment::CENTER, Colors::WHITE, std::to_string(creature->cost[i])));
  260. }
  261. }
  262. int posY = 238;
  263. int posX = pos.w/2 - (int)resAmount.size() * 25 + 5;
  264. for (size_t i=0; i<resAmount.size(); i++)
  265. {
  266. resPicture[i]->moveBy(Point(posX, posY));
  267. resAmount[i]->moveBy(Point(posX+16, posY+43));
  268. posX += 50;
  269. }
  270. }
  271. CDwellingInfoBox::~CDwellingInfoBox() = default;
  272. CHeroGSlot::CHeroGSlot(int x, int y, int updown, const CGHeroInstance * h, HeroSlots * Owner)
  273. {
  274. OBJECT_CONSTRUCTION_CAPTURING(255-DISPOSE);
  275. owner = Owner;
  276. pos.x += x;
  277. pos.y += y;
  278. pos.w = 58;
  279. pos.h = 64;
  280. upg = updown;
  281. portrait = std::make_shared<CAnimImage>("PortraitsLarge", 0, 0, 0, 0);
  282. portrait->visible = false;
  283. flag = std::make_shared<CAnimImage>("CREST58", 0, 0, 0, 0);
  284. flag->visible = false;
  285. selection = std::make_shared<CAnimImage>("TWCRPORT", 1, 0);
  286. selection->visible = false;
  287. set(h);
  288. addUsedEvents(LCLICK | RCLICK | HOVER);
  289. }
  290. CHeroGSlot::~CHeroGSlot() = default;
  291. void CHeroGSlot::hover(bool on)
  292. {
  293. if(!on)
  294. {
  295. GH.statusbar->clear();
  296. return;
  297. }
  298. std::shared_ptr<CHeroGSlot> other = upg ? owner->garrisonedHero : owner->visitingHero;
  299. std::string temp;
  300. if(hero)
  301. {
  302. if(isSelected())//view NNN
  303. {
  304. temp = CGI->generaltexth->tcommands[4];
  305. boost::algorithm::replace_first(temp,"%s",hero->getNameTranslated());
  306. }
  307. else if(other->hero && other->isSelected())//exchange
  308. {
  309. temp = CGI->generaltexth->tcommands[7];
  310. boost::algorithm::replace_first(temp,"%s",hero->getNameTranslated());
  311. boost::algorithm::replace_first(temp,"%s",other->hero->getNameTranslated());
  312. }
  313. else// select NNN (in ZZZ)
  314. {
  315. if(upg)//down - visiting
  316. {
  317. temp = CGI->generaltexth->tcommands[32];
  318. boost::algorithm::replace_first(temp,"%s",hero->getNameTranslated());
  319. }
  320. else //up - garrison
  321. {
  322. temp = CGI->generaltexth->tcommands[12];
  323. boost::algorithm::replace_first(temp,"%s",hero->getNameTranslated());
  324. }
  325. }
  326. }
  327. else //we are empty slot
  328. {
  329. if(other->isSelected() && other->hero) //move NNNN
  330. {
  331. temp = CGI->generaltexth->tcommands[6];
  332. boost::algorithm::replace_first(temp,"%s",other->hero->getNameTranslated());
  333. }
  334. else //empty
  335. {
  336. temp = CGI->generaltexth->allTexts[507];
  337. }
  338. }
  339. if(temp.size())
  340. GH.statusbar->write(temp);
  341. }
  342. void CHeroGSlot::clickLeft(tribool down, bool previousState)
  343. {
  344. std::shared_ptr<CHeroGSlot> other = upg ? owner->garrisonedHero : owner->visitingHero;
  345. if(!down)
  346. {
  347. owner->garr->setSplittingMode(false);
  348. owner->garr->selectSlot(nullptr);
  349. if(hero && isSelected())
  350. {
  351. setHighlight(false);
  352. LOCPLINT->openHeroWindow(hero);
  353. }
  354. else if(other->hero && other->isSelected())
  355. {
  356. owner->swapArmies();
  357. }
  358. else if(hero)
  359. {
  360. setHighlight(true);
  361. owner->garr->selectSlot(nullptr);
  362. redraw();
  363. }
  364. //refresh statusbar
  365. hover(false);
  366. hover(true);
  367. }
  368. }
  369. void CHeroGSlot::clickRight(tribool down, bool previousState)
  370. {
  371. if(hero && down)
  372. {
  373. GH.pushIntT<CInfoBoxPopup>(Point(pos.x + 175, pos.y + 100), hero);
  374. }
  375. }
  376. void CHeroGSlot::deactivate()
  377. {
  378. selection->visible = false;
  379. CIntObject::deactivate();
  380. }
  381. bool CHeroGSlot::isSelected() const
  382. {
  383. return selection->visible;
  384. }
  385. void CHeroGSlot::setHighlight(bool on)
  386. {
  387. selection->visible = on;
  388. if(owner->garrisonedHero->hero && owner->visitingHero->hero) //two heroes in town
  389. {
  390. for(auto & elem : owner->garr->splitButtons) //splitting enabled when slot higlighted
  391. elem->block(!on);
  392. }
  393. }
  394. void CHeroGSlot::set(const CGHeroInstance * newHero)
  395. {
  396. OBJECT_CONSTRUCTION_CAPTURING(255-DISPOSE);
  397. hero = newHero;
  398. selection->visible = false;
  399. portrait->visible = false;
  400. flag->visible = false;
  401. if(newHero)
  402. {
  403. portrait->visible = true;
  404. portrait->setFrame(newHero->portrait);
  405. }
  406. else if(!upg && owner->showEmpty) //up garrison
  407. {
  408. flag->visible = true;
  409. flag->setFrame(LOCPLINT->castleInt->town->getOwner().getNum());
  410. }
  411. }
  412. HeroSlots::HeroSlots(const CGTownInstance * Town, Point garrPos, Point visitPos, std::shared_ptr<CGarrisonInt> Garrison, bool ShowEmpty):
  413. showEmpty(ShowEmpty),
  414. town(Town),
  415. garr(Garrison)
  416. {
  417. OBJECT_CONSTRUCTION_CAPTURING(255-DISPOSE);
  418. garrisonedHero = std::make_shared<CHeroGSlot>(garrPos.x, garrPos.y, 0, town->garrisonHero, this);
  419. visitingHero = std::make_shared<CHeroGSlot>(visitPos.x, visitPos.y, 1, town->visitingHero, this);
  420. }
  421. HeroSlots::~HeroSlots() = default;
  422. void HeroSlots::update()
  423. {
  424. garrisonedHero->set(town->garrisonHero);
  425. visitingHero->set(town->visitingHero);
  426. }
  427. void HeroSlots::splitClicked()
  428. {
  429. if(!!town->visitingHero && town->garrisonHero && (visitingHero->isSelected() || garrisonedHero->isSelected()))
  430. {
  431. LOCPLINT->heroExchangeStarted(town->visitingHero->id, town->garrisonHero->id, QueryID(-1));
  432. }
  433. }
  434. void HeroSlots::swapArmies()
  435. {
  436. bool allow = true;
  437. //moving hero out of town - check if it is allowed
  438. if (town->garrisonHero)
  439. {
  440. if (!town->visitingHero && LOCPLINT->cb->howManyHeroes(false) >= CGI->settings()->getInteger(EGameSettings::HEROES_PER_PLAYER_ON_MAP_CAP))
  441. {
  442. std::string text = CGI->generaltexth->translate("core.genrltxt.18"); //You already have %d adventuring heroes under your command.
  443. boost::algorithm::replace_first(text,"%d",std::to_string(LOCPLINT->cb->howManyHeroes(false)));
  444. LOCPLINT->showInfoDialog(text, std::vector<std::shared_ptr<CComponent>>(), soundBase::sound_todo);
  445. allow = false;
  446. }
  447. else if (town->garrisonHero->stacksCount() == 0)
  448. {
  449. //This hero has no creatures. A hero must have creatures before he can brave the dangers of the countryside.
  450. LOCPLINT->showInfoDialog(CGI->generaltexth->translate("core.genrltxt.19"), {}, soundBase::sound_todo);
  451. allow = false;
  452. }
  453. }
  454. if(!town->garrisonHero && town->visitingHero) //visiting => garrison, merge armies: town army => hero army
  455. {
  456. if(!town->visitingHero->canBeMergedWith(*town))
  457. {
  458. LOCPLINT->showInfoDialog(CGI->generaltexth->allTexts[275], std::vector<std::shared_ptr<CComponent>>(), soundBase::sound_todo);
  459. allow = false;
  460. }
  461. }
  462. garrisonedHero->setHighlight(false);
  463. visitingHero->setHighlight(false);
  464. if (allow)
  465. LOCPLINT->cb->swapGarrisonHero(town);
  466. }
  467. class SORTHELP
  468. {
  469. public:
  470. bool operator() (const CIntObject * a, const CIntObject * b)
  471. {
  472. auto b1 = dynamic_cast<const CBuildingRect *>(a);
  473. auto b2 = dynamic_cast<const CBuildingRect *>(b);
  474. if(!b1 && !b2)
  475. return intptr_t(a) < intptr_t(b);
  476. if(b1 && !b2)
  477. return false;
  478. if(!b1 && b2)
  479. return true;
  480. return (*b1)<(*b2);
  481. }
  482. };
  483. SORTHELP buildSorter;
  484. CCastleBuildings::CCastleBuildings(const CGTownInstance* Town):
  485. town(Town),
  486. selectedBuilding(nullptr)
  487. {
  488. OBJECT_CONSTRUCTION_CAPTURING(255-DISPOSE);
  489. background = std::make_shared<CPicture>(town->town->clientInfo.townBackground);
  490. background->needRefresh = true;
  491. background->getSurface()->setBlitMode(EImageBlitMode::OPAQUE);
  492. pos.w = background->pos.w;
  493. pos.h = background->pos.h;
  494. recreate();
  495. }
  496. CCastleBuildings::~CCastleBuildings() = default;
  497. void CCastleBuildings::recreate()
  498. {
  499. selectedBuilding = nullptr;
  500. OBJECT_CONSTRUCTION_CUSTOM_CAPTURING(255-DISPOSE);
  501. buildings.clear();
  502. groups.clear();
  503. //Generate buildings list
  504. auto buildingsCopy = town->builtBuildings;// a bit modified copy of built buildings
  505. if(vstd::contains(town->builtBuildings, BuildingID::SHIPYARD))
  506. {
  507. auto bayPos = town->bestLocation();
  508. if(!bayPos.valid())
  509. logGlobal->warn("Shipyard in non-coastal town!");
  510. std::vector <const CGObjectInstance *> vobjs = LOCPLINT->cb->getVisitableObjs(bayPos, false);
  511. //there is visitable obj at shipyard output tile and it's a boat or hero (on boat)
  512. if(!vobjs.empty() && (vobjs.front()->ID == Obj::BOAT || vobjs.front()->ID == Obj::HERO))
  513. {
  514. buildingsCopy.insert(BuildingID::SHIP);
  515. }
  516. }
  517. for(const CStructure * structure : town->town->clientInfo.structures)
  518. {
  519. if(!structure->building)
  520. {
  521. buildings.push_back(std::make_shared<CBuildingRect>(this, town, structure));
  522. continue;
  523. }
  524. if(vstd::contains(buildingsCopy, structure->building->bid))
  525. {
  526. groups[structure->building->getBase()].push_back(structure);
  527. }
  528. }
  529. for(auto & entry : groups)
  530. {
  531. const CBuilding * build = town->town->buildings.at(entry.first);
  532. const CStructure * toAdd = *boost::max_element(entry.second, [=](const CStructure * a, const CStructure * b)
  533. {
  534. return build->getDistance(a->building->bid) < build->getDistance(b->building->bid);
  535. });
  536. buildings.push_back(std::make_shared<CBuildingRect>(this, town, toAdd));
  537. }
  538. boost::sort(children, buildSorter); //TODO: create building in blit order
  539. }
  540. void CCastleBuildings::addBuilding(BuildingID building)
  541. {
  542. //FIXME: implement faster method without complete recreation of town
  543. BuildingID base = town->town->buildings.at(building)->getBase();
  544. recreate();
  545. auto & structures = groups.at(base);
  546. for(auto buildingRect : buildings)
  547. {
  548. if(vstd::contains(structures, buildingRect->str))
  549. {
  550. //reset animation
  551. if(structures.size() == 1)
  552. buildingRect->stateTimeCounter = 0; // transparency -> fully visible stage
  553. else
  554. buildingRect->stateTimeCounter = CBuildingRect::BUILDING_APPEAR_TIMEPOINT; // already in fully visible stage
  555. break;
  556. }
  557. }
  558. }
  559. void CCastleBuildings::removeBuilding(BuildingID building)
  560. {
  561. //FIXME: implement faster method without complete recreation of town
  562. recreate();
  563. }
  564. const CGHeroInstance * CCastleBuildings::getHero()
  565. {
  566. if(town->visitingHero)
  567. return town->visitingHero;
  568. else
  569. return town->garrisonHero;
  570. }
  571. void CCastleBuildings::buildingClicked(BuildingID building, BuildingSubID::EBuildingSubID subID, BuildingID::EBuildingID upgrades)
  572. {
  573. logGlobal->trace("You've clicked on %d", (int)building.toEnum());
  574. const CBuilding *b = town->town->buildings.find(building)->second;
  575. if(building >= BuildingID::DWELL_FIRST)
  576. {
  577. enterDwelling((building-BuildingID::DWELL_FIRST)%GameConstants::CREATURES_PER_TOWN);
  578. }
  579. else
  580. {
  581. switch(building)
  582. {
  583. case BuildingID::MAGES_GUILD_1:
  584. case BuildingID::MAGES_GUILD_2:
  585. case BuildingID::MAGES_GUILD_3:
  586. case BuildingID::MAGES_GUILD_4:
  587. case BuildingID::MAGES_GUILD_5:
  588. enterMagesGuild();
  589. break;
  590. case BuildingID::TAVERN:
  591. LOCPLINT->showTavernWindow(town);
  592. break;
  593. case BuildingID::SHIPYARD:
  594. if(town->shipyardStatus() == IBoatGenerator::GOOD)
  595. LOCPLINT->showShipyardDialog(town);
  596. else if(town->shipyardStatus() == IBoatGenerator::BOAT_ALREADY_BUILT)
  597. LOCPLINT->showInfoDialog(CGI->generaltexth->allTexts[51]);
  598. break;
  599. case BuildingID::FORT:
  600. case BuildingID::CITADEL:
  601. case BuildingID::CASTLE:
  602. GH.pushIntT<CFortScreen>(town);
  603. break;
  604. case BuildingID::VILLAGE_HALL:
  605. case BuildingID::CITY_HALL:
  606. case BuildingID::TOWN_HALL:
  607. case BuildingID::CAPITOL:
  608. enterTownHall();
  609. break;
  610. case BuildingID::MARKETPLACE:
  611. GH.pushIntT<CMarketplaceWindow>(town, town->visitingHero);
  612. break;
  613. case BuildingID::BLACKSMITH:
  614. enterBlacksmith(town->town->warMachine);
  615. break;
  616. case BuildingID::SHIP:
  617. LOCPLINT->showInfoDialog(CGI->generaltexth->allTexts[51]); //Cannot build another boat
  618. break;
  619. case BuildingID::SPECIAL_1:
  620. case BuildingID::SPECIAL_2:
  621. case BuildingID::SPECIAL_3:
  622. switch(subID)
  623. {
  624. case BuildingSubID::NONE:
  625. enterBuilding(building);
  626. break;
  627. case BuildingSubID::MYSTIC_POND:
  628. enterFountain(building, subID, upgrades);
  629. break;
  630. case BuildingSubID::ARTIFACT_MERCHANT:
  631. if(town->visitingHero)
  632. GH.pushIntT<CMarketplaceWindow>(town, town->visitingHero, EMarketMode::RESOURCE_ARTIFACT);
  633. else
  634. LOCPLINT->showInfoDialog(boost::str(boost::format(CGI->generaltexth->allTexts[273]) % b->getNameTranslated())); //Only visiting heroes may use the %s.
  635. break;
  636. case BuildingSubID::FOUNTAIN_OF_FORTUNE:
  637. enterFountain(building, subID, upgrades);
  638. break;
  639. case BuildingSubID::FREELANCERS_GUILD:
  640. if(getHero())
  641. GH.pushIntT<CMarketplaceWindow>(town, getHero(), EMarketMode::CREATURE_RESOURCE);
  642. else
  643. LOCPLINT->showInfoDialog(boost::str(boost::format(CGI->generaltexth->allTexts[273]) % b->getNameTranslated())); //Only visiting heroes may use the %s.
  644. break;
  645. case BuildingSubID::MAGIC_UNIVERSITY:
  646. if (getHero())
  647. GH.pushIntT<CUniversityWindow>(getHero(), town);
  648. else
  649. enterBuilding(building);
  650. break;
  651. case BuildingSubID::BROTHERHOOD_OF_SWORD:
  652. if(upgrades == BuildingID::TAVERN)
  653. LOCPLINT->showTavernWindow(town);
  654. else
  655. enterBuilding(building);
  656. break;
  657. case BuildingSubID::CASTLE_GATE:
  658. enterCastleGate();
  659. break;
  660. case BuildingSubID::CREATURE_TRANSFORMER: //Skeleton Transformer
  661. GH.pushIntT<CTransformerWindow>(getHero(), town);
  662. break;
  663. case BuildingSubID::PORTAL_OF_SUMMONING:
  664. if (town->creatures[GameConstants::CREATURES_PER_TOWN].second.empty())//No creatures
  665. LOCPLINT->showInfoDialog(CGI->generaltexth->tcommands[30]);
  666. else
  667. enterDwelling(GameConstants::CREATURES_PER_TOWN);
  668. break;
  669. case BuildingSubID::BALLISTA_YARD:
  670. enterBlacksmith(ArtifactID::BALLISTA);
  671. break;
  672. default:
  673. enterBuilding(building);
  674. break;
  675. }
  676. break;
  677. default:
  678. enterBuilding(building);
  679. break;
  680. }
  681. }
  682. }
  683. void CCastleBuildings::enterBlacksmith(ArtifactID artifactID)
  684. {
  685. const CGHeroInstance *hero = town->visitingHero;
  686. if(!hero)
  687. {
  688. LOCPLINT->showInfoDialog(boost::str(boost::format(CGI->generaltexth->allTexts[273]) % town->town->buildings.find(BuildingID::BLACKSMITH)->second->getNameTranslated()));
  689. return;
  690. }
  691. auto art = dynamic_cast<const CArtifact*>(artifactID.toArtifact(CGI->artifacts()));
  692. int price = art->getPrice();
  693. bool possible = LOCPLINT->cb->getResourceAmount(Res::GOLD) >= price;
  694. if(possible)
  695. {
  696. for(auto slot : art->possibleSlots.at(ArtBearer::HERO))
  697. {
  698. if(hero->getArt(slot) == nullptr)
  699. {
  700. possible = true;
  701. break;
  702. }
  703. else
  704. {
  705. possible = false;
  706. }
  707. }
  708. }
  709. CreatureID cre = art->getWarMachine();
  710. GH.pushIntT<CBlacksmithDialog>(possible, cre, artifactID, hero->id);
  711. }
  712. void CCastleBuildings::enterBuilding(BuildingID building)
  713. {
  714. std::vector<std::shared_ptr<CComponent>> comps(1, std::make_shared<CComponent>(CComponent::building, town->subID, building));
  715. LOCPLINT->showInfoDialog( town->town->buildings.find(building)->second->getDescriptionTranslated(), comps);
  716. }
  717. void CCastleBuildings::enterCastleGate()
  718. {
  719. if (!town->visitingHero)
  720. {
  721. LOCPLINT->showInfoDialog(CGI->generaltexth->allTexts[126]);
  722. return;//only visiting hero can use castle gates
  723. }
  724. std::vector <int> availableTowns;
  725. std::vector <const CGTownInstance*> Towns = LOCPLINT->cb->getTownsInfo(true);
  726. for(auto & Town : Towns)
  727. {
  728. const CGTownInstance *t = Town;
  729. if (t->id != this->town->id && t->visitingHero == nullptr && //another town, empty and this is
  730. t->town->faction->getId() == town->town->faction->getId() && //the town of the same faction
  731. t->hasBuilt(BuildingSubID::CASTLE_GATE)) //and the town has a castle gate
  732. {
  733. availableTowns.push_back(t->id.getNum());//add to the list
  734. }
  735. }
  736. auto gateIcon = std::make_shared<CAnimImage>(town->town->clientInfo.buildingsIcons, BuildingID::CASTLE_GATE);//will be deleted by selection window
  737. GH.pushIntT<CObjectListWindow>(availableTowns, gateIcon, CGI->generaltexth->jktexts[40],
  738. CGI->generaltexth->jktexts[41], std::bind (&CCastleInterface::castleTeleport, LOCPLINT->castleInt, _1));
  739. }
  740. void CCastleBuildings::enterDwelling(int level)
  741. {
  742. assert(level >= 0 && level < town->creatures.size());
  743. auto recruitCb = [=](CreatureID id, int count)
  744. {
  745. LOCPLINT->cb->recruitCreatures(town, town->getUpperArmy(), id, count, level);
  746. };
  747. GH.pushIntT<CRecruitmentWindow>(town, level, town, recruitCb, -87);
  748. }
  749. void CCastleBuildings::enterToTheQuickRecruitmentWindow()
  750. {
  751. const auto beginIt = town->creatures.cbegin();
  752. const auto afterLastIt = town->creatures.size() > GameConstants::CREATURES_PER_TOWN
  753. ? std::next(beginIt, GameConstants::CREATURES_PER_TOWN)
  754. : town->creatures.cend();
  755. const auto hasSomeoneToRecruit = std::any_of(beginIt, afterLastIt,
  756. [](const auto & creatureInfo) { return creatureInfo.first > 0; });
  757. if(hasSomeoneToRecruit)
  758. GH.pushIntT<QuickRecruitmentWindow>(town, pos);
  759. else
  760. CInfoWindow::showInfoDialog(CGI->generaltexth->translate("vcmi.townHall.noCreaturesToRecruit"), {});
  761. }
  762. void CCastleBuildings::enterFountain(const BuildingID & building, BuildingSubID::EBuildingSubID subID, BuildingID::EBuildingID upgrades)
  763. {
  764. std::vector<std::shared_ptr<CComponent>> comps(1, std::make_shared<CComponent>(CComponent::building,town->subID,building));
  765. std::string descr = town->town->buildings.find(building)->second->getDescriptionTranslated();
  766. std::string hasNotProduced;
  767. std::string hasProduced;
  768. if(this->town->town->faction->getIndex() == (TFaction)ETownType::RAMPART)
  769. {
  770. hasNotProduced = CGI->generaltexth->allTexts[677];
  771. hasProduced = CGI->generaltexth->allTexts[678];
  772. }
  773. else
  774. {
  775. auto buildingName = town->town->getSpecialBuilding(subID)->getNameTranslated();
  776. hasNotProduced = std::string(CGI->generaltexth->translate("vcmi.townHall.hasNotProduced"));
  777. hasProduced = std::string(CGI->generaltexth->translate("vcmi.townHall.hasProduced"));
  778. boost::algorithm::replace_first(hasNotProduced, "%s", buildingName);
  779. boost::algorithm::replace_first(hasProduced, "%s", buildingName);
  780. }
  781. bool isMysticPondOrItsUpgrade = subID == BuildingSubID::MYSTIC_POND
  782. || (upgrades != BuildingID::NONE
  783. && town->town->buildings.find(BuildingID(upgrades))->second->subId == BuildingSubID::MYSTIC_POND);
  784. if(upgrades != BuildingID::NONE)
  785. descr += "\n\n"+town->town->buildings.find(BuildingID(upgrades))->second->getDescriptionTranslated();
  786. if(isMysticPondOrItsUpgrade) //for vanila Rampart like towns
  787. {
  788. if(town->bonusValue.first == 0) //Mystic Pond produced nothing;
  789. descr += "\n\n" + hasNotProduced;
  790. else //Mystic Pond produced something;
  791. {
  792. descr += "\n\n" + hasProduced;
  793. boost::algorithm::replace_first(descr,"%s",CGI->generaltexth->restypes[town->bonusValue.first]);
  794. boost::algorithm::replace_first(descr,"%d",std::to_string(town->bonusValue.second));
  795. }
  796. }
  797. LOCPLINT->showInfoDialog(descr, comps);
  798. }
  799. void CCastleBuildings::enterMagesGuild()
  800. {
  801. const CGHeroInstance *hero = getHero();
  802. if(hero && !hero->hasSpellbook()) //hero doesn't have spellbok
  803. {
  804. const StartInfo *si = LOCPLINT->cb->getStartInfo();
  805. // it would be nice to find a way to move this hack to config/mapOverrides.json
  806. if(si && si->campState && si->campState->camp && // We're in campaign,
  807. (si->campState->camp->header.filename == "DATA/YOG.H3C") && // which is "Birth of a Barbarian",
  808. (hero->subID == 45)) // and the hero is Yog (based on Solmyr)
  809. {
  810. // "Yog has given up magic in all its forms..."
  811. LOCPLINT->showInfoDialog(CGI->generaltexth->allTexts[736]);
  812. }
  813. else if(LOCPLINT->cb->getResourceAmount(Res::GOLD) < 500) //not enough gold to buy spellbook
  814. {
  815. openMagesGuild();
  816. LOCPLINT->showInfoDialog(CGI->generaltexth->allTexts[213]);
  817. }
  818. else
  819. {
  820. CFunctionList<void()> onYes = [this](){ openMagesGuild(); };
  821. CFunctionList<void()> onNo = onYes;
  822. onYes += [hero](){ LOCPLINT->cb->buyArtifact(hero, ArtifactID::SPELLBOOK); };
  823. std::vector<std::shared_ptr<CComponent>> components(1, std::make_shared<CComponent>(CComponent::artifact,ArtifactID::SPELLBOOK,0));
  824. LOCPLINT->showYesNoDialog(CGI->generaltexth->allTexts[214], onYes, onNo, components);
  825. }
  826. }
  827. else
  828. {
  829. openMagesGuild();
  830. }
  831. }
  832. void CCastleBuildings::enterTownHall()
  833. {
  834. if(town->visitingHero && town->visitingHero->hasArt(ArtifactID::GRAIL) &&
  835. !vstd::contains(town->builtBuildings, BuildingID::GRAIL)) //hero has grail, but town does not have it
  836. {
  837. if(!vstd::contains(town->forbiddenBuildings, BuildingID::GRAIL))
  838. {
  839. LOCPLINT->showYesNoDialog(CGI->generaltexth->allTexts[597], //Do you wish this to be the permanent home of the Grail?
  840. [&](){ LOCPLINT->cb->buildBuilding(town, BuildingID::GRAIL); },
  841. [&](){ openTownHall(); });
  842. }
  843. else
  844. {
  845. LOCPLINT->showInfoDialog(CGI->generaltexth->allTexts[673]);
  846. dynamic_cast<CInfoWindow*>(GH.topInt().get())->buttons[0]->addCallback(std::bind(&CCastleBuildings::openTownHall, this));
  847. }
  848. }
  849. else
  850. {
  851. openTownHall();
  852. }
  853. }
  854. void CCastleBuildings::openMagesGuild()
  855. {
  856. std::string mageGuildBackground;
  857. mageGuildBackground = LOCPLINT->castleInt->town->town->clientInfo.guildBackground;
  858. GH.pushIntT<CMageGuildScreen>(LOCPLINT->castleInt,mageGuildBackground);
  859. }
  860. void CCastleBuildings::openTownHall()
  861. {
  862. GH.pushIntT<CHallInterface>(town);
  863. }
  864. CCreaInfo::CCreaInfo(Point position, const CGTownInstance * Town, int Level, bool compact, bool _showAvailable):
  865. town(Town),
  866. level(Level),
  867. showAvailable(_showAvailable)
  868. {
  869. OBJECT_CONSTRUCTION_CAPTURING(255-DISPOSE);
  870. pos += position;
  871. if(town->creatures.size() <= level || town->creatures[level].second.empty())
  872. {
  873. level = -1;
  874. return;//No creature
  875. }
  876. addUsedEvents(LCLICK | RCLICK | HOVER);
  877. ui32 creatureID = town->creatures[level].second.back();
  878. creature = CGI->creh->objects[creatureID];
  879. picture = std::make_shared<CAnimImage>("CPRSMALL", creature->getIconIndex(), 0, 8, 0);
  880. std::string value;
  881. if(showAvailable)
  882. value = std::to_string(town->creatures[level].first);
  883. else
  884. value = std::string("+") + std::to_string(town->creatureGrowth(level));
  885. if(compact)
  886. {
  887. label = std::make_shared<CLabel>(40, 32, FONT_TINY, ETextAlignment::BOTTOMRIGHT, Colors::WHITE, value);
  888. pos.x += 8;
  889. pos.w = 32;
  890. pos.h = 32;
  891. }
  892. else
  893. {
  894. label = std::make_shared<CLabel>(24, 40, FONT_SMALL, ETextAlignment::CENTER, Colors::WHITE, value);
  895. pos.w = 48;
  896. pos.h = 48;
  897. }
  898. }
  899. void CCreaInfo::update()
  900. {
  901. if(label)
  902. {
  903. std::string value;
  904. if(showAvailable)
  905. value = std::to_string(town->creatures[level].first);
  906. else
  907. value = std::string("+") + std::to_string(town->creatureGrowth(level));
  908. if(value != label->getText())
  909. label->setText(value);
  910. }
  911. }
  912. void CCreaInfo::hover(bool on)
  913. {
  914. std::string message = CGI->generaltexth->allTexts[588];
  915. boost::algorithm::replace_first(message, "%s", creature->getNamePluralTranslated());
  916. if(on)
  917. {
  918. GH.statusbar->write(message);
  919. }
  920. else
  921. {
  922. GH.statusbar->clearIfMatching(message);
  923. }
  924. }
  925. void CCreaInfo::clickLeft(tribool down, bool previousState)
  926. {
  927. if(previousState && (!down))
  928. {
  929. int offset = LOCPLINT->castleInt? (-87) : 0;
  930. auto recruitCb = [=](CreatureID id, int count)
  931. {
  932. LOCPLINT->cb->recruitCreatures(town, town->getUpperArmy(), id, count, level);
  933. };
  934. GH.pushIntT<CRecruitmentWindow>(town, level, town, recruitCb, offset);
  935. }
  936. }
  937. std::string CCreaInfo::genGrowthText()
  938. {
  939. GrowthInfo gi = town->getGrowthInfo(level);
  940. std::string descr = boost::str(boost::format(CGI->generaltexth->allTexts[589]) % creature->getNameSingularTranslated() % gi.totalGrowth());
  941. for(const GrowthInfo::Entry & entry : gi.entries)
  942. descr +="\n" + entry.description;
  943. return descr;
  944. }
  945. void CCreaInfo::clickRight(tribool down, bool previousState)
  946. {
  947. if(down)
  948. {
  949. if (showAvailable)
  950. GH.pushIntT<CDwellingInfoBox>(GH.screenDimensions().x / 2, GH.screenDimensions().y / 2, town, level);
  951. else
  952. CRClickPopup::createAndPush(genGrowthText(), std::make_shared<CComponent>(CComponent::creature, creature->idNumber));
  953. }
  954. }
  955. bool CCreaInfo::getShowAvailable()
  956. {
  957. return showAvailable;
  958. }
  959. CTownInfo::CTownInfo(int posX, int posY, const CGTownInstance * Town, bool townHall)
  960. : town(Town),
  961. building(nullptr)
  962. {
  963. OBJECT_CONSTRUCTION_CAPTURING(255-DISPOSE);
  964. addUsedEvents(RCLICK | HOVER);
  965. pos.x += posX;
  966. pos.y += posY;
  967. int buildID;
  968. if(townHall)
  969. {
  970. buildID = 10 + town->hallLevel();
  971. picture = std::make_shared<CAnimImage>("ITMTL.DEF", town->hallLevel());
  972. }
  973. else
  974. {
  975. buildID = 6 + town->fortLevel();
  976. if(buildID == 6)
  977. return;//FIXME: suspicious statement, fix or comment
  978. picture = std::make_shared<CAnimImage>("ITMCL.DEF", town->fortLevel()-1);
  979. }
  980. building = town->town->buildings.at(BuildingID(buildID));
  981. pos = picture->pos;
  982. }
  983. void CTownInfo::hover(bool on)
  984. {
  985. if(on)
  986. {
  987. if(building )
  988. GH.statusbar->write(building->getNameTranslated());
  989. }
  990. else
  991. {
  992. GH.statusbar->clear();
  993. }
  994. }
  995. void CTownInfo::clickRight(tribool down, bool previousState)
  996. {
  997. if(building && down)
  998. {
  999. auto c = std::make_shared<CComponent>(CComponent::building, building->town->faction->getIndex(), building->bid);
  1000. CRClickPopup::createAndPush(CInfoWindow::genText(building->getNameTranslated(), building->getDescriptionTranslated()), c);
  1001. }
  1002. }
  1003. CCastleInterface::CCastleInterface(const CGTownInstance * Town, const CGTownInstance * from):
  1004. CStatusbarWindow(PLAYER_COLORED | BORDERED),
  1005. town(Town)
  1006. {
  1007. OBJECT_CONSTRUCTION_CAPTURING(255-DISPOSE);
  1008. LOCPLINT->castleInt = this;
  1009. addUsedEvents(KEYBOARD);
  1010. builds = std::make_shared<CCastleBuildings>(town);
  1011. panel = std::make_shared<CPicture>("TOWNSCRN", 0, builds->pos.h);
  1012. panel->colorize(LOCPLINT->playerID);
  1013. pos.w = panel->pos.w;
  1014. pos.h = builds->pos.h + panel->pos.h;
  1015. center();
  1016. updateShadow();
  1017. garr = std::make_shared<CGarrisonInt>(305, 387, 4, Point(0,96), town->getUpperArmy(), town->visitingHero);
  1018. garr->type |= REDRAW_PARENT;
  1019. heroes = std::make_shared<HeroSlots>(town, Point(241, 387), Point(241, 483), garr, true);
  1020. title = std::make_shared<CLabel>(85, 387, FONT_MEDIUM, ETextAlignment::TOPLEFT, Colors::WHITE, town->getNameTranslated());
  1021. income = std::make_shared<CLabel>(195, 443, FONT_SMALL, ETextAlignment::CENTER);
  1022. icon = std::make_shared<CAnimImage>("ITPT", 0, 0, 15, 387);
  1023. exit = std::make_shared<CButton>(Point(744, 544), "TSBTNS", CButton::tooltip(CGI->generaltexth->tcommands[8]), [&](){close();}, SDLK_RETURN);
  1024. exit->assignedKeys.insert(SDLK_ESCAPE);
  1025. exit->setImageOrder(4, 5, 6, 7);
  1026. auto split = std::make_shared<CButton>(Point(744, 382), "TSBTNS", CButton::tooltip(CGI->generaltexth->tcommands[3]), [&]()
  1027. {
  1028. garr->splitClick();
  1029. heroes->splitClicked();
  1030. });
  1031. garr->addSplitBtn(split);
  1032. Rect barRect(9, 182, 732, 18);
  1033. auto statusbarBackground = std::make_shared<CPicture>(panel->getSurface(), barRect, 9, 555);
  1034. statusbar = CGStatusBar::create(statusbarBackground);
  1035. resdatabar = std::make_shared<CResDataBar>("ARESBAR", 3, 575, 32, 2, 85, 85);
  1036. townlist = std::make_shared<CTownList>(3, Point(744, 414), "IAM014", "IAM015");
  1037. if(from)
  1038. townlist->select(from);
  1039. townlist->select(town); //this will scroll list to select current town
  1040. townlist->onSelect = std::bind(&CCastleInterface::townChange, this);
  1041. recreateIcons();
  1042. if (!from)
  1043. adventureInt->onAudioPaused();
  1044. CCS->musich->playMusic(town->town->clientInfo.musicTheme, true, false);
  1045. }
  1046. CCastleInterface::~CCastleInterface()
  1047. {
  1048. // resume map audio if:
  1049. // adventureInt exists (may happen on exiting client with open castle interface)
  1050. // castleInt has not been replaced (happens on switching between towns inside castle interface)
  1051. if (adventureInt && LOCPLINT->castleInt == this)
  1052. adventureInt->onAudioResumed();
  1053. if(LOCPLINT->castleInt == this)
  1054. LOCPLINT->castleInt = nullptr;
  1055. }
  1056. void CCastleInterface::updateGarrisons()
  1057. {
  1058. garr->recreateSlots();
  1059. }
  1060. void CCastleInterface::close()
  1061. {
  1062. if(town->tempOwner == LOCPLINT->playerID) //we may have opened window for an allied town
  1063. {
  1064. if(town->visitingHero && town->visitingHero->tempOwner == LOCPLINT->playerID)
  1065. adventureInt->select(town->visitingHero);
  1066. else
  1067. adventureInt->select(town);
  1068. }
  1069. CWindowObject::close();
  1070. }
  1071. void CCastleInterface::castleTeleport(int where)
  1072. {
  1073. const CGTownInstance * dest = LOCPLINT->cb->getTown(ObjectInstanceID(where));
  1074. adventureInt->select(town->visitingHero);//according to assert(ho == adventureInt->selection) in the eraseCurrentPathOf
  1075. LOCPLINT->cb->teleportHero(town->visitingHero, dest);
  1076. LOCPLINT->paths.erasePath(town->visitingHero);
  1077. }
  1078. void CCastleInterface::townChange()
  1079. {
  1080. //TODO: do not recreate window
  1081. const CGTownInstance * dest = LOCPLINT->towns[townlist->getSelectedIndex()];
  1082. const CGTownInstance * town = this->town;// "this" is going to be deleted
  1083. if ( dest == town )
  1084. return;
  1085. close();
  1086. GH.pushIntT<CCastleInterface>(dest, town);
  1087. }
  1088. void CCastleInterface::addBuilding(BuildingID bid)
  1089. {
  1090. deactivate();
  1091. builds->addBuilding(bid);
  1092. recreateIcons();
  1093. activate();
  1094. redraw();
  1095. }
  1096. void CCastleInterface::removeBuilding(BuildingID bid)
  1097. {
  1098. deactivate();
  1099. builds->removeBuilding(bid);
  1100. recreateIcons();
  1101. activate();
  1102. redraw();
  1103. }
  1104. void CCastleInterface::recreateIcons()
  1105. {
  1106. OBJECT_CONSTRUCTION_CUSTOM_CAPTURING(255-DISPOSE);
  1107. size_t iconIndex = town->town->clientInfo.icons[town->hasFort()][town->builded >= CGI->settings()->getInteger(EGameSettings::TOWNS_BUILDINGS_PER_TURN_CAP)];
  1108. icon->setFrame(iconIndex);
  1109. TResources townIncome = town->dailyIncome();
  1110. income->setText(std::to_string(townIncome[Res::GOLD]));
  1111. hall = std::make_shared<CTownInfo>(80, 413, town, true);
  1112. fort = std::make_shared<CTownInfo>(122, 413, town, false);
  1113. fastArmyPurchase = std::make_shared<CButton>(Point(122, 413), "itmcl.def", CButton::tooltip(), [&](){ builds->enterToTheQuickRecruitmentWindow(); });
  1114. fastArmyPurchase->setImageOrder(town->fortLevel() - 1, town->fortLevel() - 1, town->fortLevel() - 1, town->fortLevel() - 1);
  1115. fastArmyPurchase->setAnimateLonelyFrame(true);
  1116. creainfo.clear();
  1117. bool compactCreatureInfo = useCompactCreatureBox();
  1118. bool useAvailableCreaturesForLabel = useAvailableAmountAsCreatureLabel();
  1119. for(size_t i=0; i<4; i++)
  1120. creainfo.push_back(std::make_shared<CCreaInfo>(Point(14 + 55 * (int)i, 459), town, (int)i, compactCreatureInfo, useAvailableCreaturesForLabel));
  1121. for(size_t i=0; i<4; i++)
  1122. creainfo.push_back(std::make_shared<CCreaInfo>(Point(14 + 55 * (int)i, 507), town, (int)i + 4, compactCreatureInfo, useAvailableCreaturesForLabel));
  1123. }
  1124. void CCastleInterface::keyPressed(const SDL_Keycode & key)
  1125. {
  1126. switch(key)
  1127. {
  1128. case SDLK_UP:
  1129. townlist->selectPrev();
  1130. break;
  1131. case SDLK_DOWN:
  1132. townlist->selectNext();
  1133. break;
  1134. case SDLK_SPACE:
  1135. heroes->swapArmies();
  1136. break;
  1137. case SDLK_t:
  1138. if(town->hasBuilt(BuildingID::TAVERN))
  1139. LOCPLINT->showTavernWindow(town);
  1140. break;
  1141. default:
  1142. break;
  1143. }
  1144. }
  1145. void CCastleInterface::creaturesChangedEventHandler()
  1146. {
  1147. for(auto creatureInfoBox : creainfo)
  1148. {
  1149. if(creatureInfoBox->getShowAvailable())
  1150. {
  1151. creatureInfoBox->update();
  1152. }
  1153. }
  1154. }
  1155. CHallInterface::CBuildingBox::CBuildingBox(int x, int y, const CGTownInstance * Town, const CBuilding * Building):
  1156. town(Town),
  1157. building(Building)
  1158. {
  1159. OBJECT_CONSTRUCTION_CAPTURING(255-DISPOSE);
  1160. addUsedEvents(LCLICK | RCLICK | HOVER);
  1161. pos.x += x;
  1162. pos.y += y;
  1163. pos.w = 154;
  1164. pos.h = 92;
  1165. state = LOCPLINT->cb->canBuildStructure(town, building->bid);
  1166. static int panelIndex[12] =
  1167. {
  1168. 3, 3, 3, 0, 0, 2, 2, 1, 2, 2, 3, 3
  1169. };
  1170. static int iconIndex[12] =
  1171. {
  1172. -1, -1, -1, 0, 0, 1, 2, -1, 1, 1, -1, -1
  1173. };
  1174. icon = std::make_shared<CAnimImage>(town->town->clientInfo.buildingsIcons, building->bid, 0, 2, 2);
  1175. header = std::make_shared<CAnimImage>("TPTHBAR", panelIndex[state], 0, 1, 73);
  1176. if(iconIndex[state] >=0)
  1177. mark = std::make_shared<CAnimImage>("TPTHCHK", iconIndex[state], 0, 136, 56);
  1178. name = std::make_shared<CLabel>(75, 81, FONT_SMALL, ETextAlignment::CENTER, Colors::WHITE, building->getNameTranslated());
  1179. //todo: add support for all possible states
  1180. if(state >= EBuildingState::BUILDING_ERROR)
  1181. state = EBuildingState::FORBIDDEN;
  1182. }
  1183. void CHallInterface::CBuildingBox::hover(bool on)
  1184. {
  1185. if(on)
  1186. {
  1187. std::string toPrint;
  1188. if(state==EBuildingState::PREREQUIRES || state == EBuildingState::MISSING_BASE)
  1189. toPrint = CGI->generaltexth->hcommands[5];
  1190. else if(state==EBuildingState::CANT_BUILD_TODAY)
  1191. toPrint = CGI->generaltexth->allTexts[223];
  1192. else
  1193. toPrint = CGI->generaltexth->hcommands[state];
  1194. boost::algorithm::replace_first(toPrint,"%s",building->getNameTranslated());
  1195. GH.statusbar->write(toPrint);
  1196. }
  1197. else
  1198. {
  1199. GH.statusbar->clear();
  1200. }
  1201. }
  1202. void CHallInterface::CBuildingBox::clickLeft(tribool down, bool previousState)
  1203. {
  1204. if(previousState && (!down))
  1205. GH.pushIntT<CBuildWindow>(town,building,state,0);
  1206. }
  1207. void CHallInterface::CBuildingBox::clickRight(tribool down, bool previousState)
  1208. {
  1209. if(down)
  1210. GH.pushIntT<CBuildWindow>(town,building,state,1);
  1211. }
  1212. CHallInterface::CHallInterface(const CGTownInstance * Town):
  1213. CStatusbarWindow(PLAYER_COLORED | BORDERED, Town->town->clientInfo.hallBackground),
  1214. town(Town)
  1215. {
  1216. OBJECT_CONSTRUCTION_CAPTURING(255-DISPOSE);
  1217. resdatabar = std::make_shared<CMinorResDataBar>();
  1218. resdatabar->moveBy(pos.topLeft(), true);
  1219. Rect barRect(5, 556, 740, 18);
  1220. auto statusbarBackground = std::make_shared<CPicture>(background->getSurface(), barRect, 5, 556);
  1221. statusbar = CGStatusBar::create(statusbarBackground);
  1222. title = std::make_shared<CLabel>(399, 12, FONT_MEDIUM, ETextAlignment::CENTER, Colors::WHITE, town->town->buildings.at(BuildingID(town->hallLevel()+BuildingID::VILLAGE_HALL))->getNameTranslated());
  1223. exit = std::make_shared<CButton>(Point(748, 556), "TPMAGE1.DEF", CButton::tooltip(CGI->generaltexth->hcommands[8]), [&](){close();}, SDLK_RETURN);
  1224. exit->assignedKeys.insert(SDLK_ESCAPE);
  1225. auto & boxList = town->town->clientInfo.hallSlots;
  1226. boxes.resize(boxList.size());
  1227. for(size_t row=0; row<boxList.size(); row++) //for each row
  1228. {
  1229. for(size_t col=0; col<boxList[row].size(); col++) //for each box
  1230. {
  1231. const CBuilding * building = nullptr;
  1232. for(auto & buildingID : boxList[row][col])//we are looking for the first not built structure
  1233. {
  1234. const CBuilding * current = town->town->buildings.at(buildingID);
  1235. if(vstd::contains(town->builtBuildings, buildingID))
  1236. {
  1237. building = current;
  1238. }
  1239. else
  1240. {
  1241. if(current->mode == CBuilding::BUILD_NORMAL)
  1242. {
  1243. building = current;
  1244. break;
  1245. }
  1246. }
  1247. }
  1248. int posX = pos.w/2 - (int)boxList[row].size()*154/2 - ((int)boxList[row].size()-1)*20 + 194*(int)col,
  1249. posY = 35 + 104*(int)row;
  1250. if(building)
  1251. boxes[row].push_back(std::make_shared<CBuildingBox>(posX, posY, town, building));
  1252. }
  1253. }
  1254. }
  1255. CBuildWindow::CBuildWindow(const CGTownInstance *Town, const CBuilding * Building, int state, bool rightClick):
  1256. CStatusbarWindow(PLAYER_COLORED | (rightClick ? RCLICK_POPUP : 0), "TPUBUILD"),
  1257. town(Town),
  1258. building(Building)
  1259. {
  1260. OBJECT_CONSTRUCTION_CAPTURING(255-DISPOSE);
  1261. icon = std::make_shared<CAnimImage>(town->town->clientInfo.buildingsIcons, building->bid, 0, 125, 50);
  1262. auto statusbarBackground = std::make_shared<CPicture>(background->getSurface(), Rect(8, pos.h - 26, pos.w - 16, 19), 8, pos.h - 26);
  1263. statusbar = CGStatusBar::create(statusbarBackground);
  1264. name = std::make_shared<CLabel>(197, 30, FONT_MEDIUM, ETextAlignment::CENTER, Colors::WHITE, boost::str(boost::format(CGI->generaltexth->hcommands[7]) % building->getNameTranslated()));
  1265. description = std::make_shared<CTextBox>(building->getDescriptionTranslated(), Rect(33, 135, 329, 67), 0, FONT_MEDIUM, ETextAlignment::CENTER);
  1266. stateText = std::make_shared<CTextBox>(getTextForState(state), Rect(33, 216, 329, 67), 0, FONT_SMALL, ETextAlignment::CENTER);
  1267. //Create components for all required resources
  1268. std::vector<std::shared_ptr<CComponent>> components;
  1269. for(int i = 0; i<GameConstants::RESOURCE_QUANTITY; i++)
  1270. {
  1271. if(building->resources[i])
  1272. components.push_back(std::make_shared<CComponent>(CComponent::resource, i, building->resources[i], CComponent::small));
  1273. }
  1274. cost = std::make_shared<CComponentBox>(components, Rect(25, 300, pos.w - 50, 130));
  1275. if(!rightClick)
  1276. { //normal window
  1277. std::string tooltipYes = boost::str(boost::format(CGI->generaltexth->allTexts[595]) % building->getNameTranslated());
  1278. std::string tooltipNo = boost::str(boost::format(CGI->generaltexth->allTexts[596]) % building->getNameTranslated());
  1279. buy = std::make_shared<CButton>(Point(45, 446), "IBUY30", CButton::tooltip(tooltipYes), [&](){ buyFunc(); }, SDLK_RETURN);
  1280. buy->setBorderColor(Colors::METALLIC_GOLD);
  1281. buy->block(state!=7 || LOCPLINT->playerID != town->tempOwner);
  1282. cancel = std::make_shared<CButton>(Point(290, 445), "ICANCEL", CButton::tooltip(tooltipNo), [&](){ close();}, SDLK_ESCAPE);
  1283. cancel->setBorderColor(Colors::METALLIC_GOLD);
  1284. }
  1285. }
  1286. void CBuildWindow::buyFunc()
  1287. {
  1288. LOCPLINT->cb->buildBuilding(town,building->bid);
  1289. GH.popInts(2); //we - build window and hall screen
  1290. }
  1291. std::string CBuildWindow::getTextForState(int state)
  1292. {
  1293. std::string ret;
  1294. if(state < EBuildingState::ALLOWED)
  1295. ret = CGI->generaltexth->hcommands[state];
  1296. switch (state)
  1297. {
  1298. case EBuildingState::ALREADY_PRESENT:
  1299. case EBuildingState::CANT_BUILD_TODAY:
  1300. case EBuildingState::NO_RESOURCES:
  1301. ret.replace(ret.find_first_of("%s"), 2, building->getNameTranslated());
  1302. break;
  1303. case EBuildingState::ALLOWED:
  1304. return CGI->generaltexth->allTexts[219]; //all prereq. are met
  1305. case EBuildingState::PREREQUIRES:
  1306. {
  1307. auto toStr = [&](const BuildingID build) -> std::string
  1308. {
  1309. return town->town->buildings.at(build)->getNameTranslated();
  1310. };
  1311. ret = CGI->generaltexth->allTexts[52];
  1312. ret += "\n" + town->genBuildingRequirements(building->bid).toString(toStr);
  1313. break;
  1314. }
  1315. case EBuildingState::MISSING_BASE:
  1316. {
  1317. std::string msg = CGI->generaltexth->translate("vcmi.townHall.missingBase");
  1318. ret = boost::str(boost::format(msg) % town->town->buildings.at(building->upgrade)->getNameTranslated());
  1319. break;
  1320. }
  1321. }
  1322. return ret;
  1323. }
  1324. LabeledValue::LabeledValue(Rect size, std::string name, std::string descr, int min, int max)
  1325. {
  1326. OBJECT_CONSTRUCTION_CAPTURING(255-DISPOSE);
  1327. pos.x+=size.x;
  1328. pos.y+=size.y;
  1329. pos.w = size.w;
  1330. pos.h = size.h;
  1331. init(name, descr, min, max);
  1332. }
  1333. LabeledValue::LabeledValue(Rect size, std::string name, std::string descr, int val)
  1334. {
  1335. OBJECT_CONSTRUCTION_CAPTURING(255-DISPOSE);
  1336. pos.x+=size.x;
  1337. pos.y+=size.y;
  1338. pos.w = size.w;
  1339. pos.h = size.h;
  1340. init(name, descr, val, val);
  1341. }
  1342. void LabeledValue::init(std::string nameText, std::string descr, int min, int max)
  1343. {
  1344. addUsedEvents(HOVER);
  1345. hoverText = descr;
  1346. std::string valueText;
  1347. if(min && max)
  1348. {
  1349. valueText = std::to_string(min);
  1350. if(min != max)
  1351. valueText += '-' + std::to_string(max);
  1352. }
  1353. name = std::make_shared<CLabel>(3, 0, FONT_SMALL, ETextAlignment::TOPLEFT, Colors::WHITE, nameText);
  1354. value = std::make_shared<CLabel>(pos.w-3, pos.h-2, FONT_SMALL, ETextAlignment::BOTTOMRIGHT, Colors::WHITE, valueText);
  1355. }
  1356. void LabeledValue::hover(bool on)
  1357. {
  1358. if(on)
  1359. {
  1360. GH.statusbar->write(hoverText);
  1361. }
  1362. else
  1363. {
  1364. GH.statusbar->clear();
  1365. parent->hovered = false;
  1366. }
  1367. }
  1368. CFortScreen::CFortScreen(const CGTownInstance * town):
  1369. CStatusbarWindow(PLAYER_COLORED | BORDERED, getBgName(town))
  1370. {
  1371. OBJECT_CONSTRUCTION_CAPTURING(255-DISPOSE);
  1372. ui32 fortSize = static_cast<ui32>(town->creatures.size());
  1373. if(fortSize > GameConstants::CREATURES_PER_TOWN && town->creatures.back().second.empty())
  1374. fortSize--;
  1375. const CBuilding * fortBuilding = town->town->buildings.at(BuildingID(town->fortLevel()+6));
  1376. title = std::make_shared<CLabel>(400, 12, FONT_BIG, ETextAlignment::CENTER, Colors::WHITE, fortBuilding->getNameTranslated());
  1377. std::string text = boost::str(boost::format(CGI->generaltexth->fcommands[6]) % fortBuilding->getNameTranslated());
  1378. exit = std::make_shared<CButton>(Point(748, 556), "TPMAGE1", CButton::tooltip(text), [&](){ close(); }, SDLK_RETURN);
  1379. exit->assignedKeys.insert(SDLK_ESCAPE);
  1380. std::vector<Point> positions =
  1381. {
  1382. Point(10, 22), Point(404, 22),
  1383. Point(10, 155), Point(404,155),
  1384. Point(10, 288), Point(404,288)
  1385. };
  1386. if(fortSize == GameConstants::CREATURES_PER_TOWN)
  1387. {
  1388. positions.push_back(Point(206,421));
  1389. }
  1390. else
  1391. {
  1392. positions.push_back(Point(10, 421));
  1393. positions.push_back(Point(404,421));
  1394. }
  1395. for(ui32 i=0; i<fortSize; i++)
  1396. {
  1397. BuildingID buildingID;
  1398. if(fortSize == GameConstants::CREATURES_PER_TOWN)
  1399. {
  1400. if(vstd::contains(town->builtBuildings, BuildingID::DWELL_UP_FIRST+i))
  1401. buildingID = BuildingID(BuildingID::DWELL_UP_FIRST+i);
  1402. else
  1403. buildingID = BuildingID(BuildingID::DWELL_FIRST+i);
  1404. }
  1405. else
  1406. {
  1407. buildingID = BuildingID::SPECIAL_3;
  1408. }
  1409. recAreas.push_back(std::make_shared<RecruitArea>(positions[i].x, positions[i].y, town, i));
  1410. }
  1411. resdatabar = std::make_shared<CMinorResDataBar>();
  1412. resdatabar->moveBy(pos.topLeft(), true);
  1413. Rect barRect(4, 554, 740, 18);
  1414. auto statusbarBackground = std::make_shared<CPicture>(background->getSurface(), barRect, 4, 554);
  1415. statusbar = CGStatusBar::create(statusbarBackground);
  1416. }
  1417. std::string CFortScreen::getBgName(const CGTownInstance * town)
  1418. {
  1419. ui32 fortSize = static_cast<ui32>(town->creatures.size());
  1420. if(fortSize > GameConstants::CREATURES_PER_TOWN && town->creatures.back().second.empty())
  1421. fortSize--;
  1422. if(fortSize == GameConstants::CREATURES_PER_TOWN)
  1423. return "TPCASTL7";
  1424. else
  1425. return "TPCASTL8";
  1426. }
  1427. void CFortScreen::creaturesChangedEventHandler()
  1428. {
  1429. for(auto & elem : recAreas)
  1430. elem->creaturesChangedEventHandler();
  1431. LOCPLINT->castleInt->creaturesChangedEventHandler();
  1432. }
  1433. CFortScreen::RecruitArea::RecruitArea(int posX, int posY, const CGTownInstance * Town, int Level):
  1434. town(Town),
  1435. level(Level),
  1436. availableCount(nullptr)
  1437. {
  1438. OBJECT_CONSTRUCTION_CAPTURING(255-DISPOSE);
  1439. pos.x +=posX;
  1440. pos.y +=posY;
  1441. pos.w = 386;
  1442. pos.h = 126;
  1443. if(!town->creatures[level].second.empty())
  1444. addUsedEvents(LCLICK | RCLICK | HOVER);//Activate only if dwelling is present
  1445. icons = std::make_shared<CPicture>("TPCAINFO", 261, 3);
  1446. if(getMyBuilding() != nullptr)
  1447. {
  1448. buildingIcon = std::make_shared<CAnimImage>(town->town->clientInfo.buildingsIcons, getMyBuilding()->bid, 0, 4, 21);
  1449. buildingName = std::make_shared<CLabel>(78, 101, FONT_SMALL, ETextAlignment::CENTER, Colors::WHITE, getMyBuilding()->getNameTranslated());
  1450. if(vstd::contains(town->builtBuildings, getMyBuilding()->bid))
  1451. {
  1452. ui32 available = town->creatures[level].first;
  1453. std::string availableText = CGI->generaltexth->allTexts[217]+ std::to_string(available);
  1454. availableCount = std::make_shared<CLabel>(78, 119, FONT_SMALL, ETextAlignment::CENTER, Colors::WHITE, availableText);
  1455. }
  1456. }
  1457. if(getMyCreature() != nullptr)
  1458. {
  1459. hoverText = boost::str(boost::format(CGI->generaltexth->tcommands[21]) % getMyCreature()->getNamePluralTranslated());
  1460. new CCreaturePic(159, 4, getMyCreature(), false);
  1461. new CLabel(78, 11, FONT_SMALL, ETextAlignment::CENTER, Colors::WHITE, getMyCreature()->getNamePluralTranslated());
  1462. Rect sizes(287, 4, 96, 18);
  1463. values.push_back(std::make_shared<LabeledValue>(sizes, CGI->generaltexth->allTexts[190], CGI->generaltexth->fcommands[0], getMyCreature()->getAttack(false)));
  1464. sizes.y+=20;
  1465. values.push_back(std::make_shared<LabeledValue>(sizes, CGI->generaltexth->allTexts[191], CGI->generaltexth->fcommands[1], getMyCreature()->getDefense(false)));
  1466. sizes.y+=21;
  1467. values.push_back(std::make_shared<LabeledValue>(sizes, CGI->generaltexth->allTexts[199], CGI->generaltexth->fcommands[2], getMyCreature()->getMinDamage(false), getMyCreature()->getMaxDamage(false)));
  1468. sizes.y+=20;
  1469. values.push_back(std::make_shared<LabeledValue>(sizes, CGI->generaltexth->allTexts[388], CGI->generaltexth->fcommands[3], getMyCreature()->MaxHealth()));
  1470. sizes.y+=21;
  1471. values.push_back(std::make_shared<LabeledValue>(sizes, CGI->generaltexth->allTexts[193], CGI->generaltexth->fcommands[4], getMyCreature()->valOfBonuses(Bonus::STACKS_SPEED)));
  1472. sizes.y+=20;
  1473. values.push_back(std::make_shared<LabeledValue>(sizes, CGI->generaltexth->allTexts[194], CGI->generaltexth->fcommands[5], town->creatureGrowth(level)));
  1474. }
  1475. }
  1476. const CCreature * CFortScreen::RecruitArea::getMyCreature()
  1477. {
  1478. if(!town->creatures.at(level).second.empty()) // built
  1479. return VLC->creh->objects[town->creatures.at(level).second.back()];
  1480. if(!town->town->creatures.at(level).empty()) // there are creatures on this level
  1481. return VLC->creh->objects[town->town->creatures.at(level).front()];
  1482. return nullptr;
  1483. }
  1484. const CBuilding * CFortScreen::RecruitArea::getMyBuilding()
  1485. {
  1486. BuildingID myID = BuildingID(BuildingID::DWELL_FIRST).advance(level);
  1487. if (level == GameConstants::CREATURES_PER_TOWN)
  1488. return town->town->getSpecialBuilding(BuildingSubID::PORTAL_OF_SUMMONING);
  1489. if (!town->town->buildings.count(myID))
  1490. return nullptr;
  1491. const CBuilding * build = town->town->buildings.at(myID);
  1492. while (town->town->buildings.count(myID))
  1493. {
  1494. if (town->hasBuilt(myID))
  1495. build = town->town->buildings.at(myID);
  1496. myID.advance(GameConstants::CREATURES_PER_TOWN);
  1497. }
  1498. return build;
  1499. }
  1500. void CFortScreen::RecruitArea::hover(bool on)
  1501. {
  1502. if(on)
  1503. GH.statusbar->write(hoverText);
  1504. else
  1505. GH.statusbar->clear();
  1506. }
  1507. void CFortScreen::RecruitArea::creaturesChangedEventHandler()
  1508. {
  1509. if(availableCount)
  1510. {
  1511. std::string availableText = CGI->generaltexth->allTexts[217] + std::to_string(town->creatures[level].first);
  1512. availableCount->setText(availableText);
  1513. }
  1514. }
  1515. void CFortScreen::RecruitArea::clickLeft(tribool down, bool previousState)
  1516. {
  1517. if(!down && previousState)
  1518. LOCPLINT->castleInt->builds->enterDwelling(level);
  1519. }
  1520. void CFortScreen::RecruitArea::clickRight(tribool down, bool previousState)
  1521. {
  1522. clickLeft(down, false); //r-click does same as l-click - opens recr. window
  1523. }
  1524. CMageGuildScreen::CMageGuildScreen(CCastleInterface * owner,std::string imagem)
  1525. : CStatusbarWindow(BORDERED, imagem)
  1526. {
  1527. OBJECT_CONSTRUCTION_CAPTURING(255-DISPOSE);
  1528. window = std::make_shared<CPicture>(owner->town->town->clientInfo.guildWindow, 332, 76);
  1529. resdatabar = std::make_shared<CMinorResDataBar>();
  1530. resdatabar->moveBy(pos.topLeft(), true);
  1531. Rect barRect(7, 556, 737, 18);
  1532. auto statusbarBackground = std::make_shared<CPicture>(background->getSurface(), barRect, 7, 556);
  1533. statusbar = CGStatusBar::create(statusbarBackground);
  1534. exit = std::make_shared<CButton>(Point(748, 556), "TPMAGE1.DEF", CButton::tooltip(CGI->generaltexth->allTexts[593]), [&](){ close(); }, SDLK_RETURN);
  1535. exit->assignedKeys.insert(SDLK_ESCAPE);
  1536. static const std::vector<std::vector<Point> > positions =
  1537. {
  1538. {Point(222,445), Point(312,445), Point(402,445), Point(520,445), Point(610,445), Point(700,445)},
  1539. {Point(48,53), Point(48,147), Point(48,241), Point(48,335), Point(48,429)},
  1540. {Point(570,82), Point(672,82), Point(570,157), Point(672,157)},
  1541. {Point(183,42), Point(183,148), Point(183,253)},
  1542. {Point(491,325), Point(591,325)}
  1543. };
  1544. for(size_t i=0; i<owner->town->town->mageLevel; i++)
  1545. {
  1546. size_t spellCount = owner->town->spellsAtLevel((int)i+1,false); //spell at level with -1 hmmm?
  1547. for(size_t j=0; j<spellCount; j++)
  1548. {
  1549. if(i<owner->town->mageGuildLevel() && owner->town->spells[i].size()>j)
  1550. spells.push_back(std::make_shared<Scroll>(positions[i][j], CGI->spellh->objects[owner->town->spells[i][j]]));
  1551. else
  1552. emptyScrolls.push_back(std::make_shared<CAnimImage>("TPMAGES.DEF", 1, 0, positions[i][j].x, positions[i][j].y));
  1553. }
  1554. }
  1555. }
  1556. CMageGuildScreen::Scroll::Scroll(Point position, const CSpell *Spell)
  1557. : spell(Spell)
  1558. {
  1559. OBJECT_CONSTRUCTION_CAPTURING(255-DISPOSE);
  1560. addUsedEvents(LCLICK | RCLICK | HOVER);
  1561. pos += position;
  1562. image = std::make_shared<CAnimImage>("SPELLSCR", spell->id);
  1563. pos = image->pos;
  1564. }
  1565. void CMageGuildScreen::Scroll::clickLeft(tribool down, bool previousState)
  1566. {
  1567. if(down)
  1568. LOCPLINT->showInfoDialog(spell->getDescriptionTranslated(0), std::make_shared<CComponent>(CComponent::spell, spell->id));
  1569. }
  1570. void CMageGuildScreen::Scroll::clickRight(tribool down, bool previousState)
  1571. {
  1572. if(down)
  1573. CRClickPopup::createAndPush(spell->getDescriptionTranslated(0), std::make_shared<CComponent>(CComponent::spell, spell->id));
  1574. }
  1575. void CMageGuildScreen::Scroll::hover(bool on)
  1576. {
  1577. if(on)
  1578. GH.statusbar->write(spell->getNameTranslated());
  1579. else
  1580. GH.statusbar->clear();
  1581. }
  1582. CBlacksmithDialog::CBlacksmithDialog(bool possible, CreatureID creMachineID, ArtifactID aid, ObjectInstanceID hid):
  1583. CStatusbarWindow(PLAYER_COLORED, "TPSMITH")
  1584. {
  1585. OBJECT_CONSTRUCTION_CAPTURING(255-DISPOSE);
  1586. Rect barRect(8, pos.h - 26, pos.w - 16, 19);
  1587. auto statusbarBackground = std::make_shared<CPicture>(background->getSurface(), barRect, 8, pos.h - 26);
  1588. statusbar = CGStatusBar::create(statusbarBackground);
  1589. animBG = std::make_shared<CPicture>("TPSMITBK", 64, 50);
  1590. animBG->needRefresh = true;
  1591. const CCreature * creature = CGI->creh->objects[creMachineID];
  1592. anim = std::make_shared<CCreatureAnim>(64, 50, creature->animDefName);
  1593. anim->clipRect(113,125,200,150);
  1594. title = std::make_shared<CLabel>(165, 28, FONT_BIG, ETextAlignment::CENTER, Colors::YELLOW,
  1595. boost::str(boost::format(CGI->generaltexth->allTexts[274]) % creature->getNameSingularTranslated()));
  1596. costText = std::make_shared<CLabel>(165, 218, FONT_MEDIUM, ETextAlignment::CENTER, Colors::WHITE, CGI->generaltexth->jktexts[43]);
  1597. costValue = std::make_shared<CLabel>(165, 290, FONT_MEDIUM, ETextAlignment::CENTER, Colors::WHITE,
  1598. std::to_string(aid.toArtifact(CGI->artifacts())->getPrice()));
  1599. std::string text = boost::str(boost::format(CGI->generaltexth->allTexts[595]) % creature->getNameSingularTranslated());
  1600. buy = std::make_shared<CButton>(Point(42, 312), "IBUY30.DEF", CButton::tooltip(text), [&](){ close(); }, SDLK_RETURN);
  1601. text = boost::str(boost::format(CGI->generaltexth->allTexts[596]) % creature->getNameSingularTranslated());
  1602. cancel = std::make_shared<CButton>(Point(224, 312), "ICANCEL.DEF", CButton::tooltip(text), [&](){ close(); }, SDLK_ESCAPE);
  1603. if(possible)
  1604. buy->addCallback([=](){ LOCPLINT->cb->buyArtifact(LOCPLINT->cb->getHero(hid),aid); });
  1605. else
  1606. buy->block(true);
  1607. costIcon = std::make_shared<CAnimImage>("RESOURCE", Res::GOLD, 0, 148, 244);
  1608. }