/* * The ManaPlus Client * Copyright (C) 2004-2009 The Mana World Development Team * Copyright (C) 2009-2010 The Mana Developers * Copyright (C) 2011-2020 The ManaPlus Developers * Copyright (C) 2020-2023 The ManaVerse Developers * * This file is part of The ManaPlus Client. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ #include "gui/popups/popupmenu.h" #include "actormanager.h" #include "configuration.h" #include "party.h" #include "settings.h" #include "being/flooritem.h" #include "being/localplayer.h" #include "being/playerinfo.h" #include "being/playerrelation.h" #include "being/playerrelations.h" #include "const/spells.h" #include "enums/resources/map/mapitemtype.h" #include "input/inputmanager.h" #include "gui/buttontext.h" #include "gui/gui.h" #include "gui/popupmanager.h" #include "gui/viewport.h" #include "gui/windowmenu.h" #include "gui/windows/chatwindow.h" #include "gui/windows/inventorywindow.h" #include "gui/windows/minimap.h" #include "gui/windows/ministatuswindow.h" #include "gui/windows/npcdialog.h" #include "gui/windows/outfitwindow.h" #include "gui/windows/socialwindow.h" #include "gui/windows/textcommandeditor.h" #include "gui/windows/textdialog.h" #include "gui/windows/tradewindow.h" #include "gui/widgets/button.h" #include "gui/widgets/createwidget.h" #include "gui/widgets/progressbar.h" #include "gui/widgets/scrollarea.h" #include "gui/widgets/staticbrowserbox.h" #include "gui/widgets/textfield.h" #include "gui/widgets/tabs/chat/whispertab.h" #include "net/adminhandler.h" #include "net/chathandler.h" #include "net/guildhandler.h" #include "net/npchandler.h" #include "net/net.h" #ifdef TMWA_SUPPORT #include "net/tmwa/guildmanager.h" #endif // TMWA_SUPPORT #include "resources/chatobject.h" #include "resources/groupinfo.h" #include "resources/iteminfo.h" #include "resources/itemmenuitem.h" #include "resources/db/groupdb.h" #include "resources/db/npcdb.h" #include "resources/item/item.h" #include "resources/map/map.h" #include "resources/map/mapitem.h" #include "resources/map/speciallayer.h" #include "resources/skill/skillinfo.h" #include "utils/checkutils.h" #include "utils/foreach.h" #include "utils/gettext.h" #include "debug.h" std::string tradePartnerName; PopupMenu *popupMenu = nullptr; PopupMenu::PopupMenu() : Popup("PopupMenu", "popupmenu.xml"), mBrowserBox(new StaticBrowserBox(this, Opaque_true, "popupbrowserbox.xml")), mScrollArea(nullptr), mBeingId(BeingId_zero), mFloorItemId(BeingId_zero), mItemId(0), mItemIndex(-1), mItemColor(ItemColor_one), mMapItem(nullptr), mTab(nullptr), mSpell(nullptr), mCallerWindow(nullptr), mRenameListener(), mPlayerListener(), mDialog(nullptr), mButton(nullptr), mGroup(nullptr), mName(), mExtName(), mTextField(nullptr), mType(ActorType::Unknown), mSubType(BeingTypeId_zero), mX(0), mY(0), mAllowCleanMenu(true) { mBrowserBox->setOpaque(Opaque_false); mBrowserBox->setLinkHandler(this); mRenameListener.setMapItem(nullptr); mRenameListener.setDialog(nullptr); mPlayerListener.setNick(""); mPlayerListener.setDialog(nullptr); mPlayerListener.setType(ActorType::Unknown); mScrollArea = new ScrollArea(this, mBrowserBox, Opaque_false, std::string()); mScrollArea->setVerticalScrollPolicy(ScrollArea::SHOW_AUTO); addMouseListener(this); } void PopupMenu::postInit() { Popup::postInit(); add(mScrollArea); } void PopupMenu::initPopup() { if (localPlayer == nullptr) return; const int groupId = localPlayer->getGroupId(); mGroup = GroupDb::getGroup(groupId); } bool PopupMenu::isAllowCommand(const ServerCommandTypeT command) { if (mGroup == nullptr) return false; #ifdef TMWA_SUPPORT // allow any commands for legacy if group > 0 if (Net::getNetworkType() == ServerType::TMWATHENA && localPlayer != nullptr && localPlayer->isGM()) { return true; } #endif if (mGroup->mPermissions[CAST_SIZE(ServerPermissionType::all_commands)] == Enable_true) { return true; } const ServerCommandEnable::Type enabled = mGroup->mCommands[CAST_SIZE(command)]; return (enabled & ServerCommandEnable::Self) != 0; } bool PopupMenu::isAllowOtherCommand(const ServerCommandTypeT command) { if (mGroup == nullptr || localPlayer == nullptr) return false; #ifdef TMWA_SUPPORT // allow any commands for legacy if group > 0 if (Net::getNetworkType() == ServerType::TMWATHENA && localPlayer->isGM()) { return true; } #endif const ServerCommandEnable::Type enabled = mGroup->mCommands[CAST_SIZE(command)]; if (mName == localPlayer->getName()) return (enabled & ServerCommandEnable::Self) != 0; return (enabled & ServerCommandEnable::Other) != 0; } void PopupMenu::showPopup(const int x, const int y, const Being *const being) { if (being == nullptr || localPlayer == nullptr || actorManager == nullptr) { return; } initPopup(); mBeingId = being->getId(); mName = being->getName(); mExtName = being->getExtName(); mType = being->getType(); mSubType = being->getSubType(); mBrowserBox->clearRows(); mX = x; mY = y; const std::string &name = mName; if (being->getType() != ActorType::SkillUnit) { mBrowserBox->addRow(name + being->getGenderSignWithSpace(), false); } switch (being->getType()) { case ActorType::Player: { if (being != localPlayer) { // TRANSLATORS: popup menu item // TRANSLATORS: trade with player mBrowserBox->addRow("/trade 'NAME'", _("Trade")); // TRANSLATORS: popup menu item // TRANSLATORS: trade attack player mBrowserBox->addRow("/attack 'NAME'", _("Attack")); // TRANSLATORS: popup menu item // TRANSLATORS: send whisper to player mBrowserBox->addRow("/whispertext 'NAME'", _("Whisper")); addMailCommands(); } addGmCommands(); if (being != localPlayer) mBrowserBox->addSeparator("##3---"); #ifdef TMWA_SUPPORT if (Net::getNetworkType() == ServerType::TMWATHENA) { // TRANSLATORS: popup menu item // TRANSLATORS: heal player mBrowserBox->addRow("/heal :'BEINGID'", _("Heal")); mBrowserBox->addSeparator("##3---"); } #endif // TMWA_SUPPORT if (being != localPlayer) { addPlayerRelation(name); mBrowserBox->addSeparator("##3---"); addFollow(); } addPartyName(being->getPartyName()); const Guild *const guild1 = being->getGuild(); const Guild *const guild2 = localPlayer->getGuild(); if (guild2 != nullptr) { if (guild1 != nullptr) { if (guild1->getId() == guild2->getId()) { if (being != localPlayer) { mBrowserBox->addRow("/kickguild 'NAME'", // TRANSLATORS: popup menu item // TRANSLATORS: kick player from guild _("Kick from guild")); } else { mBrowserBox->addRow("/kickguild 'NAME'", // TRANSLATORS: popup menu item // TRANSLATORS: leave guild _("Leave guild")); } if (guild2->getServerGuild()) { mBrowserBox->addRow(strprintf( "@@guild-pos|%s >@@", // TRANSLATORS: popup menu item // TRANSLATORS: change player position in guild _("Change pos in guild")), false); } } } else if (guild2->getMember(mName) != nullptr) { mBrowserBox->addRow("/kickguild 'NAME'", // TRANSLATORS: popup menu item // TRANSLATORS: kick player from guild _("Kick from guild")); if (guild2->getServerGuild()) { mBrowserBox->addRow(strprintf( "@@guild-pos|%s >@@", // TRANSLATORS: popup menu item // TRANSLATORS: change player position in guild _("Change pos in guild")), false); } } else { #ifdef TMWA_SUPPORT if (guild2->getServerGuild() || (guildManager != nullptr && guildManager->havePower())) #endif // TMWA_SUPPORT { mBrowserBox->addRow("/guild 'NAME'", // TRANSLATORS: popup menu item // TRANSLATORS: invite player to guild _("Invite to guild")); } } } if (being != localPlayer) { // TRANSLATORS: popup menu item // TRANSLATORS: set player invisible for self by id mBrowserBox->addRow("/nuke 'NAME'", _("Nuke")); // TRANSLATORS: popup menu item // TRANSLATORS: move to player location mBrowserBox->addRow("/navigateto 'NAME'", _("Move")); addPlayerMisc(); addBuySell(being); } addChat(being); break; } case ActorType::Npc: if (!addBeingMenu()) { // TRANSLATORS: popup menu item // TRANSLATORS: talk with npc mBrowserBox->addRow("/talk :'BEINGID'", _("Talk")); #ifdef TMWA_SUPPORT if (Net::getNetworkType() != ServerType::TMWATHENA) #endif { mBrowserBox->addRow("/whispertext NPC:'NAME'", // TRANSLATORS: popup menu item // TRANSLATORS: whisper to npc _("Whisper")); } // TRANSLATORS: popup menu item // TRANSLATORS: buy from npc mBrowserBox->addRow("/buy 'NAME'", _("Buy")); // TRANSLATORS: popup menu item // TRANSLATORS: sell to npc mBrowserBox->addRow("/sell 'NAME'", _("Sell")); } addGmCommands(); mBrowserBox->addSeparator("##3---"); // TRANSLATORS: popup menu item // TRANSLATORS: move to npc location mBrowserBox->addRow("/navigateto 'NAME'", _("Move")); // TRANSLATORS: popup menu item // TRANSLATORS: add comment to npc mBrowserBox->addRow("addcomment", _("Add comment")); addChat(being); break; case ActorType::Monster: { // Monsters can be attacked // TRANSLATORS: popup menu item // TRANSLATORS: attack monster mBrowserBox->addRow("/attack :'BEINGID'", _("Attack")); addCatchPetCommands(); addGmCommands(); mBrowserBox->addSeparator("##3---"); if (config.getBoolValue("enableAttackFilter")) { mBrowserBox->addSeparator("##3---"); if (actorManager->isInAttackList(name) || actorManager->isInIgnoreAttackList(name) || actorManager->isInPriorityAttackList(name)) { mBrowserBox->addRow("/removeattack 'NAME'", // TRANSLATORS: remove monster from attack list // TRANSLATORS: popup menu item _("Remove from attack list")); } else { mBrowserBox->addRow("/addpriorityattack 'NAME'", // TRANSLATORS: popup menu item // TRANSLATORS: add monster to priotiry attack list _("Add to priority attack list")); mBrowserBox->addRow("/addattack 'NAME'", // TRANSLATORS: popup menu item // TRANSLATORS: add monster to attack list _("Add to attack list")); mBrowserBox->addRow("/addignoreattack 'NAME'", // TRANSLATORS: popup menu item // TRANSLATORS: add monster to ignore list _("Add to ignore list")); if (isAllowCommand(ServerCommandType::mobinfo)) { mBrowserBox->addRow("/monsterinfo 'BEINGSUBTYPEID'", // TRANSLATORS: popup menu item // TRANSLATORS: show monster info _("Monster info")); } } } break; } case ActorType::Mercenary: // TRANSLATORS: popup menu item // TRANSLATORS: Mercenary move to master mBrowserBox->addRow("/mercenarytomaster", _("Move to master")); addGmCommands(); mBrowserBox->addSeparator("##3---"); // TRANSLATORS: popup menu item // TRANSLATORS: fire mercenary mBrowserBox->addRow("/firemercenary", _("Fire")); mBrowserBox->addSeparator("##3---"); break; case ActorType::Homunculus: { const HomunculusInfo *const info = PlayerInfo::getHomunculus(); if (info != nullptr) { mBrowserBox->addRow("/homunculustomaster", // TRANSLATORS: popup menu item // TRANSLATORS: homunculus move to master _("Move to master")); // TRANSLATORS: popup menu item // TRANSLATORS: feed homunculus mBrowserBox->addRow("/homunculusfeed", _("Feed")); mBrowserBox->addSeparator("##3---"); // TRANSLATORS: popup menu item // TRANSLATORS: pet rename item mBrowserBox->addRow("/sethomunname", _("Rename")); mBrowserBox->addSeparator("##3---"); // TRANSLATORS: popup menu item // TRANSLATORS: delete homunculus mBrowserBox->addRow("/homunculusfire", _("Kill")); mBrowserBox->addSeparator("##3---"); } addGmCommands(); break; } case ActorType::Pet: if (being->getOwner() == localPlayer) { // TRANSLATORS: popup menu item // TRANSLATORS: feed pet mBrowserBox->addRow("/petfeed", _("Feed")); // TRANSLATORS: popup menu item // TRANSLATORS: pet drop loot mBrowserBox->addRow("/petdroploot", _("Drop loot")); // TRANSLATORS: popup menu item // TRANSLATORS: pet unequip item mBrowserBox->addRow("/petunequip", _("Unequip")); addGmCommands(); mBrowserBox->addSeparator("##3---"); // TRANSLATORS: popup menu item // TRANSLATORS: pet rename item mBrowserBox->addRow("/setpetname", _("Rename")); mBrowserBox->addSeparator("##3---"); const BeingInfo *const info = being->getInfo(); std::string msg; if (info != nullptr) msg = info->getString(0); if (!msg.empty()) { mBrowserBox->addRow("/petreturnegg", msg.c_str()); } else { mBrowserBox->addRow("/petreturnegg", // TRANSLATORS: popup menu item // TRANSLATORS: pet return to egg _("Return to egg")); } mBrowserBox->addSeparator("##3---"); } else { addCatchPetCommands(); } break; case ActorType::SkillUnit: { const BeingId id = being->getCreatorId(); std::string creatorName; Being *const creator = actorManager->findBeing(id); if (creator != nullptr) creatorName = creator->getName(); else creatorName = actorManager->getSeenPlayerById(id); if (creatorName.empty()) creatorName = strprintf("?%d", CAST_S32(id)); mBrowserBox->addRow(strprintf("%s, %d (%s)", name.c_str(), CAST_S32(being->getSubType()), creatorName.c_str()), false); break; } case ActorType::Avatar: case ActorType::Unknown: case ActorType::FloorItem: case ActorType::Portal: case ActorType::Elemental: default: break; } // TRANSLATORS: popup menu item // TRANSLATORS: add being name to chat mBrowserBox->addRow("/addtext 'NAME'", _("Add name to chat")); mBrowserBox->addSeparator("##3---"); // TRANSLATORS: popup menu item // TRANSLATORS: close menu mBrowserBox->addRow("cancel", _("Cancel")); showPopup(x, y); } bool PopupMenu::addBeingMenu() { Being *being = actorManager->findBeing(mBeingId); if (being == nullptr) return false; BeingInfo *const info = NPCDB::get(fromInt( being->getSubType(), BeingTypeId)); if (info == nullptr) return false; const STD_VECTOR &menu = info->getMenu(); FOR_EACH (STD_VECTOR::const_iterator, it, menu) { const BeingMenuItem &item = *it; mBrowserBox->addRow("/" + item.command, item.name.c_str()); } return true; } void PopupMenu::setMousePos() { if (viewport != nullptr) { mX = viewport->mMouseX; mY = viewport->mMouseY; } else { Gui::getMouseState(mX, mY); } } void PopupMenu::setMousePos2() { if (mX == 0 && mY == 0) { if (viewport != nullptr) { mX = viewport->mMouseX; mY = viewport->mMouseY; } else { Gui::getMouseState(mX, mY); } } } void PopupMenu::showPopup(const int x, const int y, const STD_VECTOR &beings) { initPopup(); mX = x; mY = y; mBrowserBox->clearRows(); // TRANSLATORS: popup menu header mBrowserBox->addRow(_("Players"), false); FOR_EACH (STD_VECTOR::const_iterator, it, beings) { const Being *const being = dynamic_cast(*it); const ActorSprite *const actor = *it; if ((being != nullptr) && !being->getName().empty()) { mBrowserBox->addRow(strprintf("@@player_%u|%s >@@", CAST_U32(being->getId()), (being->getName() + being->getGenderSignWithSpace()).c_str()), false); } else if (actor->getType() == ActorType::FloorItem) { const FloorItem *const floorItem = static_cast(actor); mBrowserBox->addRow(strprintf("@@flooritem_%u|%s >@@", CAST_U32(actor->getId()), floorItem->getName().c_str()), false); } } mBrowserBox->addSeparator("##3---"); // TRANSLATORS: popup menu item // TRANSLATORS: close menu mBrowserBox->addRow("cancel", _("Cancel")); showPopup(x, y); } void PopupMenu::showPlayerPopup(const std::string &nick) { if (nick.empty() || (localPlayer == nullptr)) return; initPopup(); setMousePos(); mName = nick; mExtName = nick; mBeingId = BeingId_zero; mType = ActorType::Player; mSubType = BeingTypeId_zero; mBrowserBox->clearRows(); const std::string &name = mName; mBrowserBox->addRow(name, false); // TRANSLATORS: popup menu item // TRANSLATORS: send whisper to player mBrowserBox->addRow("/whispertext 'NAME'", _("Whisper")); addMailCommands(); addGmCommands(); mBrowserBox->addSeparator("##3---"); addPlayerRelation(name); mBrowserBox->addSeparator("##3---"); addFollow(); // TRANSLATORS: popup menu item // TRANSLATORS: add comment to player mBrowserBox->addRow("addcomment", _("Add comment")); if (localPlayer->isInParty()) { const Party *const party = localPlayer->getParty(); if (party != nullptr) { const PartyMember *const member = party->getMember(mName); if (member != nullptr) { // TRANSLATORS: popup menu item // TRANSLATORS: kick player from party mBrowserBox->addRow("/kickparty 'NAME'", _("Kick from party")); mBrowserBox->addSeparator("##3---"); const PartyMember *const o = party->getMember( localPlayer->getName()); showAdoptCommands(); if ((o != nullptr) && member->getMap() == o->getMap()) { // TRANSLATORS: popup menu item // TRANSLATORS: move to player position mBrowserBox->addRow("/navigate 'X' 'Y'", _("Move")); } } } } const Guild *const guild2 = localPlayer->getGuild(); if (guild2 != nullptr) { if (guild2->getMember(mName) != nullptr) { #ifdef TMWA_SUPPORT if (guild2->getServerGuild() || (guildManager != nullptr && guildManager->havePower())) #endif // TMWA_SUPPORT { mBrowserBox->addRow("/kickguild 'NAME'", // TRANSLATORS: popup menu item // TRANSLATORS: kick player from guild _("Kick from guild")); } if (guild2->getServerGuild()) { mBrowserBox->addRow(strprintf( // TRANSLATORS: popup menu item // TRANSLATORS: change player position in guild "@@guild-pos|%s >@@", _("Change pos in guild")), false); } } else { #ifdef TMWA_SUPPORT if (guild2->getServerGuild() || (guildManager != nullptr && guildManager->havePower())) #endif // TMWA_SUPPORT { // TRANSLATORS: popup menu item // TRANSLATORS: invite player to guild mBrowserBox->addRow("/guild 'NAME'", _("Invite to guild")); } } } addBuySellDefault(); // TRANSLATORS: popup menu item // TRANSLATORS: add player name to chat mBrowserBox->addRow("/addtext 'NAME'", _("Add name to chat")); mBrowserBox->addSeparator("##3---"); // TRANSLATORS: popup menu item // TRANSLATORS: close menu mBrowserBox->addRow("cancel", _("Cancel")); showPopup(mX, mY); } void PopupMenu::showPopup(const int x, const int y, const FloorItem *const floorItem) { if (floorItem == nullptr) return; initPopup(); mX = x; mY = y; mFloorItemId = floorItem->getId(); mItemId = floorItem->getItemId(); mType = ActorType::FloorItem; mSubType = BeingTypeId_zero; for (int f = 0; f < maxCards; f ++) mItemCards[f] = floorItem->getCard(f); mBrowserBox->clearRows(); const std::string name = floorItem->getName(); mName = name; mExtName = name; mBrowserBox->addRow(name, false); if (config.getBoolValue("enablePickupFilter")) { if (actorManager->isInPickupList(name) || (actorManager->isInPickupList("") && !actorManager->isInIgnorePickupList(name))) { // TRANSLATORS: popup menu item // TRANSLATORS: pickup item from ground mBrowserBox->addRow("/pickup 'FLOORID'", _("Pick up")); mBrowserBox->addSeparator("##3---"); } addPickupFilter(name); } else { // TRANSLATORS: popup menu item // TRANSLATORS: pickup item from ground mBrowserBox->addRow("/pickup 'FLOORID'", _("Pick up")); } addProtection(); // TRANSLATORS: popup menu item // TRANSLATORS: add item name to chat mBrowserBox->addRow("/addchat 'FLOORID''CARDS'", _("Add to chat")); mBrowserBox->addSeparator("##3---"); addGmCommands(); // TRANSLATORS: popup menu item // TRANSLATORS: close menu mBrowserBox->addRow("cancel", _("Cancel")); showPopup(mX, mY); } void PopupMenu::showPopup(const int x, const int y, MapItem *const mapItem) { if (mapItem == nullptr) return; initPopup(); mMapItem = mapItem; mX = x; mY = y; mBrowserBox->clearRows(); // TRANSLATORS: popup menu header mBrowserBox->addRow(_("Map Item"), false); // TRANSLATORS: popup menu item // TRANSLATORS: rename map item mBrowserBox->addRow("rename map", _("Rename")); // TRANSLATORS: popup menu item // TRANSLATORS: remove map item mBrowserBox->addRow("remove map", _("Remove")); if (isAllowCommand(ServerCommandType::slide)) { mBrowserBox->addSeparator("##3---"); // TRANSLATORS: popup menu item // TRANSLATORS: warp to map item mBrowserBox->addRow("/slide 'MAPX' 'MAPY'", _("Warp")); } mBrowserBox->addSeparator("##3---"); // TRANSLATORS: popup menu item // TRANSLATORS: close menu mBrowserBox->addRow("cancel", _("Cancel")); showPopup(x, y); } void PopupMenu::showMapPopup(const int x, const int y, const int x2, const int y2, const bool isMinimap) { initPopup(); mX = x2; mY = y2; if (isMinimap) mCallerWindow = minimap; mBrowserBox->clearRows(); // TRANSLATORS: popup menu header mBrowserBox->addRow(_("Map Item"), false); if (isAllowCommand(ServerCommandType::slide)) { // TRANSLATORS: popup menu item // TRANSLATORS: warp to map item mBrowserBox->addRow("/slide 'MAPX' 'MAPY'", _("Warp")); } // TRANSLATORS: popup menu item // TRANSLATORS: move to map item mBrowserBox->addRow("/navigate 'X' 'Y'", _("Move")); // TRANSLATORS: popup menu item // TRANSLATORS: move camera to map item mBrowserBox->addRow("/movecamera 'X' 'Y'", _("Move camera")); if (settings.cameraMode != 0) { // TRANSLATORS: popup menu item // TRANSLATORS: restore camera to default view mBrowserBox->addRow("/restorecamera", _("Restore camera")); } mBrowserBox->addSeparator("##3---"); if (isMinimap) { // TRANSLATORS: popup menu item mBrowserBox->addRow("window close", _("Close")); } mBrowserBox->addSeparator("##3---"); // TRANSLATORS: popup menu item // TRANSLATORS: close menu mBrowserBox->addRow("cancel", _("Cancel")); showPopup(x, y); } void PopupMenu::showOutfitsWindowPopup(const int x, const int y) { initPopup(); mX = x; mY = y; mCallerWindow = outfitWindow; mBrowserBox->clearRows(); // TRANSLATORS: popup menu header mBrowserBox->addRow(_("Outfits"), false); // TRANSLATORS: popup menu item // TRANSLATORS: copy selected outfit to chat input mBrowserBox->addRow("/outfittochat", _("Add to chat")); mBrowserBox->addSeparator("##3---"); // TRANSLATORS: popup menu item // TRANSLATORS: copy equipment from player to outfit mBrowserBox->addRow("/itemstooutfit", _("Copy from player")); mBrowserBox->addSeparator("##3---"); // TRANSLATORS: popup menu item // TRANSLATORS: clear selected outfit mBrowserBox->addRow("/clearoutfit", _("Clear outfit")); mBrowserBox->addSeparator("##3---"); addWindowMenu(outfitWindow); mBrowserBox->addSeparator("##3---"); // TRANSLATORS: popup menu item // TRANSLATORS: close menu mBrowserBox->addRow("cancel", _("Cancel")); showPopup(x, y); } void PopupMenu::showSpellPopup(const int x, const int y, TextCommand *const cmd) { if (cmd == nullptr) return; initPopup(); mBrowserBox->clearRows(); mSpell = cmd; mX = x; mY = y; // TRANSLATORS: popup menu header mBrowserBox->addRow(_("Spells"), false); // TRANSLATORS: popup menu item // TRANSLATORS: edit selected spell mBrowserBox->addRow("edit spell", _("Edit spell")); mBrowserBox->addSeparator("##3---"); // TRANSLATORS: popup menu item // TRANSLATORS: close menu mBrowserBox->addRow("cancel", _("Cancel")); showPopup(x, y); } void PopupMenu::showChatPopup(const int x, const int y, ChatTab *const tab) { if (tab == nullptr || actorManager == nullptr || localPlayer == nullptr) { return; } initPopup(); mTab = tab; mX = x; mY = y; mCallerWindow = chatWindow; mBrowserBox->clearRows(); const ChatTabTypeT &type = tab->getType(); if (type == ChatTabType::WHISPER || type == ChatTabType::CHANNEL) { // TRANSLATORS: popup menu item // TRANSLATORS: close chat tab mBrowserBox->addRow("/close", _("Close")); } // TRANSLATORS: popup menu item // TRANSLATORS: remove all text from chat tab mBrowserBox->addRow("/chatclear", _("Clear")); mBrowserBox->addSeparator("##3---"); if (tab->getAllowHighlight()) { // TRANSLATORS: popup menu item // TRANSLATORS: disable chat tab highlight mBrowserBox->addRow("/disablehighlight", _("Disable highlight")); } else { // TRANSLATORS: popup menu item // TRANSLATORS: enable chat tab highlight mBrowserBox->addRow("/enablehighlight", _("Enable highlight")); } if (tab->getRemoveNames()) { // TRANSLATORS: popup menu item // TRANSLATORS: do not remove player names from chat tab mBrowserBox->addRow("/dontremovename", _("Don't remove name")); } else { // TRANSLATORS: popup menu item // TRANSLATORS: remove player names from chat tab mBrowserBox->addRow("/removename", _("Remove name")); } if (tab->getNoAway()) { // TRANSLATORS: popup menu item // TRANSLATORS: enable away messages in chat tab mBrowserBox->addRow("/enableaway", _("Enable away")); } else { // TRANSLATORS: popup menu item // TRANSLATORS: disable away messages in chat tab mBrowserBox->addRow("/disableaway", _("Disable away")); } mBrowserBox->addSeparator("##3---"); if (type == ChatTabType::PARTY) { // TRANSLATORS: popup menu item // TRANSLATORS: enable away messages in chat tab mBrowserBox->addRow("/leaveparty", _("Leave")); mBrowserBox->addSeparator("##3---"); } // TRANSLATORS: popup menu item // TRANSLATORS: copy selected text to clipboard mBrowserBox->addRow("/chatclipboard 'X' 'Y'", _("Copy to clipboard")); mBrowserBox->addSeparator("##3---"); if (type == ChatTabType::WHISPER) { const WhisperTab *const wTab = static_cast(tab); const std::string &name = wTab->getNick(); const Being* const being = actorManager->findBeingByName( name, ActorType::Player); addGmCommands(); if (being != nullptr) { mBeingId = being->getId(); mName = being->getName(); mExtName = being->getExtName(); mType = being->getType(); mSubType = being->getSubType(); // TRANSLATORS: popup menu item // TRANSLATORS: trade with player mBrowserBox->addRow("/trade 'NAME'", _("Trade")); // TRANSLATORS: popup menu item // TRANSLATORS: attack player mBrowserBox->addRow("/attack 'NAME'", _("Attack")); addMailCommands(); mBrowserBox->addSeparator("##3---"); // TRANSLATORS: popup menu item // TRANSLATORS: heal player mBrowserBox->addRow("/heal :'BEINGID'", _("Heal")); mBrowserBox->addSeparator("##3---"); addPlayerRelation(name); mBrowserBox->addSeparator("##3---"); addFollow(); // TRANSLATORS: popup menu item // TRANSLATORS: move to player position mBrowserBox->addRow("/navigateto 'NAME'", _("Move")); addPlayerMisc(); addBuySell(being); mBrowserBox->addSeparator("##3---"); addParty(wTab->getNick()); const Guild *const guild1 = being->getGuild(); const Guild *const guild2 = localPlayer->getGuild(); if (guild2 != nullptr) { if (guild1 != nullptr) { if (guild1->getId() == guild2->getId()) { #ifdef TMWA_SUPPORT if (guild2->getServerGuild() || (guildManager != nullptr && guildManager->havePower())) #endif // TMWA_SUPPORT { mBrowserBox->addRow("/kickguild 'NAME'", // TRANSLATORS: popup menu item // TRANSLATORS: kick player from guild _("Kick from guild")); } if (guild2->getServerGuild()) { mBrowserBox->addRow(strprintf("@@guild-pos|%s >@@", // TRANSLATORS: popup menu item // TRANSLATORS: change player position in guild _("Change pos in guild")), false); } } } else { #ifdef TMWA_SUPPORT if (guild2->getServerGuild() || (guildManager != nullptr && guildManager->havePower())) #endif // TMWA_SUPPORT { mBrowserBox->addRow("/guild 'NAME'", // TRANSLATORS: popup menu item // TRANSLATORS: invite player to guild _("Invite to guild")); } } } } else { mBeingId = BeingId_zero; mName = name; mExtName = name; mType = ActorType::Player; mSubType = BeingTypeId_zero; addPlayerRelation(name); mBrowserBox->addSeparator("##3---"); addMailCommands(); addFollow(); if (localPlayer->isInParty()) { const Party *const party = localPlayer->getParty(); if (party != nullptr) { const PartyMember *const m = party->getMember(mName); if (m != nullptr) { // TRANSLATORS: popup menu item // TRANSLATORS: move to player location mBrowserBox->addRow("/navigateto 'NAME'", _("Move")); } } } addPlayerMisc(); addBuySellDefault(); if (Net::getNetworkType() != ServerType::TMWATHENA) addParty(wTab->getNick()); mBrowserBox->addSeparator("##3---"); } } addWindowMenu(chatWindow); // TRANSLATORS: popup menu item // TRANSLATORS: close menu mBrowserBox->addRow("cancel", _("Cancel")); showPopup(x, y); } void PopupMenu::showChangePos(const int x, const int y) { initPopup(); mBrowserBox->clearRows(); // TRANSLATORS: popup menu header mBrowserBox->addRow(_("Change guild position"), false); if (localPlayer == nullptr) return; mX = x; mY = y; const Guild *const guild = localPlayer->getGuild(); if (guild != nullptr) { const PositionsMap &map = guild->getPositions(); FOR_EACH (PositionsMap::const_iterator, itr, map) { mBrowserBox->addRow(strprintf("@@guild-pos-%u|%s@@", itr->first, itr->second.c_str()), false); } // TRANSLATORS: popup menu item // TRANSLATORS: close menu mBrowserBox->addRow("cancel", _("Cancel")); showPopup(x, y); } else { mBeingId = BeingId_zero; mFloorItemId = BeingId_zero; mItemIndex = -1; mItemId = 0; for (int f = 0; f < maxCards; f ++) mItemCards[f] = 0; mMapItem = nullptr; mName.clear(); mExtName.clear(); mType = ActorType::Unknown; mSubType = BeingTypeId_zero; mX = 0; mY = 0; setVisible(Visible_false); } } void PopupMenu::showWindowPopup(Window *const window) { if (window == nullptr) return; initPopup(); setMousePos(); mCallerWindow = window; mBrowserBox->clearRows(); // TRANSLATORS: popup menu header mBrowserBox->addRow(_("window"), false); addWindowMenu(window); // TRANSLATORS: popup menu item // TRANSLATORS: close menu mBrowserBox->addRow("cancel", _("Cancel")); showPopup(mX, mY); } void PopupMenu::addWindowMenu(const Window *const window) { if (window == nullptr) return; initPopup(); if (window->getAlowClose()) { // TRANSLATORS: popup menu item // TRANSLATORS: close window mBrowserBox->addRow("window close", _("Close")); } if (window->isStickyButtonLock()) { if (window->isSticky()) { // TRANSLATORS: popup menu item // TRANSLATORS: unlock window mBrowserBox->addRow("window unlock", _("Unlock")); } else { // TRANSLATORS: popup menu item // TRANSLATORS: lock window mBrowserBox->addRow("window lock", _("Lock")); } } } void PopupMenu::showEmoteType() { initPopup(); setMousePos(); mBrowserBox->clearRows(); // TRANSLATORS: popup menu header mBrowserBox->addRow(_("Show emotes for:"), false); // TRANSLATORS: popup menu item // TRANSLATORS: show emotes for player mBrowserBox->addRow("/setemotetype player", _("Player")); // TRANSLATORS: popup menu item // TRANSLATORS: show emotes for pet mBrowserBox->addRow("/setemotetype pet", _("Pet")); if (Net::getNetworkType() == ServerType::EVOL2) { // TRANSLATORS: popup menu item // TRANSLATORS: show emotes for homuncules mBrowserBox->addRow("/setemotetype homun", _("Homunculus")); // TRANSLATORS: popup menu item // TRANSLATORS: show emotes for mercenary mBrowserBox->addRow("/setemotetype merc", _("Mercenary")); } mBrowserBox->addSeparator("##3---"); // TRANSLATORS: popup menu item // TRANSLATORS: close menu mBrowserBox->addRow("cancel", _("Cancel")); showPopup(mX, mY); } void PopupMenu::handleLink(const std::string &link, MouseEvent *event A_UNUSED) { Being *being = nullptr; if (actorManager != nullptr) being = actorManager->findBeing(mBeingId); mAllowCleanMenu = true; if (link == "remove map" && (mMapItem != nullptr)) { if (viewport != nullptr) { const Map *const map = viewport->getMap(); if (map != nullptr) { SpecialLayer *const specialLayer = map->getSpecialLayer(); if (specialLayer != nullptr) { const bool isHome = (mMapItem->getType() == CAST_S32(MapItemType::HOME)); const int x = static_cast(mMapItem->getX()); const int y = static_cast(mMapItem->getY()); specialLayer->setTile(x, y, CAST_S32(MapItemType::EMPTY)); specialLayer->updateCache(); if (socialWindow != nullptr) socialWindow->removePortal(x, y); if (isHome && (localPlayer != nullptr)) { localPlayer->removeHome(); localPlayer->saveHomes(); } } } } } else if (link == "rename map" && (mMapItem != nullptr)) { mRenameListener.setMapItem(mMapItem); CREATEWIDGETV(mDialog, TextDialog, // TRANSLATORS: dialog caption // TRANSLATORS: number of chars in string should be near original _("Rename map sign "), // TRANSLATORS: label // TRANSLATORS: number of chars in string should be near original _("Name: "), nullptr, false); mRenameListener.setDialog(mDialog); mDialog->setText(mMapItem->getComment()); mDialog->setActionEventId("ok"); mDialog->addActionListener(&mRenameListener); } else if (link == "edit spell" && (mSpell != nullptr)) { CREATEWIDGET(TextCommandEditor, mSpell); } else if (link == "addcomment" && !mName.empty()) { TextDialog *const dialog = CREATEWIDGETR(TextDialog, // TRANSLATORS: dialog caption // TRANSLATORS: number of chars in string should be near original _("Player comment "), // TRANSLATORS: label // TRANSLATORS: number of chars in string should be near original _("Comment: "), nullptr, false); mPlayerListener.setDialog(dialog); mPlayerListener.setNick(mName); mPlayerListener.setType(mType); if (being != nullptr) { being->updateComment(); dialog->setText(being->getComment()); } else { dialog->setText(Being::loadComment(mName, static_cast(mType))); } dialog->setActionEventId("ok"); dialog->addActionListener(&mPlayerListener); } else if (link == "guild-pos" && !mName.empty()) { showChangePos(getX(), getY()); return; } else if (link == "clipboard copy") { if (mTextField != nullptr) mTextField->handleCopy(); } else if (link == "clipboard paste") { if (mTextField != nullptr) mTextField->handlePaste(); } else if (link == "gm" && !mName.empty()) { showGMPopup(mName); return; } else if (link == "mute" && !mName.empty()) { showMuteCommands(); return; } else if (link == "show" && !mName.empty()) { showPlayerMenu(); return; } else if (link == "window close" && (mCallerWindow != nullptr)) { if (Widget::widgetExists(mCallerWindow)) mCallerWindow->close(); } else if (link == "window unlock" && (mCallerWindow != nullptr)) { if (Widget::widgetExists(mCallerWindow)) mCallerWindow->setSticky(false); } else if (link == "window lock" && (mCallerWindow != nullptr)) { if (Widget::widgetExists(mCallerWindow)) mCallerWindow->setSticky(true); } else if (link == "join chat" && (being != nullptr)) { const ChatObject *const chat = being->getChat(); if (chat != nullptr) chatHandler->joinChat(chat, ""); } else if (link == "craftmenu") { showCraftPopup(); return; } else if (link.compare(0, 10, "guild-pos-") == 0) { if (localPlayer != nullptr) { const Guild *const guild = localPlayer->getGuild(); if (guild != nullptr) { const int num = atoi(link.substr(10).c_str()); guildHandler->changeMemberPostion( guild->getMember(mName), num); } } } else if (link.compare(0, 7, "player_") == 0) { if (actorManager != nullptr) { mBeingId = fromInt(atoi(link.substr(7).c_str()), BeingId); being = actorManager->findBeing(mBeingId); if (being != nullptr) { showPopup(getX(), getY(), being); return; } } } else if (link.compare(0, 10, "flooritem_") == 0) { if (actorManager != nullptr) { const BeingId id = fromInt(atoi( link.substr(10).c_str()), BeingId); if (id != BeingId_zero) { const FloorItem *const item = actorManager->findItem(id); if (item != nullptr) { mFloorItemId = item->getId(); mItemId = item->getItemId(); for (int f = 0; f < maxCards; f ++) mItemCards[f] = item->getCard(f); showPopup(getX(), getY(), item); return; } } } } else if (link.compare(0, 12, "hide button_") == 0) { if (windowMenu != nullptr) windowMenu->showButton(link.substr(12), Visible_false); } else if (link.compare(0, 12, "show button_") == 0) { if (windowMenu != nullptr) windowMenu->showButton(link.substr(12), Visible_true); } else if (link.compare(0, 9, "hide bar_") == 0) { if (miniStatusWindow != nullptr) miniStatusWindow->showBar(link.substr(9), Visible_false); } else if (link.compare(0, 9, "show bar_") == 0) { if (miniStatusWindow != nullptr) miniStatusWindow->showBar(link.substr(9), Visible_true); } else if (link.compare(0, 12, "show window_") == 0) { const int id = atoi(link.substr(12).c_str()); if (id >= 0) inputManager.executeAction(static_cast(id)); } else if (link.compare(0, 6, "mute_+") == 0) { if (being != nullptr) { const int time = atoi(link.substr(6).c_str()); adminHandler->mute(being, 1, time); } } else if (link.compare(0, 6, "mute_-") == 0) { if (being != nullptr) { const int time = atoi(link.substr(6).c_str()); adminHandler->mute(being, 0, time); } } else if (!link.empty() && link[0] == '/') { std::string cmd = link.substr(1); replaceAll(cmd, "'NAME'", mName); replaceAll(cmd, "'ENAME'", escapeString(mName)); replaceAll(cmd, "'EXTNAME'", mExtName); replaceAll(cmd, "'EEXTNAME'", escapeString(mExtName)); replaceAll(cmd, "'X'", toString(mX)); replaceAll(cmd, "'Y'", toString(mY)); replaceAll(cmd, "'BEINGID'", toString(toInt(mBeingId, int))); replaceAll(cmd, "'FLOORID'", toString(toInt(mFloorItemId, int))); replaceAll(cmd, "'ITEMID'", toString(mItemId)); replaceAll(cmd, "'ITEMCOLOR'", toString(toInt(mItemColor, int))); replaceAll(cmd, "'BEINGTYPEID'", toString(CAST_S32(mType))); replaceAll(cmd, "'BEINGSUBTYPEID'", toString(CAST_S32(mSubType))); if (localPlayer != nullptr) { replaceAll(cmd, "'PLAYER'", localPlayer->getName()); replaceAll(cmd, "'EPLAYER'", escapeString(localPlayer->getName())); replaceAll(cmd, "'PLAYERX'", toString(localPlayer->getTileX())); replaceAll(cmd, "'PLAYERY'", toString(localPlayer->getTileY())); } if (mItemIndex >= 0) replaceAll(cmd, "'INVINDEX'", toString(mItemIndex)); else replaceAll(cmd, "'INVINDEX'", "0"); if (mMapItem != nullptr) { replaceAll(cmd, "'MAPX'", toString(mMapItem->getX())); replaceAll(cmd, "'MAPY'", toString(mMapItem->getY())); } else { replaceAll(cmd, "'MAPX'", toString(mX)); replaceAll(cmd, "'MAPY'", toString(mY)); } std::string cards; for (int f = 0; f < maxCards; f ++) { const int id = mItemCards[f]; if (id != 0) { cards.append(","); cards.append(toString(id)); } } replaceAll(cmd, "'CARDS'", cards); replaceAll(cmd, "'ECARDS'", escapeString(cards)); if (actorManager != nullptr) { if (being == nullptr) { being = actorManager->findBeingByName(mName, ActorType::Player); } } if (being != nullptr) replaceAll(cmd, "'PARTY'", being->getPartyName()); else replaceAll(cmd, "'PARTY'", ""); const size_t pos = cmd.find(' '); const std::string type(cmd, 0, pos); std::string args(cmd, pos == std::string::npos ? cmd.size() : pos + 1); args = trim(args); inputManager.executeChatCommand(type, args, mTab); } // Unknown actions else if (link != "cancel") { reportAlways("PopupMenu: Warning, unknown action '%s'", link.c_str()) } if (!mAllowCleanMenu) return; setVisible(Visible_false); mBeingId = BeingId_zero; mFloorItemId = BeingId_zero; mItemId = 0; mItemIndex = -1; for (int f = 0; f < maxCards; f ++) mItemCards[f] = 0; mItemColor = ItemColor_one; mMapItem = nullptr; mTab = nullptr; mSpell = nullptr; mCallerWindow = nullptr; mDialog = nullptr; mButton = nullptr; mName.clear(); mExtName.clear(); mTextField = nullptr; mType = ActorType::Unknown; mSubType = BeingTypeId_zero; mX = 0; mY = 0; } void PopupMenu::showPopup(Window *const parent, const int x, const int y, const Item *const item, const InventoryTypeT type) { if (item == nullptr) return; initPopup(); mItemId = item->getId(); mItemIndex = item->getInvIndex(); for (int f = 0; f < maxCards; f ++) mItemCards[f] = item->getCard(f); mItemColor = item->getColor(); mCallerWindow = parent; mX = x; mY = y; mName.clear(); mExtName.clear(); mBrowserBox->clearRows(); const int cnt = item->getQuantity(); const bool isProtected = PlayerInfo::isItemProtected(mItemId); switch (type) { case InventoryType::Inventory: if (tradeWindow != nullptr && tradeWindow->isWindowVisible() && !isProtected) { // TRANSLATORS: popup menu item // TRANSLATORS: add item to trade mBrowserBox->addRow("/addtrade 'INVINDEX'", _("Add to trade")); if (cnt > 1) { if (cnt > 10) { mBrowserBox->addRow("/addtrade 'INVINDEX' 10", // TRANSLATORS: popup menu item // TRANSLATORS: add 10 item amount to trade _("Add to trade 10")); } mBrowserBox->addRow("/addtrade 'INVINDEX' /", // TRANSLATORS: popup menu item // TRANSLATORS: add half item amount to trade _("Add to trade half")); mBrowserBox->addRow("/addtrade 'INVINDEX' -1", // TRANSLATORS: popup menu item // TRANSLATORS: add all amount except one item to trade _("Add to trade all-1")); mBrowserBox->addRow("/addtrade 'INVINDEX' all", // TRANSLATORS: popup menu item // TRANSLATORS: add all amount item to trade _("Add to trade all")); } mBrowserBox->addSeparator("##3---"); } if (InventoryWindow::isStorageActive()) { // TRANSLATORS: popup menu item // TRANSLATORS: add item to storage mBrowserBox->addRow("/invtostorage 'INVINDEX'", _("Store")); if (cnt > 1) { if (cnt > 10) { mBrowserBox->addRow("/invtostorage 'INVINDEX' 10", // TRANSLATORS: popup menu item // TRANSLATORS: add 10 item amount to storage _("Store 10")); } mBrowserBox->addRow("/invtostorage 'INVINDEX' /", // TRANSLATORS: popup menu item // TRANSLATORS: add half item amount to storage _("Store half")); mBrowserBox->addRow("/invtostorage 'INVINDEX' -1", // TRANSLATORS: popup menu item // TRANSLATORS: add all except one item to storage _("Store all-1")); mBrowserBox->addRow("/invtostorage 'INVINDEX' all", // TRANSLATORS: popup menu item // TRANSLATORS: add all item amount to storage _("Store all")); } mBrowserBox->addSeparator("##3---"); } if (npcHandler != nullptr) { NpcDialog *const dialog = npcHandler->getCurrentNpcDialog(); if ((dialog != nullptr) && dialog->getInputState() == NpcInputState::ITEM_CRAFT) { mBrowserBox->addRow("craftmenu", // TRANSLATORS: popup menu item // TRANSLATORS: sub menu for craft _("Move to craft...")); } } addItemMenu(item, InventoryType::Inventory); addDrop(item, isProtected); break; case InventoryType::Storage: // TRANSLATORS: popup menu item // TRANSLATORS: get item from storage mBrowserBox->addRow("/storagetoinv 'INVINDEX'", _("Retrieve")); if (cnt > 1) { if (cnt > 10) { mBrowserBox->addRow("/storagetoinv 'INVINDEX' 10", // TRANSLATORS: popup menu item // TRANSLATORS: get 10 item amount from storage _("Retrieve 10")); } mBrowserBox->addRow("/storagetoinv 'INVINDEX' /", // TRANSLATORS: popup menu item // TRANSLATORS: get half item amount from storage _("Retrieve half")); mBrowserBox->addRow("/storagetoinv 'INVINDEX' -1", // TRANSLATORS: popup menu item // TRANSLATORS: get all except one item amount from storage _("Retrieve all-1")); mBrowserBox->addRow("/storagetoinv 'INVINDEX' all", // TRANSLATORS: popup menu item // TRANSLATORS: get all item amount from storage _("Retrieve all")); mBrowserBox->addSeparator("##3---"); } addItemMenu(item, InventoryType::Storage); break; case InventoryType::Cart: addItemMenu(item, InventoryType::Cart); break; case InventoryType::Trade: case InventoryType::Npc: case InventoryType::Vending: case InventoryType::MailEdit: case InventoryType::MailView: case InventoryType::Craft: case InventoryType::TypeEnd: default: break; } addProtection(); if (config.getBoolValue("enablePickupFilter")) { mName = item->getName(); mExtName = mName; mBrowserBox->addSeparator("##3---"); addPickupFilter(mName); } addGmCommands(); // TRANSLATORS: popup menu item // TRANSLATORS: add item name to chat mBrowserBox->addRow("/addchat 'ITEMID''CARDS'", _("Add to chat")); mBrowserBox->addSeparator("##3---"); // TRANSLATORS: popup menu item // TRANSLATORS: close menu mBrowserBox->addRow("cancel", _("Cancel")); showPopup(x, y); } void PopupMenu::showItemPopup(const int x, const int y, const int itemId, const ItemColor color) { const Inventory *const inv = PlayerInfo::getInventory(); if (inv == nullptr) return; Item *const item = inv->findItem(itemId, color); if (item != nullptr) { showItemPopup(x, y, item); } else { initPopup(); mItemId = itemId; mItemIndex = -1; mItemColor = color; for (int f = 0; f < maxCards; f ++) mItemCards[f] = 0; mX = x; mY = y; mBrowserBox->clearRows(); if (!PlayerInfo::isItemProtected(mItemId)) { // TRANSLATORS: popup menu item // TRANSLATORS: use item mBrowserBox->addRow("/use 'ITEMID'", _("Use")); } addProtection(); addGmCommands(); mBrowserBox->addSeparator("##3---"); // TRANSLATORS: popup menu item // TRANSLATORS: close menu mBrowserBox->addRow("cancel", _("Cancel")); showPopup(x, y); } } void PopupMenu::showItemPopup(const int x, const int y, const Item *const item) { initPopup(); mX = x; mY = y; if (item != nullptr) { mItemId = item->getId(); mItemColor = item->getColor(); mItemIndex = item->getInvIndex(); for (int f = 0; f < maxCards; f ++) mItemCards[f] = item->getCard(f); } else { mItemId = 0; mItemColor = ItemColor_one; mItemIndex = -1; for (int f = 0; f < maxCards; f ++) mItemCards[f] = 0; } mName.clear(); mExtName.clear(); mBrowserBox->clearRows(); if (item != nullptr) { const bool isProtected = PlayerInfo::isItemProtected(mItemId); addUse(item); addDrop(item, isProtected); if (InventoryWindow::isStorageActive()) { // TRANSLATORS: popup menu item // TRANSLATORS: add item to storage mBrowserBox->addRow("/invtostorage 'INVINDEX'", _("Store")); } // TRANSLATORS: popup menu item // TRANSLATORS: add item name to chat mBrowserBox->addRow("/addchat 'ITEMID''CARDS'", _("Add to chat")); if (config.getBoolValue("enablePickupFilter")) { mName = item->getName(); mExtName = mName; mBrowserBox->addSeparator("##3---"); addPickupFilter(mName); } } addProtection(); addGmCommands(); mBrowserBox->addSeparator("##3---"); // TRANSLATORS: popup menu item // TRANSLATORS: close menu mBrowserBox->addRow("cancel", _("Cancel")); showPopup(x, y); } void PopupMenu::showDropPopup(const int x, const int y, const Item *const item) { initPopup(); mX = x; mY = y; mName.clear(); mExtName.clear(); mBrowserBox->clearRows(); if (item != nullptr) { mItemId = item->getId(); mItemColor = item->getColor(); mItemIndex = item->getInvIndex(); for (int f = 0; f < maxCards; f ++) mItemCards[f] = item->getCard(f); const bool isProtected = PlayerInfo::isItemProtected(mItemId); addUse(item); addDrop(item, isProtected); if (InventoryWindow::isStorageActive()) { // TRANSLATORS: popup menu item // TRANSLATORS: add item to storage mBrowserBox->addRow("/invtostorage 'INVINDEX'", _("Store")); } addProtection(); // TRANSLATORS: popup menu item // TRANSLATORS: add item name to chat mBrowserBox->addRow("/addchat 'ITEMID''CARDS'", _("Add to chat")); if (config.getBoolValue("enablePickupFilter")) { mName = item->getName(); mExtName = mName; mBrowserBox->addSeparator("##3---"); addPickupFilter(mName); } } addGmCommands(); mBrowserBox->addSeparator("##3---"); // TRANSLATORS: popup menu item mBrowserBox->addRow("/cleardrops", _("Clear drop window")); mBrowserBox->addSeparator("##3---"); // TRANSLATORS: popup menu item // TRANSLATORS: close menu mBrowserBox->addRow("cancel", _("Cancel")); showPopup(x, y); } void PopupMenu::showPopup(const int x, const int y, Button *const button) { if ((button == nullptr) || (windowMenu == nullptr)) return; initPopup(); mButton = button; mX = x; mY = y; mBrowserBox->clearRows(); STD_VECTOR