| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953 | 
							- /*
 
-  * CCreatureWindow.cpp, part of VCMI engine
 
-  *
 
-  * Authors: listed in file AUTHORS in main folder
 
-  *
 
-  * License: GNU General Public License v2.0 or later
 
-  * Full text of license available in license.txt file, in main folder
 
-  *
 
-  */
 
- #include "StdInc.h"
 
- #include "CCreatureWindow.h"
 
- #include <vcmi/spells/Spell.h>
 
- #include <vcmi/spells/Service.h>
 
- #include "../CGameInfo.h"
 
- #include "../CPlayerInterface.h"
 
- #include "../widgets/Buttons.h"
 
- #include "../widgets/CArtifactHolder.h"
 
- #include "../widgets/CComponent.h"
 
- #include "../widgets/Images.h"
 
- #include "../widgets/TextControls.h"
 
- #include "../widgets/ObjectLists.h"
 
- #include "../gui/CGuiHandler.h"
 
- #include "../gui/Shortcut.h"
 
- #include "../../CCallback.h"
 
- #include "../../lib/ArtifactUtils.h"
 
- #include "../../lib/CStack.h"
 
- #include "../../lib/CBonusTypeHandler.h"
 
- #include "../../lib/CGeneralTextHandler.h"
 
- #include "../../lib/CModHandler.h"
 
- #include "../../lib/GameSettings.h"
 
- #include "../../lib/CHeroHandler.h"
 
- #include "../../lib/CGameState.h"
 
- #include "../../lib/TextOperations.h"
 
- class CCreatureArtifactInstance;
 
- class CSelectableSkill;
 
- class UnitView
 
- {
 
- public:
 
- 	// helper structs
 
- 	struct CommanderLevelInfo
 
- 	{
 
- 		std::vector<ui32> skills;
 
- 		std::function<void(ui32)> callback;
 
- 	};
 
- 	struct StackDismissInfo
 
- 	{
 
- 		std::function<void()> callback;
 
- 	};
 
- 	struct StackUpgradeInfo
 
- 	{
 
- 		UpgradeInfo info;
 
- 		std::function<void(CreatureID)> callback;
 
- 	};
 
- 	// pointers to permament objects in game state
 
- 	const CCreature * creature;
 
- 	const CCommanderInstance * commander;
 
- 	const CStackInstance * stackNode;
 
- 	const CStack * stack;
 
- 	const CGHeroInstance * owner;
 
- 	// temporary objects which should be kept as copy if needed
 
- 	std::optional<CommanderLevelInfo> levelupInfo;
 
- 	std::optional<StackDismissInfo> dismissInfo;
 
- 	std::optional<StackUpgradeInfo> upgradeInfo;
 
- 	// misc fields
 
- 	unsigned int creatureCount;
 
- 	bool popupWindow;
 
- 	UnitView()
 
- 		: creature(nullptr),
 
- 		commander(nullptr),
 
- 		stackNode(nullptr),
 
- 		stack(nullptr),
 
- 		owner(nullptr),
 
- 		creatureCount(0),
 
- 		popupWindow(false)
 
- 	{
 
- 	}
 
- 	std::string getName() const
 
- 	{
 
- 		if(commander)
 
- 			return commander->type->getNameSingularTranslated();
 
- 		else
 
- 			return creature->getNamePluralTranslated();
 
- 	}
 
- private:
 
- };
 
- CCommanderSkillIcon::CCommanderSkillIcon(std::shared_ptr<CIntObject> object_, std::function<void()> callback)
 
- 	: object(),
 
- 	callback(callback)
 
- {
 
- 	pos = object_->pos;
 
- 	setObject(object_);
 
- }
 
- void CCommanderSkillIcon::setObject(std::shared_ptr<CIntObject> newObject)
 
- {
 
- 	if(object)
 
- 		removeChild(object.get());
 
- 	object = newObject;
 
- 	addChild(object.get());
 
- 	object->moveTo(pos.topLeft());
 
- 	redraw();
 
- }
 
- void CCommanderSkillIcon::clickLeft(tribool down, bool previousState)
 
- {
 
- 	if(down)
 
- 		callback();
 
- }
 
- static std::string skillToFile(int skill, int level, bool selected)
 
- {
 
- 	// FIXME: is this a correct hadling?
 
- 	// level 0 = skill not present, use image with "no" suffix
 
- 	// level 1-5 = skill available, mapped to images indexed as 0-4
 
- 	// selecting skill means that it will appear one level higher (as if alredy upgraded)
 
- 	std::string file = "zvs/Lib1.res/_";
 
- 	switch (skill)
 
- 	{
 
- 		case ECommander::ATTACK:
 
- 			file += "AT";
 
- 			break;
 
- 		case ECommander::DEFENSE:
 
- 			file += "DF";
 
- 			break;
 
- 		case ECommander::HEALTH:
 
- 			file += "HP";
 
- 			break;
 
- 		case ECommander::DAMAGE:
 
- 			file += "DM";
 
- 			break;
 
- 		case ECommander::SPEED:
 
- 			file += "SP";
 
- 			break;
 
- 		case ECommander::SPELL_POWER:
 
- 			file += "MP";
 
- 			break;
 
- 	}
 
- 	std::string sufix;
 
- 	if (selected)
 
- 		level++; // UI will display resulting level
 
- 	if (level == 0)
 
- 		sufix = "no"; //not avaliable - no number
 
- 	else
 
- 		sufix = std::to_string(level-1);
 
- 	if (selected)
 
- 		sufix += "="; //level-up highlight
 
- 	return file + sufix + ".bmp";
 
- }
 
- CStackWindow::CWindowSection::CWindowSection(CStackWindow * parent, std::string backgroundPath, int yOffset)
 
- 	: parent(parent)
 
- {
 
- 	pos.y += yOffset;
 
- 	OBJECT_CONSTRUCTION_CAPTURING(255-DISPOSE);
 
- 	if(!backgroundPath.empty())
 
- 	{
 
- 		background = std::make_shared<CPicture>("stackWindow/" + backgroundPath);
 
- 		pos.w = background->pos.w;
 
- 		pos.h = background->pos.h;
 
- 	}
 
- }
 
- CStackWindow::ActiveSpellsSection::ActiveSpellsSection(CStackWindow * owner, int yOffset)
 
- 	: CWindowSection(owner, "spell-effects", yOffset)
 
- {
 
- 	static const Point firstPos(6, 2); // position of 1st spell box
 
- 	static const Point offset(54, 0);  // offset of each spell box from previous
 
- 	OBJECT_CONSTRUCTION_CAPTURING(255-DISPOSE);
 
- 	const CStack * battleStack = parent->info->stack;
 
- 	assert(battleStack); // Section should be created only for battles
 
- 	//spell effects
 
- 	int printed=0; //how many effect pics have been printed
 
- 	std::vector<si32> spells = battleStack->activeSpells();
 
- 	for(si32 effect : spells)
 
- 	{
 
- 		const spells::Spell * spell = CGI->spells()->getByIndex(effect);
 
- 		std::string spellText;
 
- 		//not all effects have graphics (for eg. Acid Breath)
 
- 		//for modded spells iconEffect is added to SpellInt.def
 
- 		const bool hasGraphics = (effect < SpellID::THUNDERBOLT) || (effect >= SpellID::AFTER_LAST);
 
- 		if (hasGraphics)
 
- 		{
 
- 			spellText = CGI->generaltexth->allTexts[610]; //"%s, duration: %d rounds."
 
- 			boost::replace_first(spellText, "%s", spell->getNameTranslated());
 
- 			//FIXME: support permanent duration
 
- 			int duration = battleStack->getBonusLocalFirst(Selector::source(BonusSource::SPELL_EFFECT,effect))->turnsRemain;
 
- 			boost::replace_first(spellText, "%d", std::to_string(duration));
 
- 			spellIcons.push_back(std::make_shared<CAnimImage>("SpellInt", effect + 1, 0, firstPos.x + offset.x * printed, firstPos.y + offset.y * printed));
 
- 			clickableAreas.push_back(std::make_shared<LRClickableAreaWText>(Rect(firstPos + offset * printed, Point(50, 38)), spellText, spellText));
 
- 			if(++printed >= 8) // interface limit reached
 
- 				break;
 
- 		}
 
- 	}
 
- }
 
- CStackWindow::BonusLineSection::BonusLineSection(CStackWindow * owner, size_t lineIndex)
 
- 	: CWindowSection(owner, "bonus-effects", 0)
 
- {
 
- 	OBJECT_CONSTRUCTION_CAPTURING(255-DISPOSE);
 
- 	static const std::array<Point, 2> offset =
 
- 	{
 
- 		Point(6, 4),
 
- 		Point(214, 4)
 
- 	};
 
- 	for(size_t leftRight : {0, 1})
 
- 	{
 
- 		auto position = offset[leftRight];
 
- 		size_t bonusIndex = lineIndex * 2 + leftRight;
 
- 		if(parent->activeBonuses.size() > bonusIndex)
 
- 		{
 
- 			BonusInfo & bi = parent->activeBonuses[bonusIndex];
 
- 			icon[leftRight] = std::make_shared<CPicture>(bi.imagePath, position.x, position.y);
 
- 			name[leftRight] = std::make_shared<CLabel>(position.x + 60, position.y + 2, FONT_SMALL, ETextAlignment::TOPLEFT, Colors::WHITE, bi.name);
 
- 			description[leftRight] = std::make_shared<CMultiLineLabel>(Rect(position.x + 60, position.y + 17, 137, 30), FONT_SMALL, ETextAlignment::TOPLEFT, Colors::WHITE, bi.description);
 
- 		}
 
- 	}
 
- }
 
- CStackWindow::BonusesSection::BonusesSection(CStackWindow * owner, int yOffset, std::optional<size_t> preferredSize):
 
- 	CWindowSection(owner, "", yOffset)
 
- {
 
- 	OBJECT_CONSTRUCTION_CAPTURING(255-DISPOSE);
 
- 	// size of single image for an item
 
- 	static const int itemHeight = 59;
 
- 	size_t totalSize = (owner->activeBonuses.size() + 1) / 2;
 
- 	size_t visibleSize = preferredSize.value_or(std::min<size_t>(3, totalSize));
 
- 	pos.w = owner->pos.w;
 
- 	pos.h = itemHeight * (int)visibleSize;
 
- 	auto onCreate = [=](size_t index) -> std::shared_ptr<CIntObject>
 
- 	{
 
- 		return std::make_shared<BonusLineSection>(owner, index);
 
- 	};
 
- 	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));
 
- }
 
- CStackWindow::ButtonsSection::ButtonsSection(CStackWindow * owner, int yOffset)
 
- 	: CWindowSection(owner, "button-panel", yOffset)
 
- {
 
- 	OBJECT_CONSTRUCTION_CAPTURING(255-DISPOSE);
 
- 	if(parent->info->dismissInfo && parent->info->dismissInfo->callback)
 
- 	{
 
- 		auto onDismiss = [=]()
 
- 		{
 
- 			parent->info->dismissInfo->callback();
 
- 			parent->close();
 
- 		};
 
- 		auto onClick = [=] ()
 
- 		{
 
- 			LOCPLINT->showYesNoDialog(CGI->generaltexth->allTexts[12], onDismiss, nullptr);
 
- 		};
 
- 		dismiss = std::make_shared<CButton>(Point(5, 5),"IVIEWCR2.DEF", CGI->generaltexth->zelp[445], onClick, EShortcut::HERO_DISMISS);
 
- 	}
 
- 	if(parent->info->upgradeInfo && !parent->info->commander)
 
- 	{
 
- 		// used space overlaps with commander switch button
 
- 		// besides - should commander really be upgradeable?
 
- 		auto & upgradeInfo = parent->info->upgradeInfo.value();
 
- 		const size_t buttonsToCreate = std::min<size_t>(upgradeInfo.info.newID.size(), upgrade.size());
 
- 		for(size_t buttonIndex = 0; buttonIndex < buttonsToCreate; buttonIndex++)
 
- 		{
 
- 			TResources totalCost = upgradeInfo.info.cost[buttonIndex] * parent->info->creatureCount;
 
- 			auto onUpgrade = [=]()
 
- 			{
 
- 				upgradeInfo.callback(upgradeInfo.info.newID[buttonIndex]);
 
- 				parent->close();
 
- 			};
 
- 			auto onClick = [=]()
 
- 			{
 
- 				std::vector<std::shared_ptr<CComponent>> resComps;
 
- 				for(TResources::nziterator i(totalCost); i.valid(); i++)
 
- 				{
 
- 					resComps.push_back(std::make_shared<CComponent>(CComponent::resource, i->resType, (int)i->resVal));
 
- 				}
 
- 				if(LOCPLINT->cb->getResourceAmount().canAfford(totalCost))
 
- 				{
 
- 					LOCPLINT->showYesNoDialog(CGI->generaltexth->allTexts[207], onUpgrade, nullptr, resComps);
 
- 				}
 
- 				else
 
- 				{
 
- 					LOCPLINT->showInfoDialog(CGI->generaltexth->allTexts[314], resComps);
 
- 				}
 
- 			};
 
- 			auto upgradeBtn = std::make_shared<CButton>(Point(221 + (int)buttonIndex * 40, 5), "stackWindow/upgradeButton", CGI->generaltexth->zelp[446], onClick);
 
- 			upgradeBtn->addOverlay(std::make_shared<CAnimImage>("CPRSMALL", VLC->creh->objects[upgradeInfo.info.newID[buttonIndex]]->getIconIndex()));
 
- 			if(buttonsToCreate == 1) // single upgrade avaialbe
 
- 				upgradeBtn->assignedKey = EShortcut::RECRUITMENT_UPGRADE;
 
- 			upgrade[buttonIndex] = upgradeBtn;
 
- 		}
 
- 	}
 
- 	if(parent->info->commander)
 
- 	{
 
- 		for(size_t buttonIndex = 0; buttonIndex < 2; buttonIndex++)
 
- 		{
 
- 			std::string btnIDs[2] = { "showSkills", "showBonuses" };
 
- 			auto onSwitch = [buttonIndex, this]()
 
- 			{
 
- 				logAnim->debug("Switch %d->%d", parent->activeTab, buttonIndex);
 
- 				parent->switchButtons[parent->activeTab]->enable();
 
- 				parent->commanderTab->setActive(buttonIndex);
 
- 				parent->switchButtons[buttonIndex]->disable();
 
- 				parent->redraw(); // FIXME: enable/disable don't redraw screen themselves
 
- 			};
 
- 			std::string tooltipText = "vcmi.creatureWindow." + btnIDs[buttonIndex];
 
- 			parent->switchButtons[buttonIndex] = std::make_shared<CButton>(Point(302 + (int)buttonIndex*40, 5), "stackWindow/upgradeButton", CButton::tooltipLocalized(tooltipText), onSwitch);
 
- 			parent->switchButtons[buttonIndex]->addOverlay(std::make_shared<CAnimImage>("stackWindow/switchModeIcons", buttonIndex));
 
- 		}
 
- 		parent->switchButtons[parent->activeTab]->disable();
 
- 	}
 
- 	exit = std::make_shared<CButton>(Point(382, 5), "hsbtns.def", CGI->generaltexth->zelp[447], [=](){ parent->close(); }, EShortcut::GLOBAL_RETURN);
 
- }
 
- CStackWindow::CommanderMainSection::CommanderMainSection(CStackWindow * owner, int yOffset)
 
- 	: CWindowSection(owner, "commander-bg", yOffset)
 
- {
 
- 	OBJECT_CONSTRUCTION_CAPTURING(255-DISPOSE);
 
- 	auto getSkillPos = [](int index)
 
- 	{
 
- 		return Point(10 + 80 * (index%3), 20 + 80 * (index/3));
 
- 	};
 
- 	auto getSkillImage = [this](int skillIndex) -> std::string
 
- 	{
 
- 		bool selected = ((parent->selectedSkill == skillIndex) && parent->info->levelupInfo );
 
- 		return skillToFile(skillIndex, parent->info->commander->secondarySkills[skillIndex], selected);
 
- 	};
 
- 	auto getSkillDescription = [this](int skillIndex) -> std::string
 
- 	{
 
- 		return CGI->generaltexth->znpc00[152 + (12 * skillIndex) + (parent->info->commander->secondarySkills[skillIndex] * 2)];
 
- 	};
 
- 	for(int index = ECommander::ATTACK; index <= ECommander::SPELL_POWER; ++index)
 
- 	{
 
- 		Point skillPos = getSkillPos(index);
 
- 		auto icon = std::make_shared<CCommanderSkillIcon>(std::make_shared<CPicture>(getSkillImage(index), skillPos.x, skillPos.y), [=]()
 
- 		{
 
- 			LOCPLINT->showInfoDialog(getSkillDescription(index));
 
- 		});
 
- 		icon->text = getSkillDescription(index); //used to handle right click description via LRClickableAreaWText::ClickRight()
 
- 		if(parent->selectedSkill == index)
 
- 			parent->selectedIcon = icon;
 
- 		if(parent->info->levelupInfo && vstd::contains(parent->info->levelupInfo->skills, index)) // can be upgraded - enable selection switch
 
- 		{
 
- 			if(parent->selectedSkill == index)
 
- 				parent->setSelection(index, icon);
 
- 			icon->callback = [=]()
 
- 			{
 
- 				parent->setSelection(index, icon);
 
- 			};
 
- 		}
 
- 		skillIcons.push_back(icon);
 
- 	}
 
- 	auto getArtifactPos = [](int index)
 
- 	{
 
- 		return Point(269 + 47 * (index % 3), 22 + 47 * (index / 3));
 
- 	};
 
- 	for(auto equippedArtifact : parent->info->commander->artifactsWorn)
 
- 	{
 
- 		Point artPos = getArtifactPos(equippedArtifact.first);
 
- 		auto artPlace = std::make_shared<CCommanderArtPlace>(artPos, parent->info->owner, equippedArtifact.first, equippedArtifact.second.artifact);
 
- 		artifacts.push_back(artPlace);
 
- 	}
 
- 	if(parent->info->levelupInfo)
 
- 	{
 
- 		abilitiesBackground = std::make_shared<CPicture>("stackWindow/commander-abilities.png");
 
- 		abilitiesBackground->moveBy(Point(0, pos.h));
 
- 		size_t abilitiesCount = boost::range::count_if(parent->info->levelupInfo->skills, [](ui32 skillID)
 
- 		{
 
- 			return skillID >= 100;
 
- 		});
 
- 		auto onCreate = [=](size_t index)->std::shared_ptr<CIntObject>
 
- 		{
 
- 			for(auto skillID : parent->info->levelupInfo->skills)
 
- 			{
 
- 				if(index == 0 && skillID >= 100)
 
- 				{
 
- 					const auto bonus = CGI->creh->skillRequirements[skillID-100].first;
 
- 					const CStackInstance * stack = parent->info->commander;
 
- 					auto icon = std::make_shared<CCommanderSkillIcon>(std::make_shared<CPicture>(stack->bonusToGraphics(bonus)), [](){});
 
- 					icon->callback = [=]()
 
- 					{
 
- 						parent->setSelection(skillID, icon);
 
- 					};
 
- 					icon->text = stack->bonusToString(bonus, true);
 
- 					icon->hoverText = stack->bonusToString(bonus, false);
 
- 					return icon;
 
- 				}
 
- 				if(skillID >= 100)
 
- 					index--;
 
- 			}
 
- 			return nullptr;
 
- 		};
 
- 		abilities = std::make_shared<CListBox>(onCreate, Point(38, 3+pos.h), Point(63, 0), 6, abilitiesCount);
 
- 		leftBtn = std::make_shared<CButton>(Point(10,  pos.h + 6), "hsbtns3.def", CButton::tooltip(), [=](){ abilities->moveToPrev(); }, EShortcut::MOVE_LEFT);
 
- 		rightBtn = std::make_shared<CButton>(Point(411, pos.h + 6), "hsbtns5.def", CButton::tooltip(), [=](){ abilities->moveToNext(); }, EShortcut::MOVE_RIGHT);
 
- 		if(abilitiesCount <= 6)
 
- 		{
 
- 			leftBtn->block(true);
 
- 			rightBtn->block(true);
 
- 		}
 
- 		pos.h += abilitiesBackground->pos.h;
 
- 	}
 
- }
 
- CStackWindow::MainSection::MainSection(CStackWindow * owner, int yOffset, bool showExp, bool showArt)
 
- 	: CWindowSection(owner, getBackgroundName(showExp, showArt), yOffset)
 
- {
 
- 	OBJECT_CONSTRUCTION_CAPTURING(255-DISPOSE);
 
- 	statNames =
 
- 	{
 
- 		CGI->generaltexth->primarySkillNames[0], //ATTACK
 
- 		CGI->generaltexth->primarySkillNames[1],//DEFENCE
 
- 		CGI->generaltexth->allTexts[198],//SHOTS
 
- 		CGI->generaltexth->allTexts[199],//DAMAGE
 
- 		CGI->generaltexth->allTexts[388],//HEALTH
 
- 		CGI->generaltexth->allTexts[200],//HEALTH_LEFT
 
- 		CGI->generaltexth->zelp[441].first,//SPEED
 
- 		CGI->generaltexth->allTexts[399]//MANA
 
- 	};
 
- 	statFormats =
 
- 	{
 
- 		"%d (%d)",
 
- 		"%d (%d)",
 
- 		"%d (%d)",
 
- 		"%d - %d",
 
- 		"%d (%d)",
 
- 		"%d (%d)",
 
- 		"%d (%d)",
 
- 		"%d (%d)"
 
- 	};
 
- 	animation = std::make_shared<CCreaturePic>(5, 41, parent->info->creature);
 
- 	if(parent->info->stackNode != nullptr && parent->info->commander == nullptr)
 
- 	{
 
- 		//normal stack, not a commander and not non-existing stack (e.g. recruitment dialog)
 
- 		animation->setAmount(parent->info->creatureCount);
 
- 	}
 
- 	name = std::make_shared<CLabel>(215, 12, FONT_SMALL, ETextAlignment::CENTER, Colors::YELLOW, parent->info->getName());
 
- 	int dmgMultiply = 1;
 
- 	if(parent->info->owner && parent->info->stackNode->hasBonusOfType(BonusType::SIEGE_WEAPON))
 
- 		dmgMultiply += parent->info->owner->getPrimSkillLevel(PrimarySkill::ATTACK);
 
- 	icons = std::make_shared<CPicture>("stackWindow/icons", 117, 32);
 
- 	const CStack * battleStack = parent->info->stack;
 
- 	morale = std::make_shared<MoraleLuckBox>(true, Rect(Point(321, 110), Point(42, 42) ));
 
- 	luck = std::make_shared<MoraleLuckBox>(false,  Rect(Point(375, 110), Point(42, 42) ));
 
- 	if(battleStack != nullptr) // in battle
 
- 	{
 
- 		addStatLabel(EStat::ATTACK, parent->info->creature->getAttack(battleStack->isShooter()), battleStack->getAttack(battleStack->isShooter()));
 
- 		addStatLabel(EStat::DEFENCE, parent->info->creature->getDefense(battleStack->isShooter()), battleStack->getDefense(battleStack->isShooter()));
 
- 		addStatLabel(EStat::DAMAGE, parent->info->stackNode->getMinDamage(battleStack->isShooter()) * dmgMultiply, battleStack->getMaxDamage(battleStack->isShooter()) * dmgMultiply);
 
- 		addStatLabel(EStat::HEALTH, parent->info->creature->getMaxHealth(), battleStack->getMaxHealth());
 
- 		addStatLabel(EStat::SPEED, parent->info->creature->speed(), battleStack->speed());
 
- 		if(battleStack->isShooter())
 
- 			addStatLabel(EStat::SHOTS, battleStack->shots.total(), battleStack->shots.available());
 
- 		if(battleStack->isCaster())
 
- 			addStatLabel(EStat::MANA, battleStack->casts.total(), battleStack->casts.available());
 
- 		addStatLabel(EStat::HEALTH_LEFT, battleStack->getFirstHPleft());
 
- 		morale->set(battleStack);
 
- 		luck->set(battleStack);
 
- 	}
 
- 	else
 
- 	{
 
- 		const bool shooter = parent->info->stackNode->hasBonusOfType(BonusType::SHOOTER) && parent->info->stackNode->valOfBonuses(BonusType::SHOTS);
 
- 		const bool caster = parent->info->stackNode->valOfBonuses(BonusType::CASTS);
 
- 		addStatLabel(EStat::ATTACK, parent->info->creature->getAttack(shooter), parent->info->stackNode->getAttack(shooter));
 
- 		addStatLabel(EStat::DEFENCE, parent->info->creature->getDefense(shooter), parent->info->stackNode->getDefense(shooter));
 
- 		addStatLabel(EStat::DAMAGE, parent->info->stackNode->getMinDamage(shooter) * dmgMultiply, parent->info->stackNode->getMaxDamage(shooter) * dmgMultiply);
 
- 		addStatLabel(EStat::HEALTH, parent->info->creature->getMaxHealth(), parent->info->stackNode->getMaxHealth());
 
- 		addStatLabel(EStat::SPEED, parent->info->creature->speed(), parent->info->stackNode->speed());
 
- 		if(shooter)
 
- 			addStatLabel(EStat::SHOTS, parent->info->stackNode->valOfBonuses(BonusType::SHOTS));
 
- 		if(caster)
 
- 			addStatLabel(EStat::MANA, parent->info->stackNode->valOfBonuses(BonusType::CASTS));
 
- 		morale->set(parent->info->stackNode);
 
- 		luck->set(parent->info->stackNode);
 
- 	}
 
- 	if(showExp)
 
- 	{
 
- 		const CStackInstance * stack = parent->info->stackNode;
 
- 		Point pos = showArt ? Point(321, 32) : Point(347, 32);
 
- 		if(parent->info->commander)
 
- 		{
 
- 			const CCommanderInstance * commander = parent->info->commander;
 
- 			expRankIcon = std::make_shared<CAnimImage>("PSKIL42", 4, 0, pos.x, pos.y);
 
- 			auto area = std::make_shared<LRClickableAreaWTextComp>(Rect(pos.x, pos.y, 44, 44), CComponent::experience);
 
- 			expArea = area;
 
- 			area->text = CGI->generaltexth->allTexts[2];
 
- 			area->bonusValue =	commander->getExpRank();
 
- 			boost::replace_first(area->text, "%d", std::to_string(commander->getExpRank()));
 
- 			boost::replace_first(area->text, "%d", std::to_string(CGI->heroh->reqExp(commander->getExpRank() + 1)));
 
- 			boost::replace_first(area->text, "%d", std::to_string(commander->experience));
 
- 		}
 
- 		else
 
- 		{
 
- 			expRankIcon = std::make_shared<CAnimImage>("stackWindow/levels", stack->getExpRank(), 0, pos.x, pos.y);
 
- 			expArea = std::make_shared<LRClickableAreaWText>(Rect(pos.x, pos.y, 44, 44));
 
- 			expArea->text = parent->generateStackExpDescription();
 
- 		}
 
- 		expLabel = std::make_shared<CLabel>(
 
- 				pos.x + 21, pos.y + 52, FONT_SMALL, ETextAlignment::CENTER, Colors::WHITE,
 
- 				TextOperations::formatMetric(stack->experience, 6));
 
- 	}
 
- 	if(showArt)
 
- 	{
 
- 		Point pos = showExp ? Point(375, 32) : Point(347, 32);
 
- 		// ALARMA: do not refactor this into a separate function
 
- 		// otherwise, artifact icon is drawn near the hero's portrait
 
- 		// this is really strange
 
- 		auto art = parent->info->stackNode->getArt(ArtifactPosition::CREATURE_SLOT);
 
- 		if(art)
 
- 		{
 
- 			parent->stackArtifactIcon = std::make_shared<CAnimImage>("ARTIFACT", art->artType->iconIndex, 0, pos.x, pos.y);
 
- 			parent->stackArtifactHelp = std::make_shared<LRClickableAreaWTextComp>(Rect(pos, Point(44, 44)), CComponent::artifact);
 
- 			parent->stackArtifactHelp->type = art->artType->getId();
 
- 			if(parent->info->owner)
 
- 			{
 
- 				parent->stackArtifactButton = std::make_shared<CButton>(
 
- 						Point(pos.x - 2 , pos.y + 46), "stackWindow/cancelButton",
 
- 						CButton::tooltipLocalized("vcmi.creatureWindow.returnArtifact"),	[=]()
 
- 				{
 
- 					parent->removeStackArtifact(ArtifactPosition::CREATURE_SLOT);
 
- 				});
 
- 			}
 
- 		}
 
- 	}
 
- }
 
- std::string CStackWindow::MainSection::getBackgroundName(bool showExp, bool showArt)
 
- {
 
- 	if(showExp && showArt)
 
- 		return "info-panel-2";
 
- 	else if(showExp || showArt)
 
- 		return "info-panel-1";
 
- 	else
 
- 		return "info-panel-0";
 
- }
 
- void CStackWindow::MainSection::addStatLabel(EStat index, int64_t value1, int64_t value2)
 
- {
 
- 	const auto title = statNames.at(static_cast<size_t>(index));
 
- 	stats.push_back(std::make_shared<CLabel>(145, 32 + (int)index*19, FONT_SMALL, ETextAlignment::TOPLEFT, Colors::WHITE, title));
 
- 	const bool useRange = value1 != value2;
 
- 	std::string formatStr = useRange ? statFormats.at(static_cast<size_t>(index)) : "%d";
 
- 	boost::format fmt(formatStr);
 
- 	fmt % value1;
 
- 	if(useRange)
 
- 		fmt % value2;
 
- 	stats.push_back(std::make_shared<CLabel>(307, 48 + (int)index*19, FONT_SMALL, ETextAlignment::BOTTOMRIGHT, Colors::WHITE, fmt.str()));
 
- }
 
- void CStackWindow::MainSection::addStatLabel(EStat index, int64_t value)
 
- {
 
- 	addStatLabel(index, value, value);
 
- }
 
- CStackWindow::CStackWindow(const CStack * stack, bool popup)
 
- 	: CWindowObject(BORDERED | (popup ? RCLICK_POPUP : 0)),
 
- 	info(new UnitView())
 
- {
 
- 	info->stack = stack;
 
- 	info->stackNode = stack->base;
 
- 	info->creature = stack->unitType();
 
- 	info->creatureCount = stack->getCount();
 
- 	info->popupWindow = popup;
 
- 	init();
 
- }
 
- CStackWindow::CStackWindow(const CCreature * creature, bool popup)
 
- 	: CWindowObject(BORDERED | (popup ? RCLICK_POPUP : 0)),
 
- 	info(new UnitView())
 
- {
 
- 	info->creature = creature;
 
- 	info->popupWindow = popup;
 
- 	init();
 
- }
 
- CStackWindow::CStackWindow(const CStackInstance * stack, bool popup)
 
- 	: CWindowObject(BORDERED | (popup ? RCLICK_POPUP : 0)),
 
- 	info(new UnitView())
 
- {
 
- 	info->stackNode = stack;
 
- 	info->creature = stack->type;
 
- 	info->creatureCount = stack->count;
 
- 	info->popupWindow = popup;
 
- 	info->owner = dynamic_cast<const CGHeroInstance *> (stack->armyObj);
 
- 	init();
 
- }
 
- CStackWindow::CStackWindow(const CStackInstance * stack, std::function<void()> dismiss, const UpgradeInfo & upgradeInfo, std::function<void(CreatureID)> callback)
 
- 	: CWindowObject(BORDERED),
 
- 	info(new UnitView())
 
- {
 
- 	info->stackNode = stack;
 
- 	info->creature = stack->type;
 
- 	info->creatureCount = stack->count;
 
- 	info->upgradeInfo = std::make_optional(UnitView::StackUpgradeInfo());
 
- 	info->dismissInfo = std::make_optional(UnitView::StackDismissInfo());
 
- 	info->upgradeInfo->info = upgradeInfo;
 
- 	info->upgradeInfo->callback = callback;
 
- 	info->dismissInfo->callback = dismiss;
 
- 	info->owner = dynamic_cast<const CGHeroInstance *> (stack->armyObj);
 
- 	init();
 
- }
 
- CStackWindow::CStackWindow(const CCommanderInstance * commander, bool popup)
 
- 	: CWindowObject(BORDERED | (popup ? RCLICK_POPUP : 0)),
 
- 	info(new UnitView())
 
- {
 
- 	info->stackNode = commander;
 
- 	info->creature = commander->type;
 
- 	info->commander = commander;
 
- 	info->creatureCount = 1;
 
- 	info->popupWindow = popup;
 
- 	info->owner = dynamic_cast<const CGHeroInstance *> (commander->armyObj);
 
- 	init();
 
- }
 
- CStackWindow::CStackWindow(const CCommanderInstance * commander, std::vector<ui32> &skills, std::function<void(ui32)> callback)
 
- 	: CWindowObject(BORDERED),
 
- 	info(new UnitView())
 
- {
 
- 	info->stackNode = commander;
 
- 	info->creature = commander->type;
 
- 	info->commander = commander;
 
- 	info->creatureCount = 1;
 
- 	info->levelupInfo = std::make_optional(UnitView::CommanderLevelInfo());
 
- 	info->levelupInfo->skills = skills;
 
- 	info->levelupInfo->callback = callback;
 
- 	info->owner = dynamic_cast<const CGHeroInstance *> (commander->armyObj);
 
- 	init();
 
- }
 
- CStackWindow::~CStackWindow()
 
- {
 
- 	if(info->levelupInfo && !info->levelupInfo->skills.empty())
 
- 		info->levelupInfo->callback(vstd::find_pos(info->levelupInfo->skills, selectedSkill));
 
- }
 
- void CStackWindow::init()
 
- {
 
- 	OBJECT_CONSTRUCTION_CAPTURING(255-DISPOSE);
 
- 	if(!info->stackNode)
 
- 		info->stackNode = new CStackInstance(info->creature, 1, true);// FIXME: free data
 
- 	selectedIcon = nullptr;
 
- 	selectedSkill = -1;
 
- 	if(info->levelupInfo && !info->levelupInfo->skills.empty())
 
- 		selectedSkill = info->levelupInfo->skills.front();
 
- 	activeTab = 0;
 
- 	initBonusesList();
 
- 	initSections();
 
- }
 
- void CStackWindow::initBonusesList()
 
- {
 
- 	BonusList output, input;
 
- 	input = *(info->stackNode->getBonuses(CSelector(Bonus::Permanent), Selector::all));
 
- 	while(!input.empty())
 
- 	{
 
- 		auto b = input.front();
 
- 		output.push_back(std::make_shared<Bonus>(*b));
 
- 		output.back()->val = input.valOfBonuses(Selector::typeSubtype(b->type, b->subtype)); //merge multiple bonuses into one
 
- 		input.remove_if (Selector::typeSubtype(b->type, b->subtype)); //remove used bonuses
 
- 	}
 
- 	BonusInfo bonusInfo;
 
- 	for(auto b : output)
 
- 	{
 
- 		bonusInfo.name = info->stackNode->bonusToString(b, false);
 
- 		bonusInfo.description = info->stackNode->bonusToString(b, true);
 
- 		bonusInfo.imagePath = info->stackNode->bonusToGraphics(b);
 
- 		//if it's possible to give any description or image for this kind of bonus
 
- 		//TODO: figure out why half of bonuses don't have proper description
 
- 		if(!bonusInfo.name.empty() || !bonusInfo.imagePath.empty())
 
- 			activeBonuses.push_back(bonusInfo);
 
- 	}
 
- }
 
- void CStackWindow::initSections()
 
- {
 
- 	OBJECT_CONSTRUCTION_CUSTOM_CAPTURING(255-DISPOSE);
 
- 	bool showArt = CGI->settings()->getBoolean(EGameSettings::MODULE_STACK_ARTIFACT) && info->commander == nullptr && info->stackNode;
 
- 	bool showExp = (CGI->settings()->getBoolean(EGameSettings::MODULE_STACK_EXPERIENCE) || info->commander != nullptr) && info->stackNode;
 
- 	mainSection = std::make_shared<MainSection>(this, pos.h, showExp, showArt);
 
- 	pos.w = mainSection->pos.w;
 
- 	pos.h += mainSection->pos.h;
 
- 	if(info->stack) // in battle
 
- 	{
 
- 		activeSpellsSection = std::make_shared<ActiveSpellsSection>(this, pos.h);
 
- 		pos.h += activeSpellsSection->pos.h;
 
- 	}
 
- 	if(info->commander)
 
- 	{
 
- 		auto onCreate = [=](size_t index) -> std::shared_ptr<CIntObject>
 
- 		{
 
- 			auto obj = switchTab(index);
 
- 			if(obj)
 
- 			{
 
- 				obj->activate();
 
- 				obj->recActions |= (UPDATE | SHOWALL);
 
- 			}
 
- 			return obj;
 
- 		};
 
- 		auto deactivateObj = [=](std::shared_ptr<CIntObject> obj)
 
- 		{
 
- 			obj->deactivate();
 
- 			obj->recActions &= ~(UPDATE | SHOWALL);
 
- 		};
 
- 		commanderMainSection = std::make_shared<CommanderMainSection>(this, 0);
 
- 		auto size = std::make_optional<size_t>((info->levelupInfo) ? 4 : 3);
 
- 		commanderBonusesSection = std::make_shared<BonusesSection>(this, 0, size);
 
- 		deactivateObj(commanderBonusesSection);
 
- 		commanderTab = std::make_shared<CTabbedInt>(onCreate, Point(0, pos.h), 0);
 
- 		pos.h += commanderMainSection->pos.h;
 
- 	}
 
- 	if(!info->commander && !activeBonuses.empty())
 
- 	{
 
- 		bonusesSection = std::make_shared<BonusesSection>(this, pos.h);
 
- 		pos.h += bonusesSection->pos.h;
 
- 	}
 
- 	if(!info->popupWindow)
 
- 	{
 
- 		buttonsSection = std::make_shared<ButtonsSection>(this, pos.h);
 
- 		pos.h += buttonsSection->pos.h;
 
- 		//FIXME: add status bar to image?
 
- 	}
 
- 	updateShadow();
 
- 	pos = center(pos);
 
- }
 
- std::string CStackWindow::generateStackExpDescription()
 
- {
 
- 	const CStackInstance * stack = info->stackNode;
 
- 	const CCreature * creature = info->creature;
 
- 	int tier = stack->type->getLevel();
 
- 	int rank = stack->getExpRank();
 
- 	if (!vstd::iswithin(tier, 1, 7))
 
- 		tier = 0;
 
- 	int number;
 
- 	std::string expText = CGI->generaltexth->translate("vcmi.stackExperience.description");
 
- 	boost::replace_first(expText, "%s", creature->getNamePluralTranslated());
 
- 	boost::replace_first(expText, "%s", CGI->generaltexth->translate("vcmi.stackExperience.rank", rank));
 
- 	boost::replace_first(expText, "%i", std::to_string(rank));
 
- 	boost::replace_first(expText, "%i", std::to_string(stack->experience));
 
- 	number = static_cast<int>(CGI->creh->expRanks[tier][rank] - stack->experience);
 
- 	boost::replace_first(expText, "%i", std::to_string(number));
 
- 	number = CGI->creh->maxExpPerBattle[tier]; //percent
 
- 	boost::replace_first(expText, "%i%", std::to_string(number));
 
- 	number *= CGI->creh->expRanks[tier].back() / 100; //actual amount
 
- 	boost::replace_first(expText, "%i", std::to_string(number));
 
- 	boost::replace_first(expText, "%i", std::to_string(stack->count)); //Number of Creatures in stack
 
- 	int expmin = std::max(CGI->creh->expRanks[tier][std::max(rank-1, 0)], (ui32)1);
 
- 	number = static_cast<int>((stack->count * (stack->experience - expmin)) / expmin); //Maximum New Recruits without losing current Rank
 
- 	boost::replace_first(expText, "%i", std::to_string(number)); //TODO
 
- 	boost::replace_first(expText, "%.2f", std::to_string(1)); //TODO Experience Multiplier
 
- 	number = CGI->creh->expAfterUpgrade;
 
- 	boost::replace_first(expText, "%.2f", std::to_string(number) + "%"); //Upgrade Multiplier
 
- 	expmin = CGI->creh->expRanks[tier][9];
 
- 	int expmax = CGI->creh->expRanks[tier][10];
 
- 	number = expmax - expmin;
 
- 	boost::replace_first(expText, "%i", std::to_string(number)); //Experience after Rank 10
 
- 	number = (stack->count * (expmax - expmin)) / expmin;
 
- 	boost::replace_first(expText, "%i", std::to_string(number)); //Maximum New Recruits to remain at Rank 10 if at Maximum Experience
 
- 	return expText;
 
- }
 
- void CStackWindow::setSelection(si32 newSkill, std::shared_ptr<CCommanderSkillIcon> newIcon)
 
- {
 
- 	auto getSkillDescription = [this](int skillIndex, bool selected) -> std::string
 
- 	{
 
- 		if(selected)
 
- 			return CGI->generaltexth->znpc00[152 + (12 * skillIndex) + ((info->commander->secondarySkills[skillIndex] + 1) * 2)]; //upgrade description
 
- 		else
 
- 			return CGI->generaltexth->znpc00[152 + (12 * skillIndex) + (info->commander->secondarySkills[skillIndex] * 2)];
 
- 	};
 
- 	auto getSkillImage = [this](int skillIndex) -> std::string
 
- 	{
 
- 		bool selected = ((selectedSkill == skillIndex) && info->levelupInfo );
 
- 		return skillToFile(skillIndex, info->commander->secondarySkills[skillIndex], selected);
 
- 	};
 
- 	OBJECT_CONSTRUCTION_CUSTOM_CAPTURING(255-DISPOSE);
 
- 	int oldSelection = selectedSkill; // update selection
 
- 	selectedSkill = newSkill;
 
- 	if(selectedIcon && oldSelection < 100) // recreate image on old selection, only for skills
 
- 		selectedIcon->setObject(std::make_shared<CPicture>(getSkillImage(oldSelection)));
 
- 	if(selectedIcon)
 
- 		selectedIcon->text = getSkillDescription(oldSelection, false); //update previously selected icon's message to existing skill level
 
- 	selectedIcon = newIcon; // update new selection
 
- 	if(newSkill < 100)
 
- 	{
 
- 		newIcon->setObject(std::make_shared<CPicture>(getSkillImage(newSkill)));
 
- 		newIcon->text = getSkillDescription(newSkill, true); //update currently selected icon's message to show upgrade description
 
- 	}
 
- }
 
- std::shared_ptr<CIntObject> CStackWindow::switchTab(size_t index)
 
- {
 
- 	std::shared_ptr<CIntObject> ret;
 
- 	switch(index)
 
- 	{
 
- 	case 0:
 
- 		{
 
- 			activeTab = 0;
 
- 			ret = commanderMainSection;
 
- 		}
 
- 		break;
 
- 	case 1:
 
- 		{
 
- 			activeTab = 1;
 
- 			ret = commanderBonusesSection;
 
- 		}
 
- 		break;
 
- 	default:
 
- 		break;
 
- 	}
 
- 	return ret;
 
- }
 
- void CStackWindow::removeStackArtifact(ArtifactPosition pos)
 
- {
 
- 	auto art = info->stackNode->getArt(ArtifactPosition::CREATURE_SLOT);
 
- 	if(!art)
 
- 	{
 
- 		logGlobal->error("Attempt to remove missing artifact");
 
- 		return;
 
- 	}
 
- 	const auto slot = ArtifactUtils::getArtBackpackPosition(info->owner, art->getTypeId());
 
- 	if(slot != ArtifactPosition::PRE_FIRST)
 
- 	{
 
- 		LOCPLINT->cb->swapArtifacts(ArtifactLocation(info->stackNode, pos), ArtifactLocation(info->owner, slot));
 
- 		stackArtifactButton.reset();
 
- 		stackArtifactHelp.reset();
 
- 		stackArtifactIcon.reset();
 
- 		redraw();
 
- 	}
 
- }
 
 
  |