From 65c80b4219378cf3e18a6d6beb09ec9913a01d53 Mon Sep 17 00:00:00 2001 From: Andrei Karas Date: Fri, 22 Jan 2016 15:33:53 +0300 Subject: Add packet CMSG_QUICK_IDENTIFY_ITEM 0x0a35. --- src/net/eathena/inventoryhandler.cpp | 7 +++++++ src/net/eathena/inventoryhandler.h | 2 ++ src/net/eathena/packetsout.inc | 3 +++ src/net/inventoryhandler.h | 2 ++ src/net/tmwa/inventoryhandler.cpp | 4 ++++ src/net/tmwa/inventoryhandler.h | 2 ++ 6 files changed, 20 insertions(+) (limited to 'src') diff --git a/src/net/eathena/inventoryhandler.cpp b/src/net/eathena/inventoryhandler.cpp index c27bf1c8c..fa2905c28 100644 --- a/src/net/eathena/inventoryhandler.cpp +++ b/src/net/eathena/inventoryhandler.cpp @@ -221,4 +221,11 @@ void InventoryHandler::selectCart(const BeingId accountId, outMsg.writeInt8(type, "type"); } +void InventoryHandler::identifyItem(const Item *const item) const +{ + createOutPacket(CMSG_QUICK_IDENTIFY_ITEM); + outMsg.writeInt16(static_cast(item->getInvIndex()), + "item index"); +} + } // namespace EAthena diff --git a/src/net/eathena/inventoryhandler.h b/src/net/eathena/inventoryhandler.h index 5f7439133..e54704cfb 100644 --- a/src/net/eathena/inventoryhandler.h +++ b/src/net/eathena/inventoryhandler.h @@ -69,6 +69,8 @@ class InventoryHandler final : public Ea::InventoryHandler void selectCart(const BeingId accountId, const int type) const override final; + void identifyItem(const Item *const item) const override final; + int getProjectileSlot() const override final { return 23; } diff --git a/src/net/eathena/packetsout.inc b/src/net/eathena/packetsout.inc index a8fe50a14..d974e4e53 100644 --- a/src/net/eathena/packetsout.inc +++ b/src/net/eathena/packetsout.inc @@ -275,5 +275,8 @@ if (packetVersion >= 20150513) } #endif +// introduced in 20150513 +packet(CMSG_QUICK_IDENTIFY_ITEM, 0x0a35); + // introduced in 20150805 packet(CMSG_SELECT_CART, 0x0980); diff --git a/src/net/inventoryhandler.h b/src/net/inventoryhandler.h index b4786fb94..77d2a526f 100644 --- a/src/net/inventoryhandler.h +++ b/src/net/inventoryhandler.h @@ -89,6 +89,8 @@ class InventoryHandler notfinal virtual void selectCart(const BeingId accountId, const int type) const = 0; + + virtual void identifyItem(const Item *const item) const = 0; }; } // namespace Net diff --git a/src/net/tmwa/inventoryhandler.cpp b/src/net/tmwa/inventoryhandler.cpp index efe307775..24d76eab7 100644 --- a/src/net/tmwa/inventoryhandler.cpp +++ b/src/net/tmwa/inventoryhandler.cpp @@ -169,4 +169,8 @@ void InventoryHandler::selectCart(const BeingId accountId A_UNUSED, { } +void InventoryHandler::identifyItem(const Item *const item A_UNUSED) const +{ +} + } // namespace TmwAthena diff --git a/src/net/tmwa/inventoryhandler.h b/src/net/tmwa/inventoryhandler.h index 3b42c5f4c..f818a875b 100644 --- a/src/net/tmwa/inventoryhandler.h +++ b/src/net/tmwa/inventoryhandler.h @@ -69,6 +69,8 @@ class InventoryHandler final : public Ea::InventoryHandler void selectCart(const BeingId accountId, const int type) const override final; + void identifyItem(const Item *const item) const override final; + int getProjectileSlot() const override final { return 10; } -- cgit v1.2.3-60-g2f50