CCreatureWindow.cpp 32 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961
  1. /*
  2. * CCreatureWindow.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 "CCreatureWindow.h"
  12. #include <vcmi/spells/Spell.h>
  13. #include <vcmi/spells/Service.h>
  14. #include "../CGameInfo.h"
  15. #include "../CPlayerInterface.h"
  16. #include "../widgets/Buttons.h"
  17. #include "../widgets/CArtifactHolder.h"
  18. #include "../widgets/CComponent.h"
  19. #include "../widgets/Images.h"
  20. #include "../widgets/TextControls.h"
  21. #include "../widgets/ObjectLists.h"
  22. #include "../gui/CGuiHandler.h"
  23. #include "../renderSDL/SDL_Extensions.h"
  24. #include "../../CCallback.h"
  25. #include "../../lib/CStack.h"
  26. #include "../../lib/CBonusTypeHandler.h"
  27. #include "../../lib/CGeneralTextHandler.h"
  28. #include "../../lib/CModHandler.h"
  29. #include "../../lib/GameSettings.h"
  30. #include "../../lib/CHeroHandler.h"
  31. #include "../../lib/CGameState.h"
  32. #include "../../lib/TextOperations.h"
  33. class CCreatureArtifactInstance;
  34. class CSelectableSkill;
  35. class UnitView
  36. {
  37. public:
  38. // helper structs
  39. struct CommanderLevelInfo
  40. {
  41. std::vector<ui32> skills;
  42. std::function<void(ui32)> callback;
  43. };
  44. struct StackDismissInfo
  45. {
  46. std::function<void()> callback;
  47. };
  48. struct StackUpgradeInfo
  49. {
  50. UpgradeInfo info;
  51. std::function<void(CreatureID)> callback;
  52. };
  53. // pointers to permament objects in game state
  54. const CCreature * creature;
  55. const CCommanderInstance * commander;
  56. const CStackInstance * stackNode;
  57. const CStack * stack;
  58. const CGHeroInstance * owner;
  59. // temporary objects which should be kept as copy if needed
  60. boost::optional<CommanderLevelInfo> levelupInfo;
  61. boost::optional<StackDismissInfo> dismissInfo;
  62. boost::optional<StackUpgradeInfo> upgradeInfo;
  63. // misc fields
  64. unsigned int creatureCount;
  65. bool popupWindow;
  66. UnitView()
  67. : creature(nullptr),
  68. commander(nullptr),
  69. stackNode(nullptr),
  70. stack(nullptr),
  71. owner(nullptr),
  72. creatureCount(0),
  73. popupWindow(false)
  74. {
  75. }
  76. std::string getName() const
  77. {
  78. if(commander)
  79. return commander->type->getNameSingularTranslated();
  80. else
  81. return creature->getNamePluralTranslated();
  82. }
  83. private:
  84. };
  85. CCommanderSkillIcon::CCommanderSkillIcon(std::shared_ptr<CIntObject> object_, std::function<void()> callback)
  86. : object(),
  87. callback(callback)
  88. {
  89. pos = object_->pos;
  90. setObject(object_);
  91. }
  92. void CCommanderSkillIcon::setObject(std::shared_ptr<CIntObject> newObject)
  93. {
  94. if(object)
  95. removeChild(object.get());
  96. object = newObject;
  97. addChild(object.get());
  98. object->moveTo(pos.topLeft());
  99. redraw();
  100. }
  101. void CCommanderSkillIcon::clickLeft(tribool down, bool previousState)
  102. {
  103. if(down)
  104. callback();
  105. }
  106. void CCommanderSkillIcon::clickRight(tribool down, bool previousState)
  107. {
  108. if(down)
  109. LRClickableAreaWText::clickRight(down, previousState);
  110. }
  111. static std::string skillToFile(int skill, int level, bool selected)
  112. {
  113. // FIXME: is this a correct hadling?
  114. // level 0 = skill not present, use image with "no" suffix
  115. // level 1-5 = skill available, mapped to images indexed as 0-4
  116. // selecting skill means that it will appear one level higher (as if alredy upgraded)
  117. std::string file = "zvs/Lib1.res/_";
  118. switch (skill)
  119. {
  120. case ECommander::ATTACK:
  121. file += "AT";
  122. break;
  123. case ECommander::DEFENSE:
  124. file += "DF";
  125. break;
  126. case ECommander::HEALTH:
  127. file += "HP";
  128. break;
  129. case ECommander::DAMAGE:
  130. file += "DM";
  131. break;
  132. case ECommander::SPEED:
  133. file += "SP";
  134. break;
  135. case ECommander::SPELL_POWER:
  136. file += "MP";
  137. break;
  138. }
  139. std::string sufix;
  140. if (selected)
  141. level++; // UI will display resulting level
  142. if (level == 0)
  143. sufix = "no"; //not avaliable - no number
  144. else
  145. sufix = std::to_string(level-1);
  146. if (selected)
  147. sufix += "="; //level-up highlight
  148. return file + sufix + ".bmp";
  149. }
  150. CStackWindow::CWindowSection::CWindowSection(CStackWindow * parent, std::string backgroundPath, int yOffset)
  151. : parent(parent)
  152. {
  153. pos.y += yOffset;
  154. OBJECT_CONSTRUCTION_CAPTURING(255-DISPOSE);
  155. if(!backgroundPath.empty())
  156. {
  157. background = std::make_shared<CPicture>("stackWindow/" + backgroundPath);
  158. pos.w = background->pos.w;
  159. pos.h = background->pos.h;
  160. }
  161. }
  162. CStackWindow::ActiveSpellsSection::ActiveSpellsSection(CStackWindow * owner, int yOffset)
  163. : CWindowSection(owner, "spell-effects", yOffset)
  164. {
  165. static const Point firstPos(6, 2); // position of 1st spell box
  166. static const Point offset(54, 0); // offset of each spell box from previous
  167. OBJECT_CONSTRUCTION_CAPTURING(255-DISPOSE);
  168. const CStack * battleStack = parent->info->stack;
  169. assert(battleStack); // Section should be created only for battles
  170. //spell effects
  171. int printed=0; //how many effect pics have been printed
  172. std::vector<si32> spells = battleStack->activeSpells();
  173. for(si32 effect : spells)
  174. {
  175. const spells::Spell * spell = CGI->spells()->getByIndex(effect);
  176. std::string spellText;
  177. //not all effects have graphics (for eg. Acid Breath)
  178. //for modded spells iconEffect is added to SpellInt.def
  179. const bool hasGraphics = (effect < SpellID::THUNDERBOLT) || (effect >= SpellID::AFTER_LAST);
  180. if (hasGraphics)
  181. {
  182. spellText = CGI->generaltexth->allTexts[610]; //"%s, duration: %d rounds."
  183. boost::replace_first(spellText, "%s", spell->getNameTranslated());
  184. //FIXME: support permanent duration
  185. int duration = battleStack->getBonusLocalFirst(Selector::source(Bonus::SPELL_EFFECT,effect))->turnsRemain;
  186. boost::replace_first(spellText, "%d", std::to_string(duration));
  187. spellIcons.push_back(std::make_shared<CAnimImage>("SpellInt", effect + 1, 0, firstPos.x + offset.x * printed, firstPos.y + offset.y * printed));
  188. clickableAreas.push_back(std::make_shared<LRClickableAreaWText>(Rect(firstPos + offset * printed, Point(50, 38)), spellText, spellText));
  189. if(++printed >= 8) // interface limit reached
  190. break;
  191. }
  192. }
  193. }
  194. CStackWindow::BonusLineSection::BonusLineSection(CStackWindow * owner, size_t lineIndex)
  195. : CWindowSection(owner, "bonus-effects", 0)
  196. {
  197. OBJECT_CONSTRUCTION_CAPTURING(255-DISPOSE);
  198. static const std::array<Point, 2> offset =
  199. {
  200. Point(6, 4),
  201. Point(214, 4)
  202. };
  203. for(size_t leftRight : {0, 1})
  204. {
  205. auto position = offset[leftRight];
  206. size_t bonusIndex = lineIndex * 2 + leftRight;
  207. if(parent->activeBonuses.size() > bonusIndex)
  208. {
  209. BonusInfo & bi = parent->activeBonuses[bonusIndex];
  210. icon[leftRight] = std::make_shared<CPicture>(bi.imagePath, position.x, position.y);
  211. name[leftRight] = std::make_shared<CLabel>(position.x + 60, position.y + 2, FONT_SMALL, ETextAlignment::TOPLEFT, Colors::WHITE, bi.name);
  212. description[leftRight] = std::make_shared<CMultiLineLabel>(Rect(position.x + 60, position.y + 17, 137, 30), FONT_SMALL, ETextAlignment::TOPLEFT, Colors::WHITE, bi.description);
  213. }
  214. }
  215. }
  216. CStackWindow::BonusesSection::BonusesSection(CStackWindow * owner, int yOffset, boost::optional<size_t> preferredSize)
  217. : CWindowSection(owner, "", yOffset)
  218. {
  219. OBJECT_CONSTRUCTION_CAPTURING(255-DISPOSE);
  220. // size of single image for an item
  221. static const int itemHeight = 59;
  222. size_t totalSize = (owner->activeBonuses.size() + 1) / 2;
  223. size_t visibleSize = preferredSize ? preferredSize.get() : std::min<size_t>(3, totalSize);
  224. pos.w = owner->pos.w;
  225. pos.h = itemHeight * (int)visibleSize;
  226. auto onCreate = [=](size_t index) -> std::shared_ptr<CIntObject>
  227. {
  228. return std::make_shared<BonusLineSection>(owner, index);
  229. };
  230. lines = std::make_shared<CListBox>(onCreate, Point(0, 0), Point(0, itemHeight), visibleSize, totalSize, 0, 1, Rect(pos.w - 15, 0, pos.h, pos.h));
  231. }
  232. CStackWindow::ButtonsSection::ButtonsSection(CStackWindow * owner, int yOffset)
  233. : CWindowSection(owner, "button-panel", yOffset)
  234. {
  235. OBJECT_CONSTRUCTION_CAPTURING(255-DISPOSE);
  236. if(parent->info->dismissInfo && parent->info->dismissInfo->callback)
  237. {
  238. auto onDismiss = [=]()
  239. {
  240. parent->info->dismissInfo->callback();
  241. parent->close();
  242. };
  243. auto onClick = [=] ()
  244. {
  245. LOCPLINT->showYesNoDialog(CGI->generaltexth->allTexts[12], onDismiss, nullptr);
  246. };
  247. dismiss = std::make_shared<CButton>(Point(5, 5),"IVIEWCR2.DEF", CGI->generaltexth->zelp[445], onClick, SDLK_d);
  248. }
  249. if(parent->info->upgradeInfo && !parent->info->commander)
  250. {
  251. // used space overlaps with commander switch button
  252. // besides - should commander really be upgradeable?
  253. UnitView::StackUpgradeInfo & upgradeInfo = parent->info->upgradeInfo.get();
  254. const size_t buttonsToCreate = std::min<size_t>(upgradeInfo.info.newID.size(), upgrade.size());
  255. for(size_t buttonIndex = 0; buttonIndex < buttonsToCreate; buttonIndex++)
  256. {
  257. TResources totalCost = upgradeInfo.info.cost[buttonIndex] * parent->info->creatureCount;
  258. auto onUpgrade = [=]()
  259. {
  260. upgradeInfo.callback(upgradeInfo.info.newID[buttonIndex]);
  261. parent->close();
  262. };
  263. auto onClick = [=]()
  264. {
  265. std::vector<std::shared_ptr<CComponent>> resComps;
  266. for(TResources::nziterator i(totalCost); i.valid(); i++)
  267. {
  268. resComps.push_back(std::make_shared<CComponent>(CComponent::resource, i->resType, (int)i->resVal));
  269. }
  270. if(LOCPLINT->cb->getResourceAmount().canAfford(totalCost))
  271. {
  272. LOCPLINT->showYesNoDialog(CGI->generaltexth->allTexts[207], onUpgrade, nullptr, resComps);
  273. }
  274. else
  275. {
  276. LOCPLINT->showInfoDialog(CGI->generaltexth->allTexts[314], resComps);
  277. }
  278. };
  279. auto upgradeBtn = std::make_shared<CButton>(Point(221 + (int)buttonIndex * 40, 5), "stackWindow/upgradeButton", CGI->generaltexth->zelp[446], onClick, SDLK_1);
  280. upgradeBtn->addOverlay(std::make_shared<CAnimImage>("CPRSMALL", VLC->creh->objects[upgradeInfo.info.newID[buttonIndex]]->getIconIndex()));
  281. if(buttonsToCreate == 1) // single upgrade avaialbe
  282. {
  283. upgradeBtn->assignedKeys.insert(SDLK_u);
  284. }
  285. upgrade[buttonIndex] = upgradeBtn;
  286. }
  287. }
  288. if(parent->info->commander)
  289. {
  290. for(size_t buttonIndex = 0; buttonIndex < 2; buttonIndex++)
  291. {
  292. std::string btnIDs[2] = { "showSkills", "showBonuses" };
  293. auto onSwitch = [buttonIndex, this]()
  294. {
  295. logAnim->debug("Switch %d->%d", parent->activeTab, buttonIndex);
  296. parent->switchButtons[parent->activeTab]->enable();
  297. parent->commanderTab->setActive(buttonIndex);
  298. parent->switchButtons[buttonIndex]->disable();
  299. parent->redraw(); // FIXME: enable/disable don't redraw screen themselves
  300. };
  301. std::string tooltipText = "vcmi.creatureWindow." + btnIDs[buttonIndex];
  302. parent->switchButtons[buttonIndex] = std::make_shared<CButton>(Point(302 + (int)buttonIndex*40, 5), "stackWindow/upgradeButton", CButton::tooltipLocalized(tooltipText), onSwitch);
  303. parent->switchButtons[buttonIndex]->addOverlay(std::make_shared<CAnimImage>("stackWindow/switchModeIcons", buttonIndex));
  304. }
  305. parent->switchButtons[parent->activeTab]->disable();
  306. }
  307. exit = std::make_shared<CButton>(Point(382, 5), "hsbtns.def", CGI->generaltexth->zelp[447], [=](){ parent->close(); }, SDLK_RETURN);
  308. exit->assignedKeys.insert(SDLK_ESCAPE);
  309. }
  310. CStackWindow::CommanderMainSection::CommanderMainSection(CStackWindow * owner, int yOffset)
  311. : CWindowSection(owner, "commander-bg", yOffset)
  312. {
  313. OBJECT_CONSTRUCTION_CAPTURING(255-DISPOSE);
  314. auto getSkillPos = [](int index)
  315. {
  316. return Point(10 + 80 * (index%3), 20 + 80 * (index/3));
  317. };
  318. auto getSkillImage = [this](int skillIndex) -> std::string
  319. {
  320. bool selected = ((parent->selectedSkill == skillIndex) && parent->info->levelupInfo );
  321. return skillToFile(skillIndex, parent->info->commander->secondarySkills[skillIndex], selected);
  322. };
  323. auto getSkillDescription = [this](int skillIndex) -> std::string
  324. {
  325. return CGI->generaltexth->znpc00[152 + (12 * skillIndex) + (parent->info->commander->secondarySkills[skillIndex] * 2)];
  326. };
  327. for(int index = ECommander::ATTACK; index <= ECommander::SPELL_POWER; ++index)
  328. {
  329. Point skillPos = getSkillPos(index);
  330. auto icon = std::make_shared<CCommanderSkillIcon>(std::make_shared<CPicture>(getSkillImage(index), skillPos.x, skillPos.y), [=]()
  331. {
  332. LOCPLINT->showInfoDialog(getSkillDescription(index));
  333. });
  334. icon->text = getSkillDescription(index); //used to handle right click description via LRClickableAreaWText::ClickRight()
  335. if(parent->selectedSkill == index)
  336. parent->selectedIcon = icon;
  337. if(parent->info->levelupInfo && vstd::contains(parent->info->levelupInfo->skills, index)) // can be upgraded - enable selection switch
  338. {
  339. if(parent->selectedSkill == index)
  340. parent->setSelection(index, icon);
  341. icon->callback = [=]()
  342. {
  343. parent->setSelection(index, icon);
  344. };
  345. }
  346. skillIcons.push_back(icon);
  347. }
  348. auto getArtifactPos = [](int index)
  349. {
  350. return Point(269 + 47 * (index % 3), 22 + 47 * (index / 3));
  351. };
  352. for(auto equippedArtifact : parent->info->commander->artifactsWorn)
  353. {
  354. Point artPos = getArtifactPos(equippedArtifact.first);
  355. auto artPlace = std::make_shared<CCommanderArtPlace>(artPos, parent->info->owner, equippedArtifact.first, equippedArtifact.second.artifact);
  356. artifacts.push_back(artPlace);
  357. }
  358. if(parent->info->levelupInfo)
  359. {
  360. abilitiesBackground = std::make_shared<CPicture>("stackWindow/commander-abilities.png");
  361. abilitiesBackground->moveBy(Point(0, pos.h));
  362. size_t abilitiesCount = boost::range::count_if(parent->info->levelupInfo->skills, [](ui32 skillID)
  363. {
  364. return skillID >= 100;
  365. });
  366. auto onCreate = [=](size_t index)->std::shared_ptr<CIntObject>
  367. {
  368. for(auto skillID : parent->info->levelupInfo->skills)
  369. {
  370. if(index == 0 && skillID >= 100)
  371. {
  372. const auto bonus = CGI->creh->skillRequirements[skillID-100].first;
  373. const CStackInstance * stack = parent->info->commander;
  374. auto icon = std::make_shared<CCommanderSkillIcon>(std::make_shared<CPicture>(stack->bonusToGraphics(bonus)), [](){});
  375. icon->callback = [=]()
  376. {
  377. parent->setSelection(skillID, icon);
  378. };
  379. icon->text = stack->bonusToString(bonus, true);
  380. icon->hoverText = stack->bonusToString(bonus, false);
  381. return icon;
  382. }
  383. if(skillID >= 100)
  384. index--;
  385. }
  386. return nullptr;
  387. };
  388. abilities = std::make_shared<CListBox>(onCreate, Point(38, 3+pos.h), Point(63, 0), 6, abilitiesCount);
  389. leftBtn = std::make_shared<CButton>(Point(10, pos.h + 6), "hsbtns3.def", CButton::tooltip(), [=](){ abilities->moveToPrev(); }, SDLK_LEFT);
  390. rightBtn = std::make_shared<CButton>(Point(411, pos.h + 6), "hsbtns5.def", CButton::tooltip(), [=](){ abilities->moveToNext(); }, SDLK_RIGHT);
  391. if(abilitiesCount <= 6)
  392. {
  393. leftBtn->block(true);
  394. rightBtn->block(true);
  395. }
  396. pos.h += abilitiesBackground->pos.h;
  397. }
  398. }
  399. CStackWindow::MainSection::MainSection(CStackWindow * owner, int yOffset, bool showExp, bool showArt)
  400. : CWindowSection(owner, getBackgroundName(showExp, showArt), yOffset)
  401. {
  402. OBJECT_CONSTRUCTION_CAPTURING(255-DISPOSE);
  403. statNames =
  404. {
  405. CGI->generaltexth->primarySkillNames[0], //ATTACK
  406. CGI->generaltexth->primarySkillNames[1],//DEFENCE
  407. CGI->generaltexth->allTexts[198],//SHOTS
  408. CGI->generaltexth->allTexts[199],//DAMAGE
  409. CGI->generaltexth->allTexts[388],//HEALTH
  410. CGI->generaltexth->allTexts[200],//HEALTH_LEFT
  411. CGI->generaltexth->zelp[441].first,//SPEED
  412. CGI->generaltexth->allTexts[399]//MANA
  413. };
  414. statFormats =
  415. {
  416. "%d (%d)",
  417. "%d (%d)",
  418. "%d (%d)",
  419. "%d - %d",
  420. "%d (%d)",
  421. "%d (%d)",
  422. "%d (%d)",
  423. "%d (%d)"
  424. };
  425. animation = std::make_shared<CCreaturePic>(5, 41, parent->info->creature);
  426. if(parent->info->stackNode != nullptr && parent->info->commander == nullptr)
  427. {
  428. //normal stack, not a commander and not non-existing stack (e.g. recruitment dialog)
  429. animation->setAmount(parent->info->creatureCount);
  430. }
  431. name = std::make_shared<CLabel>(215, 12, FONT_SMALL, ETextAlignment::CENTER, Colors::YELLOW, parent->info->getName());
  432. int dmgMultiply = 1;
  433. if(parent->info->owner && parent->info->stackNode->hasBonusOfType(Bonus::SIEGE_WEAPON))
  434. dmgMultiply += parent->info->owner->getPrimSkillLevel(PrimarySkill::ATTACK);
  435. icons = std::make_shared<CPicture>("stackWindow/icons", 117, 32);
  436. const CStack * battleStack = parent->info->stack;
  437. morale = std::make_shared<MoraleLuckBox>(true, Rect(Point(321, 110), Point(42, 42) ));
  438. luck = std::make_shared<MoraleLuckBox>(false, Rect(Point(375, 110), Point(42, 42) ));
  439. if(battleStack != nullptr) // in battle
  440. {
  441. addStatLabel(EStat::ATTACK, parent->info->creature->getAttack(battleStack->isShooter()), battleStack->getAttack(battleStack->isShooter()));
  442. addStatLabel(EStat::DEFENCE, parent->info->creature->getDefense(battleStack->isShooter()), battleStack->getDefense(battleStack->isShooter()));
  443. addStatLabel(EStat::DAMAGE, parent->info->stackNode->getMinDamage(battleStack->isShooter()) * dmgMultiply, battleStack->getMaxDamage(battleStack->isShooter()) * dmgMultiply);
  444. addStatLabel(EStat::HEALTH, parent->info->creature->MaxHealth(), battleStack->MaxHealth());
  445. addStatLabel(EStat::SPEED, parent->info->creature->Speed(), battleStack->Speed());
  446. if(battleStack->isShooter())
  447. addStatLabel(EStat::SHOTS, battleStack->shots.total(), battleStack->shots.available());
  448. if(battleStack->isCaster())
  449. addStatLabel(EStat::MANA, battleStack->casts.total(), battleStack->casts.available());
  450. addStatLabel(EStat::HEALTH_LEFT, battleStack->getFirstHPleft());
  451. morale->set(battleStack);
  452. luck->set(battleStack);
  453. }
  454. else
  455. {
  456. const bool shooter = parent->info->stackNode->hasBonusOfType(Bonus::SHOOTER) && parent->info->stackNode->valOfBonuses(Bonus::SHOTS);
  457. const bool caster = parent->info->stackNode->valOfBonuses(Bonus::CASTS);
  458. addStatLabel(EStat::ATTACK, parent->info->creature->getAttack(shooter), parent->info->stackNode->getAttack(shooter));
  459. addStatLabel(EStat::DEFENCE, parent->info->creature->getDefense(shooter), parent->info->stackNode->getDefense(shooter));
  460. addStatLabel(EStat::DAMAGE, parent->info->stackNode->getMinDamage(shooter) * dmgMultiply, parent->info->stackNode->getMaxDamage(shooter) * dmgMultiply);
  461. addStatLabel(EStat::HEALTH, parent->info->creature->MaxHealth(), parent->info->stackNode->MaxHealth());
  462. addStatLabel(EStat::SPEED, parent->info->creature->Speed(), parent->info->stackNode->Speed());
  463. if(shooter)
  464. addStatLabel(EStat::SHOTS, parent->info->stackNode->valOfBonuses(Bonus::SHOTS));
  465. if(caster)
  466. addStatLabel(EStat::MANA, parent->info->stackNode->valOfBonuses(Bonus::CASTS));
  467. morale->set(parent->info->stackNode);
  468. luck->set(parent->info->stackNode);
  469. }
  470. if(showExp)
  471. {
  472. const CStackInstance * stack = parent->info->stackNode;
  473. Point pos = showArt ? Point(321, 32) : Point(347, 32);
  474. if(parent->info->commander)
  475. {
  476. const CCommanderInstance * commander = parent->info->commander;
  477. expRankIcon = std::make_shared<CAnimImage>("PSKIL42", 4, 0, pos.x, pos.y);
  478. auto area = std::make_shared<LRClickableAreaWTextComp>(Rect(pos.x, pos.y, 44, 44), CComponent::experience);
  479. expArea = area;
  480. area->text = CGI->generaltexth->allTexts[2];
  481. area->bonusValue = commander->getExpRank();
  482. boost::replace_first(area->text, "%d", std::to_string(commander->getExpRank()));
  483. boost::replace_first(area->text, "%d", std::to_string(CGI->heroh->reqExp(commander->getExpRank() + 1)));
  484. boost::replace_first(area->text, "%d", std::to_string(commander->experience));
  485. }
  486. else
  487. {
  488. expRankIcon = std::make_shared<CAnimImage>("stackWindow/levels", stack->getExpRank(), 0, pos.x, pos.y);
  489. expArea = std::make_shared<LRClickableAreaWText>(Rect(pos.x, pos.y, 44, 44));
  490. expArea->text = parent->generateStackExpDescription();
  491. }
  492. expLabel = std::make_shared<CLabel>(
  493. pos.x + 21, pos.y + 52, FONT_SMALL, ETextAlignment::CENTER, Colors::WHITE,
  494. TextOperations::formatMetric(stack->experience, 6));
  495. }
  496. if(showArt)
  497. {
  498. Point pos = showExp ? Point(375, 32) : Point(347, 32);
  499. // ALARMA: do not refactor this into a separate function
  500. // otherwise, artifact icon is drawn near the hero's portrait
  501. // this is really strange
  502. auto art = parent->info->stackNode->getArt(ArtifactPosition::CREATURE_SLOT);
  503. if(art)
  504. {
  505. parent->stackArtifactIcon = std::make_shared<CAnimImage>("ARTIFACT", art->artType->iconIndex, 0, pos.x, pos.y);
  506. parent->stackArtifactHelp = std::make_shared<LRClickableAreaWTextComp>(Rect(pos, Point(44, 44)), CComponent::artifact);
  507. parent->stackArtifactHelp->type = art->artType->getId();
  508. if(parent->info->owner)
  509. {
  510. parent->stackArtifactButton = std::make_shared<CButton>(
  511. Point(pos.x - 2 , pos.y + 46), "stackWindow/cancelButton",
  512. CButton::tooltipLocalized("vcmi.creatureWindow.returnArtifact"), [=]()
  513. {
  514. parent->removeStackArtifact(ArtifactPosition::CREATURE_SLOT);
  515. });
  516. }
  517. }
  518. }
  519. }
  520. std::string CStackWindow::MainSection::getBackgroundName(bool showExp, bool showArt)
  521. {
  522. if(showExp && showArt)
  523. return "info-panel-2";
  524. else if(showExp || showArt)
  525. return "info-panel-1";
  526. else
  527. return "info-panel-0";
  528. }
  529. void CStackWindow::MainSection::addStatLabel(EStat index, int64_t value1, int64_t value2)
  530. {
  531. const auto title = statNames.at(static_cast<size_t>(index));
  532. stats.push_back(std::make_shared<CLabel>(145, 32 + (int)index*19, FONT_SMALL, ETextAlignment::TOPLEFT, Colors::WHITE, title));
  533. const bool useRange = value1 != value2;
  534. std::string formatStr = useRange ? statFormats.at(static_cast<size_t>(index)) : "%d";
  535. boost::format fmt(formatStr);
  536. fmt % value1;
  537. if(useRange)
  538. fmt % value2;
  539. stats.push_back(std::make_shared<CLabel>(307, 48 + (int)index*19, FONT_SMALL, ETextAlignment::BOTTOMRIGHT, Colors::WHITE, fmt.str()));
  540. }
  541. void CStackWindow::MainSection::addStatLabel(EStat index, int64_t value)
  542. {
  543. addStatLabel(index, value, value);
  544. }
  545. CStackWindow::CStackWindow(const CStack * stack, bool popup)
  546. : CWindowObject(BORDERED | (popup ? RCLICK_POPUP : 0)),
  547. info(new UnitView())
  548. {
  549. info->stack = stack;
  550. info->stackNode = stack->base;
  551. info->creature = stack->type;
  552. info->creatureCount = stack->getCount();
  553. info->popupWindow = popup;
  554. init();
  555. }
  556. CStackWindow::CStackWindow(const CCreature * creature, bool popup)
  557. : CWindowObject(BORDERED | (popup ? RCLICK_POPUP : 0)),
  558. info(new UnitView())
  559. {
  560. info->creature = creature;
  561. info->popupWindow = popup;
  562. init();
  563. }
  564. CStackWindow::CStackWindow(const CStackInstance * stack, bool popup)
  565. : CWindowObject(BORDERED | (popup ? RCLICK_POPUP : 0)),
  566. info(new UnitView())
  567. {
  568. info->stackNode = stack;
  569. info->creature = stack->type;
  570. info->creatureCount = stack->count;
  571. info->popupWindow = popup;
  572. info->owner = dynamic_cast<const CGHeroInstance *> (stack->armyObj);
  573. init();
  574. }
  575. CStackWindow::CStackWindow(const CStackInstance * stack, std::function<void()> dismiss, const UpgradeInfo & upgradeInfo, std::function<void(CreatureID)> callback)
  576. : CWindowObject(BORDERED),
  577. info(new UnitView())
  578. {
  579. info->stackNode = stack;
  580. info->creature = stack->type;
  581. info->creatureCount = stack->count;
  582. info->upgradeInfo = boost::make_optional(UnitView::StackUpgradeInfo());
  583. info->dismissInfo = boost::make_optional(UnitView::StackDismissInfo());
  584. info->upgradeInfo->info = upgradeInfo;
  585. info->upgradeInfo->callback = callback;
  586. info->dismissInfo->callback = dismiss;
  587. info->owner = dynamic_cast<const CGHeroInstance *> (stack->armyObj);
  588. init();
  589. }
  590. CStackWindow::CStackWindow(const CCommanderInstance * commander, bool popup)
  591. : CWindowObject(BORDERED | (popup ? RCLICK_POPUP : 0)),
  592. info(new UnitView())
  593. {
  594. info->stackNode = commander;
  595. info->creature = commander->type;
  596. info->commander = commander;
  597. info->creatureCount = 1;
  598. info->popupWindow = popup;
  599. info->owner = dynamic_cast<const CGHeroInstance *> (commander->armyObj);
  600. init();
  601. }
  602. CStackWindow::CStackWindow(const CCommanderInstance * commander, std::vector<ui32> &skills, std::function<void(ui32)> callback)
  603. : CWindowObject(BORDERED),
  604. info(new UnitView())
  605. {
  606. info->stackNode = commander;
  607. info->creature = commander->type;
  608. info->commander = commander;
  609. info->creatureCount = 1;
  610. info->levelupInfo = boost::make_optional(UnitView::CommanderLevelInfo());
  611. info->levelupInfo->skills = skills;
  612. info->levelupInfo->callback = callback;
  613. info->owner = dynamic_cast<const CGHeroInstance *> (commander->armyObj);
  614. init();
  615. }
  616. CStackWindow::~CStackWindow()
  617. {
  618. if(info->levelupInfo && !info->levelupInfo->skills.empty())
  619. info->levelupInfo->callback(vstd::find_pos(info->levelupInfo->skills, selectedSkill));
  620. }
  621. void CStackWindow::init()
  622. {
  623. OBJECT_CONSTRUCTION_CAPTURING(255-DISPOSE);
  624. if(!info->stackNode)
  625. info->stackNode = new CStackInstance(info->creature, 1, true);// FIXME: free data
  626. selectedIcon = nullptr;
  627. selectedSkill = -1;
  628. if(info->levelupInfo && !info->levelupInfo->skills.empty())
  629. selectedSkill = info->levelupInfo->skills.front();
  630. activeTab = 0;
  631. initBonusesList();
  632. initSections();
  633. }
  634. void CStackWindow::initBonusesList()
  635. {
  636. BonusList output, input;
  637. input = *(info->stackNode->getBonuses(CSelector(Bonus::Permanent), Selector::all));
  638. while(!input.empty())
  639. {
  640. auto b = input.front();
  641. output.push_back(std::make_shared<Bonus>(*b));
  642. output.back()->val = input.valOfBonuses(Selector::typeSubtype(b->type, b->subtype)); //merge multiple bonuses into one
  643. input.remove_if (Selector::typeSubtype(b->type, b->subtype)); //remove used bonuses
  644. }
  645. BonusInfo bonusInfo;
  646. for(auto b : output)
  647. {
  648. bonusInfo.name = info->stackNode->bonusToString(b, false);
  649. bonusInfo.description = info->stackNode->bonusToString(b, true);
  650. bonusInfo.imagePath = info->stackNode->bonusToGraphics(b);
  651. //if it's possible to give any description or image for this kind of bonus
  652. //TODO: figure out why half of bonuses don't have proper description
  653. if(!bonusInfo.name.empty() || !bonusInfo.imagePath.empty())
  654. activeBonuses.push_back(bonusInfo);
  655. }
  656. }
  657. void CStackWindow::initSections()
  658. {
  659. OBJECT_CONSTRUCTION_CUSTOM_CAPTURING(255-DISPOSE);
  660. bool showArt = CGI->settings()->getBoolean(EGameSettings::MODULE_STACK_ARTIFACT) && info->commander == nullptr && info->stackNode;
  661. bool showExp = (CGI->settings()->getBoolean(EGameSettings::MODULE_STACK_EXPERIENCE) || info->commander != nullptr) && info->stackNode;
  662. mainSection = std::make_shared<MainSection>(this, pos.h, showExp, showArt);
  663. pos.w = mainSection->pos.w;
  664. pos.h += mainSection->pos.h;
  665. if(info->stack) // in battle
  666. {
  667. activeSpellsSection = std::make_shared<ActiveSpellsSection>(this, pos.h);
  668. pos.h += activeSpellsSection->pos.h;
  669. }
  670. if(info->commander)
  671. {
  672. auto onCreate = [=](size_t index) -> std::shared_ptr<CIntObject>
  673. {
  674. auto obj = switchTab(index);
  675. if(obj)
  676. {
  677. obj->activate();
  678. obj->recActions |= (UPDATE | SHOWALL);
  679. }
  680. return obj;
  681. };
  682. auto deactivateObj = [=](std::shared_ptr<CIntObject> obj)
  683. {
  684. obj->deactivate();
  685. obj->recActions &= ~(UPDATE | SHOWALL);
  686. };
  687. commanderMainSection = std::make_shared<CommanderMainSection>(this, 0);
  688. auto size = boost::make_optional<size_t>((info->levelupInfo) ? 4 : 3);
  689. commanderBonusesSection = std::make_shared<BonusesSection>(this, 0, size);
  690. deactivateObj(commanderBonusesSection);
  691. commanderTab = std::make_shared<CTabbedInt>(onCreate, Point(0, pos.h), 0);
  692. pos.h += commanderMainSection->pos.h;
  693. }
  694. if(!info->commander && !activeBonuses.empty())
  695. {
  696. bonusesSection = std::make_shared<BonusesSection>(this, pos.h);
  697. pos.h += bonusesSection->pos.h;
  698. }
  699. if(!info->popupWindow)
  700. {
  701. buttonsSection = std::make_shared<ButtonsSection>(this, pos.h);
  702. pos.h += buttonsSection->pos.h;
  703. //FIXME: add status bar to image?
  704. }
  705. updateShadow();
  706. pos = center(pos);
  707. }
  708. std::string CStackWindow::generateStackExpDescription()
  709. {
  710. const CStackInstance * stack = info->stackNode;
  711. const CCreature * creature = info->creature;
  712. int tier = stack->type->getLevel();
  713. int rank = stack->getExpRank();
  714. if (!vstd::iswithin(tier, 1, 7))
  715. tier = 0;
  716. int number;
  717. std::string expText = CGI->generaltexth->translate("vcmi.stackExperience.description");
  718. boost::replace_first(expText, "%s", creature->getNamePluralTranslated());
  719. boost::replace_first(expText, "%s", CGI->generaltexth->translate("vcmi.stackExperience.rank", rank));
  720. boost::replace_first(expText, "%i", std::to_string(rank));
  721. boost::replace_first(expText, "%i", std::to_string(stack->experience));
  722. number = static_cast<int>(CGI->creh->expRanks[tier][rank] - stack->experience);
  723. boost::replace_first(expText, "%i", std::to_string(number));
  724. number = CGI->creh->maxExpPerBattle[tier]; //percent
  725. boost::replace_first(expText, "%i%", std::to_string(number));
  726. number *= CGI->creh->expRanks[tier].back() / 100; //actual amount
  727. boost::replace_first(expText, "%i", std::to_string(number));
  728. boost::replace_first(expText, "%i", std::to_string(stack->count)); //Number of Creatures in stack
  729. int expmin = std::max(CGI->creh->expRanks[tier][std::max(rank-1, 0)], (ui32)1);
  730. number = static_cast<int>((stack->count * (stack->experience - expmin)) / expmin); //Maximum New Recruits without losing current Rank
  731. boost::replace_first(expText, "%i", std::to_string(number)); //TODO
  732. boost::replace_first(expText, "%.2f", std::to_string(1)); //TODO Experience Multiplier
  733. number = CGI->creh->expAfterUpgrade;
  734. boost::replace_first(expText, "%.2f", std::to_string(number) + "%"); //Upgrade Multiplier
  735. expmin = CGI->creh->expRanks[tier][9];
  736. int expmax = CGI->creh->expRanks[tier][10];
  737. number = expmax - expmin;
  738. boost::replace_first(expText, "%i", std::to_string(number)); //Experience after Rank 10
  739. number = (stack->count * (expmax - expmin)) / expmin;
  740. boost::replace_first(expText, "%i", std::to_string(number)); //Maximum New Recruits to remain at Rank 10 if at Maximum Experience
  741. return expText;
  742. }
  743. void CStackWindow::setSelection(si32 newSkill, std::shared_ptr<CCommanderSkillIcon> newIcon)
  744. {
  745. auto getSkillDescription = [this](int skillIndex, bool selected) -> std::string
  746. {
  747. if(selected)
  748. return CGI->generaltexth->znpc00[152 + (12 * skillIndex) + ((info->commander->secondarySkills[skillIndex] + 1) * 2)]; //upgrade description
  749. else
  750. return CGI->generaltexth->znpc00[152 + (12 * skillIndex) + (info->commander->secondarySkills[skillIndex] * 2)];
  751. };
  752. auto getSkillImage = [this](int skillIndex) -> std::string
  753. {
  754. bool selected = ((selectedSkill == skillIndex) && info->levelupInfo );
  755. return skillToFile(skillIndex, info->commander->secondarySkills[skillIndex], selected);
  756. };
  757. OBJECT_CONSTRUCTION_CUSTOM_CAPTURING(255-DISPOSE);
  758. int oldSelection = selectedSkill; // update selection
  759. selectedSkill = newSkill;
  760. if(selectedIcon && oldSelection < 100) // recreate image on old selection, only for skills
  761. selectedIcon->setObject(std::make_shared<CPicture>(getSkillImage(oldSelection)));
  762. if(selectedIcon)
  763. selectedIcon->text = getSkillDescription(oldSelection, false); //update previously selected icon's message to existing skill level
  764. selectedIcon = newIcon; // update new selection
  765. if(newSkill < 100)
  766. {
  767. newIcon->setObject(std::make_shared<CPicture>(getSkillImage(newSkill)));
  768. newIcon->text = getSkillDescription(newSkill, true); //update currently selected icon's message to show upgrade description
  769. }
  770. }
  771. std::shared_ptr<CIntObject> CStackWindow::switchTab(size_t index)
  772. {
  773. std::shared_ptr<CIntObject> ret;
  774. switch(index)
  775. {
  776. case 0:
  777. {
  778. activeTab = 0;
  779. ret = commanderMainSection;
  780. }
  781. break;
  782. case 1:
  783. {
  784. activeTab = 1;
  785. ret = commanderBonusesSection;
  786. }
  787. break;
  788. default:
  789. break;
  790. }
  791. return ret;
  792. }
  793. void CStackWindow::removeStackArtifact(ArtifactPosition pos)
  794. {
  795. auto art = info->stackNode->getArt(ArtifactPosition::CREATURE_SLOT);
  796. if(!art)
  797. {
  798. logGlobal->error("Attempt to remove missing artifact");
  799. return;
  800. }
  801. const auto slot = ArtifactUtils::getArtBackpackPosition(info->owner, art->getTypeId());
  802. if(slot != ArtifactPosition::PRE_FIRST)
  803. {
  804. LOCPLINT->cb->swapArtifacts(ArtifactLocation(info->stackNode, pos), ArtifactLocation(info->owner, slot));
  805. stackArtifactButton.reset();
  806. stackArtifactHelp.reset();
  807. stackArtifactIcon.reset();
  808. redraw();
  809. }
  810. }