| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123 |
- /*
- * CFreelancerGuild.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 "CFreelancerGuild.h"
- #include "../../gui/CGuiHandler.h"
- #include "../../widgets/Buttons.h"
- #include "../../widgets/TextControls.h"
- #include "../../CGameInfo.h"
- #include "../../CPlayerInterface.h"
- #include "../../../CCallback.h"
- #include "../../../lib/CGeneralTextHandler.h"
- #include "../../../lib/mapObjects/CGHeroInstance.h"
- #include "../../../lib/mapObjects/CGMarket.h"
- #include "../../../lib/mapObjects/CGTownInstance.h"
- CFreelancerGuild::CFreelancerGuild(const IMarket * market, const CGHeroInstance * hero)
- : CMarketBase(market, hero, [this](){return CFreelancerGuild::getSelectionParams();})
- , CResourcesBuying(
- [this](const std::shared_ptr<CTradeableItem> & heroSlot){CFreelancerGuild::onSlotClickPressed(heroSlot, hLeft);},
- [this](){CMarketBase::updateSubtitles(EMarketMode::CREATURE_RESOURCE);})
- , CMarketSlider([this](int newVal){CMarketSlider::onOfferSliderMoved(newVal);})
- {
- OBJECT_CONSTRUCTION_CAPTURING(255 - DISPOSE);
- labels.emplace_back(std::make_shared<CLabel>(titlePos.x, titlePos.y, FONT_BIG, ETextAlignment::CENTER, Colors::YELLOW,
- (*CGI->townh)[ETownType::STRONGHOLD]->town->buildings[BuildingID::FREELANCERS_GUILD]->getNameTranslated()));
- labels.emplace_back(std::make_shared<CLabel>(155, 103, FONT_SMALL, ETextAlignment::CENTER, Colors::WHITE,
- boost::str(boost::format(CGI->generaltexth->allTexts[272]) % hero->getNameTranslated())));
- deal = std::make_shared<CButton>(dealButtonPosWithSlider, AnimationPath::builtin("TPMRKB.DEF"),
- CGI->generaltexth->zelp[595], [this]() {CFreelancerGuild::makeDeal();});
- offerSlider->moveTo(pos.topLeft() + Point(232, 489));
- // Hero creatures panel
- assert(bidTradePanel);
- bidTradePanel->moveTo(pos.topLeft() + Point(45, 123));
- bidTradePanel->selectedSlot->subtitle->moveBy(Point(0, -1));
- bidTradePanel->deleteSlotsCheck = std::bind(&CCreaturesSelling::slotDeletingCheck, this, _1);
- std::for_each(bidTradePanel->slots.cbegin(), bidTradePanel->slots.cend(), [this](auto & slot)
- {
- slot->clickPressedCallback = [this](const std::shared_ptr<CTradeableItem> & heroSlot)
- {
- CFreelancerGuild::onSlotClickPressed(heroSlot, hLeft);
- };
- });
- // Guild resources panel
- assert(offerTradePanel);
- std::for_each(offerTradePanel->slots.cbegin(), offerTradePanel->slots.cend(), [this](auto & slot)
- {
- slot->clickPressedCallback = [this](const std::shared_ptr<CTradeableItem> & heroSlot)
- {
- CFreelancerGuild::onSlotClickPressed(heroSlot, hRight);
- };
- });
- CFreelancerGuild::deselect();
- }
- void CFreelancerGuild::deselect()
- {
- CMarketBase::deselect();
- CMarketSlider::deselect();
- }
- void CFreelancerGuild::makeDeal()
- {
- if(auto toTrade = offerSlider->getValue(); toTrade != 0)
- {
- LOCPLINT->cb->trade(market, EMarketMode::CREATURE_RESOURCE, SlotID(hLeft->serial), GameResID(hRight->id), bidQty * toTrade, hero);
- deselect();
- }
- }
- CMarketBase::SelectionParams CFreelancerGuild::getSelectionParams() const
- {
- if(hLeft && hRight)
- return std::make_tuple(
- SelectionParamOneSide {std::to_string(bidQty * offerSlider->getValue()), CGI->creatures()->getByIndex(hLeft->id)->getIconIndex()},
- SelectionParamOneSide {std::to_string(offerQty * offerSlider->getValue()), hRight->id});
- else
- return std::make_tuple(std::nullopt, std::nullopt);
- }
- void CFreelancerGuild::highlightingChanged()
- {
- if(hLeft)
- {
- if(hRight)
- {
- market->getOffer(hLeft->id, hRight->id, bidQty, offerQty, EMarketMode::CREATURE_RESOURCE);
- offerSlider->setAmount((hero->getStackCount(SlotID(hLeft->serial)) - (hero->stacksCount() == 1 && hero->needsLastStack() ? 1 : 0)) / bidQty);
- offerSlider->scrollTo(0);
- offerSlider->block(false);
- maxAmount->block(false);
- deal->block(false);
- }
- offerTradePanel->update();
- }
- updateSelected();
- }
- void CFreelancerGuild::onSlotClickPressed(const std::shared_ptr<CTradeableItem> & newSlot, std::shared_ptr<CTradeableItem> & hCurSlot)
- {
- assert(newSlot);
- if(newSlot == hCurSlot)
- return;
- CMarketBase::onSlotClickPressed(newSlot, hCurSlot);
- highlightingChanged();
- redraw();
- }
|