| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409 |
- /*
- * TradePanels.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 "TradePanels.h"
- #include "../../gui/CGuiHandler.h"
- #include "../../render/Canvas.h"
- #include "../../widgets/TextControls.h"
- #include "../../windows/InfoWindows.h"
- #include "../../CGameInfo.h"
- #include "../../CPlayerInterface.h"
- #include "../../../CCallback.h"
- #include "../../../lib/CGeneralTextHandler.h"
- #include "../../../lib/mapObjects/CGHeroInstance.h"
- CTradeableItem::CTradeableItem(const Rect & area, EType Type, int ID, bool Left, int Serial)
- : SelectableSlot(area, Point(1, 1))
- , artInstance(nullptr)
- , type(EType(-1)) // set to invalid, will be corrected in setType
- , id(ID)
- , serial(Serial)
- , left(Left)
- , downSelection(false)
- {
- OBJECT_CONSTRUCTION_CAPTURING(255 - DISPOSE);
- addUsedEvents(LCLICK);
- addUsedEvents(HOVER);
- addUsedEvents(SHOW_POPUP);
-
- setType(Type);
- this->pos.w = area.w;
- this->pos.h = area.h;
- }
- void CTradeableItem::setType(EType newType)
- {
- if(type != newType)
- {
- OBJECT_CONSTRUCTION_CUSTOM_CAPTURING(255 - DISPOSE);
- type = newType;
- if(getIndex() < 0)
- {
- image = std::make_shared<CAnimImage>(getFilename(), 0);
- image->disable();
- }
- else
- {
- image = std::make_shared<CAnimImage>(getFilename(), getIndex());
- }
- }
- }
- void CTradeableItem::setID(int newID)
- {
- if(id != newID)
- {
- id = newID;
- if(image)
- {
- int index = getIndex();
- if(index < 0)
- image->disable();
- else
- {
- image->enable();
- image->setFrame(index);
- }
- }
- }
- }
- AnimationPath CTradeableItem::getFilename()
- {
- switch(type)
- {
- case EType::RESOURCE:
- return AnimationPath::builtin("RESOURCE");
- case EType::PLAYER:
- return AnimationPath::builtin("CREST58");
- case EType::ARTIFACT_TYPE:
- case EType::ARTIFACT_PLACEHOLDER:
- case EType::ARTIFACT_INSTANCE:
- return AnimationPath::builtin("artifact");
- case EType::CREATURE:
- return AnimationPath::builtin("TWCRPORT");
- default:
- return {};
- }
- }
- int CTradeableItem::getIndex()
- {
- if(id < 0)
- return -1;
- switch(type)
- {
- case EType::RESOURCE:
- case EType::PLAYER:
- return id;
- case EType::ARTIFACT_TYPE:
- case EType::ARTIFACT_INSTANCE:
- case EType::ARTIFACT_PLACEHOLDER:
- return CGI->artifacts()->getByIndex(id)->getIconIndex();
- case EType::CREATURE:
- return CGI->creatures()->getByIndex(id)->getIconIndex();
- default:
- return -1;
- }
- }
- void CTradeableItem::showAll(Canvas & to)
- {
- Point posToBitmap;
- Point posToSubCenter;
- switch(type)
- {
- case EType::RESOURCE:
- posToBitmap = Point(19, 9);
- posToSubCenter = Point(35, 57);
- break;
- case EType::CREATURE_PLACEHOLDER:
- case EType::CREATURE:
- posToSubCenter = Point(29, 77);
- break;
- case EType::PLAYER:
- posToSubCenter = Point(31, 77);
- break;
- case EType::ARTIFACT_PLACEHOLDER:
- case EType::ARTIFACT_INSTANCE:
- posToSubCenter = Point(22, 51);
- if (downSelection)
- posToSubCenter.y += 8;
- break;
- case EType::ARTIFACT_TYPE:
- posToSubCenter = Point(35, 57);
- posToBitmap = Point(13, 0);
- break;
- }
- if(image)
- {
- image->moveTo(pos.topLeft() + posToBitmap);
- CIntObject::showAll(to);
- }
- to.drawText(pos.topLeft() + posToSubCenter, FONT_SMALL, Colors::WHITE, ETextAlignment::CENTER, subtitle);
- }
- void CTradeableItem::clickPressed(const Point & cursorPosition)
- {
- if(clickPressedCallback)
- clickPressedCallback(shared_from_this());
- }
- void CTradeableItem::showAllAt(const Point & dstPos, const std::string & customSub, Canvas & to)
- {
- Rect oldPos = pos;
- std::string oldSub = subtitle;
- downSelection = true;
- moveTo(dstPos);
- subtitle = customSub;
- showAll(to);
- downSelection = false;
- moveTo(oldPos.topLeft());
- subtitle = oldSub;
- }
- void CTradeableItem::hover(bool on)
- {
- if(!on)
- {
- GH.statusbar()->clear();
- return;
- }
- switch(type)
- {
- case EType::CREATURE:
- case EType::CREATURE_PLACEHOLDER:
- GH.statusbar()->write(boost::str(boost::format(CGI->generaltexth->allTexts[481]) % CGI->creh->objects[id]->getNamePluralTranslated()));
- break;
- case EType::ARTIFACT_PLACEHOLDER:
- if(id < 0)
- GH.statusbar()->write(CGI->generaltexth->zelp[582].first);
- else
- GH.statusbar()->write(CGI->artifacts()->getByIndex(id)->getNameTranslated());
- break;
- }
- }
- void CTradeableItem::showPopupWindow(const Point & cursorPosition)
- {
- switch(type)
- {
- case EType::CREATURE:
- case EType::CREATURE_PLACEHOLDER:
- break;
- case EType::ARTIFACT_TYPE:
- case EType::ARTIFACT_PLACEHOLDER:
- //TODO: it's would be better for market to contain actual CArtifactInstance and not just ids of certain artifact type so we can use getEffectiveDescription.
- if (id >= 0)
- CRClickPopup::createAndPush(CGI->artifacts()->getByIndex(id)->getDescriptionTranslated());
- break;
- }
- }
- std::string CTradeableItem::getName(int number) const
- {
- switch(type)
- {
- case EType::PLAYER:
- return CGI->generaltexth->capColors[id];
- case EType::RESOURCE:
- return CGI->generaltexth->restypes[id];
- case EType::CREATURE:
- if (number == 1)
- return CGI->creh->objects[id]->getNameSingularTranslated();
- else
- return CGI->creh->objects[id]->getNamePluralTranslated();
- case EType::ARTIFACT_TYPE:
- case EType::ARTIFACT_INSTANCE:
- return CGI->artifacts()->getByIndex(id)->getNameTranslated();
- }
- logGlobal->error("Invalid trade item type: %d", (int)type);
- return "";
- }
- const CArtifactInstance * CTradeableItem::getArtInstance() const
- {
- switch(type)
- {
- case EType::ARTIFACT_PLACEHOLDER:
- case EType::ARTIFACT_INSTANCE:
- return artInstance;
- default:
- return nullptr;
- }
- }
- void CTradeableItem::setArtInstance(const CArtifactInstance * art)
- {
- assert(type == EType::ARTIFACT_PLACEHOLDER || type == EType::ARTIFACT_INSTANCE);
- artInstance = art;
- if(art)
- setID(art->getTypeId());
- else
- setID(-1);
- }
- void TradePanelBase::updateSlots()
- {
- if(updateSlotsCallback)
- updateSlotsCallback();
- }
- void TradePanelBase::deselect()
- {
- for(const auto & slot : slots)
- slot->selectSlot(false);
- }
- void TradePanelBase::clearSubtitles()
- {
- for(const auto & slot : slots)
- slot->subtitle.clear();
- }
- void TradePanelBase::updateOffer(CTradeableItem & slot, int cost, int qty)
- {
- slot.subtitle = std::to_string(qty);
- if(cost != 1)
- {
- slot.subtitle.append("/");
- slot.subtitle.append(std::to_string(cost));
- }
- }
- void TradePanelBase::deleteSlots()
- {
- if(deleteSlotsCheck)
- slots.erase(std::remove_if(slots.begin(), slots.end(), deleteSlotsCheck), slots.end());
- }
- void TradePanelBase::setSelectedFrameIndex(std::optional<size_t> index)
- {
- if(index.has_value())
- {
- selectedImage->enable();
- selectedImage->setFrame(index.value());
- }
- else
- {
- selectedImage->disable();
- selectedImage->setFrame(0);
- }
- }
- ResourcesPanel::ResourcesPanel(CTradeableItem::ClickPressedFunctor clickPressedCallback, UpdateSlotsFunctor updateSubtitles)
- {
- assert(resourcesForTrade.size() == slotsPos.size());
- OBJECT_CONSTRUCTION_CUSTOM_CAPTURING(255 - DISPOSE);
- for(const auto & res : resourcesForTrade)
- {
- auto slot = slots.emplace_back(std::make_shared<CTradeableItem>(Rect(slotsPos[res.num], slotDimension),
- EType::RESOURCE, res.num, true, res.num));
- slot->clickPressedCallback = clickPressedCallback;
- slot->setSelectionWidth(selectionWidth);
- }
- updateSlotsCallback = updateSubtitles;
- selectedImage = std::make_shared<CAnimImage>(AnimationPath::builtin("RESOURCE"), 0);
- }
- ArtifactsPanel::ArtifactsPanel(CTradeableItem::ClickPressedFunctor clickPressedCallback, UpdateSlotsFunctor updateSubtitles,
- const std::vector<TradeItemBuy> & arts)
- {
- assert(slotsForTrade == slotsPos.size());
- assert(slotsForTrade == arts.size());
- OBJECT_CONSTRUCTION_CUSTOM_CAPTURING(255 - DISPOSE);
- for(auto slotIdx = 0; slotIdx < slotsForTrade; slotIdx++)
- {
- auto artType = arts[slotIdx].getNum();
- if(artType != ArtifactID::NONE)
- {
- auto slot = slots.emplace_back(std::make_shared<CTradeableItem>(Rect(slotsPos[slotIdx], slotDimension),
- EType::ARTIFACT_TYPE, artType, false, slotIdx));
- slot->clickPressedCallback = clickPressedCallback;
- slot->setSelectionWidth(selectionWidth);
- }
- }
- updateSlotsCallback = updateSubtitles;
- }
- PlayersPanel::PlayersPanel(CTradeableItem::ClickPressedFunctor clickPressedCallback)
- {
- assert(PlayerColor::PLAYER_LIMIT_I <= slotsPos.size() + 1);
- OBJECT_CONSTRUCTION_CUSTOM_CAPTURING(255 - DISPOSE);
- std::vector<PlayerColor> players;
- for(auto player = PlayerColor(0); player < PlayerColor::PLAYER_LIMIT_I; player++)
- {
- if(player != LOCPLINT->playerID && LOCPLINT->cb->getPlayerStatus(player) == EPlayerStatus::INGAME)
- players.emplace_back(player);
- }
- slots.resize(players.size());
- int slotNum = 0;
- for(auto & slot : slots)
- {
- slot = std::make_shared<CTradeableItem>(Rect(slotsPos[slotNum], slotDimension), EType::PLAYER, players[slotNum].num, false, slotNum);
- slot->clickPressedCallback = clickPressedCallback;
- slot->setSelectionWidth(selectionWidth);
- slot->subtitle = CGI->generaltexth->capColors[players[slotNum].num];
- slotNum++;
- }
- }
- CreaturesPanel::CreaturesPanel(CTradeableItem::ClickPressedFunctor clickPressedCallback, const slotsData & initialSlots)
- {
- assert(initialSlots.size() <= GameConstants::ARMY_SIZE);
- assert(slotsPos.size() <= GameConstants::ARMY_SIZE);
- OBJECT_CONSTRUCTION_CUSTOM_CAPTURING(255 - DISPOSE);
- for(const auto & [creatureId, slotId, creaturesNum] : initialSlots)
- {
- auto slot = slots.emplace_back(std::make_shared<CTradeableItem>(Rect(slotsPos[slotId.num], slotDimension),
- creaturesNum == 0 ? EType::CREATURE_PLACEHOLDER : EType::CREATURE, creatureId.num, true, slotId));
- slot->clickPressedCallback = clickPressedCallback;
- if(creaturesNum != 0)
- slot->subtitle = std::to_string(creaturesNum);
- slot->setSelectionWidth(selectionWidth);
- }
- selectedImage = std::make_shared<CAnimImage>(AnimationPath::builtin("TWCRPORT"), 0);
- }
- CreaturesPanel::CreaturesPanel(CTradeableItem::ClickPressedFunctor clickPressedCallback,
- const std::vector<std::shared_ptr<CTradeableItem>> & srcSlots, bool emptySlots)
- {
- assert(slots.size() <= GameConstants::ARMY_SIZE);
- OBJECT_CONSTRUCTION_CUSTOM_CAPTURING(255 - DISPOSE);
- for(const auto & srcSlot : srcSlots)
- {
- auto slot = slots.emplace_back(std::make_shared<CTradeableItem>(Rect(slotsPos[srcSlot->serial], srcSlot->pos.dimensions()),
- emptySlots ? EType::CREATURE_PLACEHOLDER : EType::CREATURE, srcSlot->id, true, srcSlot->serial));
- slot->clickPressedCallback = clickPressedCallback;
- slot->subtitle = emptySlots ? "" : srcSlot->subtitle;
- slot->setSelectionWidth(selectionWidth);
- }
- selectedImage = std::make_shared<CAnimImage>(AnimationPath::builtin("TWCRPORT"), 0);
- }
|