From b3fa7a53a29a1001935514a38f140af2b816771a Mon Sep 17 00:00:00 2001 From: Andrei Karas Date: Wed, 9 Aug 2017 18:47:10 +0300 Subject: Allow for each item replace equip/use menu item to custom menu. Separate menus supproted for inventory, storage, cart. --- src/resources/db/itemdb.cpp | 103 +++++++++++++++++++++++++++++++++++++++++++ src/resources/iteminfo.cpp | 3 ++ src/resources/iteminfo.h | 18 ++++++++ src/resources/itemmenuitem.h | 49 ++++++++++++++++++++ 4 files changed, 173 insertions(+) create mode 100644 src/resources/itemmenuitem.h (limited to 'src/resources') diff --git a/src/resources/db/itemdb.cpp b/src/resources/db/itemdb.cpp index 6a7ed29eb..93c0e845a 100644 --- a/src/resources/db/itemdb.cpp +++ b/src/resources/db/itemdb.cpp @@ -236,6 +236,56 @@ void ItemDB::load() } } +static void loadMenu(XmlNodePtrConst parentNode, + STD_VECTOR &menu) +{ + for_each_xml_child_node(node, parentNode) + { + if (xmlNameEqual(node, "menu")) + { + const std::string name1 = XML::langProperty(node, + "name1", ""); + const std::string name2 = XML::langProperty(node, + "name2", ""); + const std::string command1 = XML::getProperty(node, + "command1", ""); + const std::string command2 = XML::getProperty(node, + "command2", command1); + menu.push_back(ItemMenuItem(name1, + name2, + command1, + command2)); + } + } +} + +static bool getIsEquipment(const ItemDbType type) +{ + switch (type) + { + case ItemDbType::EQUIPMENT_ONE_HAND_WEAPON: + case ItemDbType::EQUIPMENT_TWO_HANDS_WEAPON: + case ItemDbType::EQUIPMENT_TORSO: + case ItemDbType::EQUIPMENT_ARMS: + case ItemDbType::EQUIPMENT_HEAD: + case ItemDbType::EQUIPMENT_LEGS: + case ItemDbType::EQUIPMENT_SHIELD: + case ItemDbType::EQUIPMENT_RING: + case ItemDbType::EQUIPMENT_NECKLACE: + case ItemDbType::EQUIPMENT_FEET: + case ItemDbType::EQUIPMENT_AMMO: + case ItemDbType::EQUIPMENT_CHARM: + return true; + case ItemDbType::UNUSABLE: + case ItemDbType::USABLE: + case ItemDbType::CARD: + case ItemDbType::SPRITE_RACE: + case ItemDbType::SPRITE_HAIR: + default: + return false; + } +} + void ItemDB::loadXmlFile(const std::string &fileName, int &tagNum, const SkipError skipError) @@ -582,6 +632,18 @@ void ItemDB::loadXmlFile(const std::string &fileName, { loadOrderSprite(itemInfo, itemChild, false); } + else if (xmlNameEqual(itemChild, "inventory")) + { + loadMenu(itemChild, itemInfo->getInventoryMenu()); + } + else if (xmlNameEqual(itemChild, "storage")) + { + loadMenu(itemChild, itemInfo->getStorageMenu()); + } + else if (xmlNameEqual(itemChild, "cart")) + { + loadMenu(itemChild, itemInfo->getCartMenu()); + } } /* @@ -643,6 +705,47 @@ void ItemDB::loadXmlFile(const std::string &fileName, } } + STD_VECTOR &inventoryMenu = itemInfo->getInventoryMenu(); + + if (inventoryMenu.empty()) + { + std::string name1 = itemInfo->getUseButton(); + std::string name2 = itemInfo->getUseButton2(); + const bool isEquipment = getIsEquipment(itemInfo->getType()); + + if (isEquipment) + { + if (name1.empty()) + { + // TRANSLATORS: popup menu item + name1 = _("Equip"); + } + if (name2.empty()) + { + // TRANSLATORS: popup menu item + name2 = _("Unequip"); + } + } + else + { + if (name1.empty()) + { + // TRANSLATORS: popup menu item + name1 = _("Use"); + } + if (name2.empty()) + { + // TRANSLATORS: popup menu item + name2 = _("Use"); + } + } + inventoryMenu.push_back(ItemMenuItem( + name1, + name2, + "useinv 'INVINDEX'", + "useinv 'INVINDEX'")); + } + #define CHECK_PARAM(param) \ if (param.empty()) \ { \ diff --git a/src/resources/iteminfo.cpp b/src/resources/iteminfo.cpp index 26cd2dc20..118ce5d71 100644 --- a/src/resources/iteminfo.cpp +++ b/src/resources/iteminfo.cpp @@ -63,6 +63,9 @@ ItemInfo::ItemInfo() : mTags(), mColorsList(nullptr), mIconColorsList(nullptr), + mInventoryMenu(), + mStorageMenu(), + mCartMenu(), mColorsListName(), mIconColorsListName(), mCardColor(ItemColor_zero), diff --git a/src/resources/iteminfo.h b/src/resources/iteminfo.h index 92474ff7e..414fa45b8 100644 --- a/src/resources/iteminfo.h +++ b/src/resources/iteminfo.h @@ -31,6 +31,7 @@ #include "resources/cursors.h" #include "resources/itemcolordata.h" +#include "resources/itemmenuitem.h" #include "resources/missileinfo.h" #include "resources/soundinfo.h" @@ -313,6 +314,20 @@ class ItemInfo final std::string getIconColorName(const ItemColor idx) const; std::string getIconColor(const ItemColor idx) const; + STD_VECTOR &getInventoryMenu() + { return mInventoryMenu; } + STD_VECTOR &getStorageMenu() + { return mStorageMenu; } + STD_VECTOR &getCartMenu() + { return mCartMenu; } + + const STD_VECTOR &getInventoryMenuConst() const A_CONST + { return mInventoryMenu; } + const STD_VECTOR &getStorageMenuConst() const A_CONST + { return mStorageMenu; } + const STD_VECTOR &getCartMenuConst() const A_CONST + { return mCartMenu; } + int mDrawBefore[10]; int mDrawAfter[10]; int mDrawPriority[10]; @@ -363,6 +378,9 @@ class ItemInfo final std::map mTags; const std::map *mColorsList; const std::map *mIconColorsList; + STD_VECTOR mInventoryMenu; + STD_VECTOR mStorageMenu; + STD_VECTOR mCartMenu; std::string mColorsListName; std::string mIconColorsListName; ItemColor mCardColor; diff --git a/src/resources/itemmenuitem.h b/src/resources/itemmenuitem.h new file mode 100644 index 000000000..0d7dd2950 --- /dev/null +++ b/src/resources/itemmenuitem.h @@ -0,0 +1,49 @@ +/* + * The ManaPlus Client + * Copyright (C) 2012-2017 The ManaPlus 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 . + */ + +#ifndef RESOURCES_ITEMMENUITEM_H +#define RESOURCES_ITEMMENUITEM_H + +#include + +#include "localconsts.h" + +struct ItemMenuItem final +{ + ItemMenuItem(const std::string &name01, + const std::string &name02, + const std::string &command01, + const std::string &command02) : + name1(name01), + name2(name02), + command1(command01), + command2(command02) + { + } + + A_DEFAULT_COPY(ItemMenuItem) + + std::string name1; + std::string name2; + std::string command1; + std::string command2; +}; + +#endif // RESOURCES_ITEMMENUITEM_H -- cgit v1.2.3-60-g2f50