| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290 |
- /*
- * CArtifactHolder.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 "CArtifactHolder.h"
- #include "../gui/CGuiHandler.h"
- #include "../gui/Shortcut.h"
- #include "CComponent.h"
- #include "../windows/GUIClasses.h"
- #include "../render/Canvas.h"
- #include "../render/Colors.h"
- #include "../render/IRenderHandler.h"
- #include "../CPlayerInterface.h"
- #include "../CGameInfo.h"
- #include "../../CCallback.h"
- #include "../../lib/CGeneralTextHandler.h"
- #include "../../lib/ArtifactUtils.h"
- #include "../../lib/mapObjects/CGHeroInstance.h"
- #include "../../lib/networkPacks/ArtifactLocation.h"
- #include "../../lib/CConfigHandler.h"
- void CArtPlace::setInternals(const CArtifactInstance * artInst)
- {
- ourArt = artInst;
- if(!artInst)
- {
- image->disable();
- text.clear();
- hoverText = CGI->generaltexth->allTexts[507];
- return;
- }
- imageIndex = artInst->artType->getIconIndex();
- if(artInst->getTypeId() == ArtifactID::SPELL_SCROLL)
- {
- auto spellID = artInst->getScrollSpellID();
- assert(spellID.num >= 0);
- if(settings["general"]["enableUiEnhancements"].Bool())
- {
- imageIndex = spellID.num;
- if(component.type != ComponentType::SPELL_SCROLL)
- {
- image->setScale(Point(pos.w, 34));
- image->setAnimationPath(AnimationPath::builtin("spellscr"), imageIndex);
- image->moveTo(Point(pos.x, pos.y + 4));
- }
- }
- // Add spell component info (used to provide a pic in r-click popup)
- component.type = ComponentType::SPELL_SCROLL;
- component.subType = spellID;
- }
- else
- {
- if(settings["general"]["enableUiEnhancements"].Bool() && component.type != ComponentType::ARTIFACT)
- {
- image->setScale(Point());
- image->setAnimationPath(AnimationPath::builtin("artifact"), imageIndex);
- image->moveTo(Point(pos.x, pos.y));
- }
- component.type = ComponentType::ARTIFACT;
- component.subType = artInst->getTypeId();
- }
- image->enable();
- text = artInst->getDescription();
- }
- CArtPlace::CArtPlace(Point position, const CArtifactInstance * art)
- : ourArt(art)
- , locked(false)
- {
- pos += position;
- pos.w = pos.h = 44;
- OBJECT_CONSTRUCTION_CAPTURING(255 - DISPOSE);
- imageIndex = 0;
- if(locked)
- imageIndex = ArtifactID::ART_LOCK;
- else if(ourArt)
- imageIndex = ourArt->artType->getIconIndex();
- image = std::make_shared<CAnimImage>(AnimationPath::builtin("artifact"), imageIndex);
- image->disable();
- selection = std::make_shared<CAnimImage>(AnimationPath::builtin("artifact"), ArtifactID::ART_SELECTION, 0, -1, -1);
- selection->visible = false;
- }
- const CArtifactInstance * CArtPlace::getArt()
- {
- return ourArt;
- }
- CCommanderArtPlace::CCommanderArtPlace(Point position, const CGHeroInstance * commanderOwner, ArtifactPosition artSlot, const CArtifactInstance * art)
- : CArtPlace(position, art),
- commanderOwner(commanderOwner),
- commanderSlotID(artSlot.num)
- {
- setArtifact(art);
- }
- void CCommanderArtPlace::returnArtToHeroCallback()
- {
- ArtifactPosition artifactPos = commanderSlotID;
- ArtifactPosition freeSlot = ArtifactUtils::getArtBackpackPosition(commanderOwner, ourArt->getTypeId());
- if(freeSlot == ArtifactPosition::PRE_FIRST)
- {
- LOCPLINT->showInfoDialog(CGI->generaltexth->translate("core.genrltxt.152"));
- }
- else
- {
- ArtifactLocation src(commanderOwner->id, artifactPos);
- src.creature = SlotID::COMMANDER_SLOT_PLACEHOLDER;
- ArtifactLocation dst(commanderOwner->id, freeSlot);
- if(ourArt->canBePutAt(commanderOwner, freeSlot, true))
- {
- LOCPLINT->cb->swapArtifacts(src, dst);
- setArtifact(nullptr);
- parent->redraw();
- }
- }
- }
- void CCommanderArtPlace::clickPressed(const Point & cursorPosition)
- {
- if(ourArt && text.size())
- LOCPLINT->showYesNoDialog(CGI->generaltexth->translate("vcmi.commanderWindow.artifactMessage"), [this]() { returnArtToHeroCallback(); }, []() {});
- }
- void CCommanderArtPlace::showPopupWindow(const Point & cursorPosition)
- {
- if(ourArt && text.size())
- CArtPlace::showPopupWindow(cursorPosition);
- }
- CHeroArtPlace::CHeroArtPlace(Point position, const CArtifactInstance * art)
- : CArtPlace(position, art)
- {
- }
- void CArtPlace::lockSlot(bool on)
- {
- if(locked == on)
- return;
- locked = on;
- if(on)
- image->setFrame(ArtifactID::ART_LOCK);
- else if(ourArt)
- image->setFrame(imageIndex);
- else
- image->setFrame(0);
- }
- bool CArtPlace::isLocked() const
- {
- return locked;
- }
- void CArtPlace::selectSlot(bool on)
- {
- selection->visible = on;
- }
- bool CArtPlace::isSelected() const
- {
- return selection->visible;
- }
- void CHeroArtPlace::clickPressed(const Point & cursorPosition)
- {
- if(leftClickCallback)
- leftClickCallback(*this);
- }
- void CHeroArtPlace::showPopupWindow(const Point & cursorPosition)
- {
- if(showPopupCallback)
- showPopupCallback(*this);
- }
- void CArtPlace::showAll(Canvas & to)
- {
- CIntObject::showAll(to);
- selection->showAll(to);
- }
- void CArtPlace::setArtifact(const CArtifactInstance * art)
- {
- setInternals(art);
- if(art)
- {
- image->setFrame(locked ? static_cast<int>(ArtifactID::ART_LOCK) : imageIndex);
- if(locked) // Locks should appear as empty.
- hoverText = CGI->generaltexth->allTexts[507];
- else
- hoverText = boost::str(boost::format(CGI->generaltexth->heroscrn[1]) % ourArt->artType->getNameTranslated());
- }
- else
- {
- lockSlot(false);
- }
- }
- void CHeroArtPlace::addCombinedArtInfo(std::map<const CArtifact*, int> & arts)
- {
- for(const auto & combinedArt : arts)
- {
- std::string artList;
- text += "\n\n";
- text += "{" + combinedArt.first->getNameTranslated() + "}";
- if(arts.size() == 1)
- {
- for(const auto part : combinedArt.first->getConstituents())
- artList += "\n" + part->getNameTranslated();
- }
- text += " (" + boost::str(boost::format("%d") % combinedArt.second) + " / " +
- boost::str(boost::format("%d") % combinedArt.first->getConstituents().size()) + ")" + artList;
- }
- }
- bool ArtifactUtilsClient::askToAssemble(const CGHeroInstance * hero, const ArtifactPosition & slot)
- {
- assert(hero);
- const auto art = hero->getArt(slot);
- assert(art);
- if(hero->tempOwner != LOCPLINT->playerID)
- return false;
- auto assemblyPossibilities = ArtifactUtils::assemblyPossibilities(hero, art->getTypeId());
- if(!assemblyPossibilities.empty())
- {
- auto askThread = new boost::thread([hero, art, slot, assemblyPossibilities]() -> void
- {
- boost::mutex::scoped_lock interfaceLock(GH.interfaceMutex);
- for(const auto combinedArt : assemblyPossibilities)
- {
- bool assembleConfirmed = false;
- CFunctionList<void()> onYesHandlers([&assembleConfirmed]() -> void {assembleConfirmed = true; });
- onYesHandlers += std::bind(&CCallback::assembleArtifacts, LOCPLINT->cb.get(), hero, slot, true, combinedArt->getId());
- LOCPLINT->showArtifactAssemblyDialog(art->artType, combinedArt, onYesHandlers);
- LOCPLINT->waitWhileDialog();
- if(assembleConfirmed)
- break;
- }
- });
- askThread->detach();
- return true;
- }
- return false;
- }
- bool ArtifactUtilsClient::askToDisassemble(const CGHeroInstance * hero, const ArtifactPosition & slot)
- {
- assert(hero);
- const auto art = hero->getArt(slot);
- assert(art);
- if(hero->tempOwner != LOCPLINT->playerID)
- return false;
- if(art->isCombined())
- {
- if(ArtifactUtils::isSlotBackpack(slot) && !ArtifactUtils::isBackpackFreeSlots(hero, art->artType->getConstituents().size() - 1))
- return false;
- LOCPLINT->showArtifactAssemblyDialog(
- art->artType,
- nullptr,
- std::bind(&CCallback::assembleArtifacts, LOCPLINT->cb.get(), hero, slot, false, ArtifactID()));
- return true;
- }
- return false;
- }
|