From 549d21c0c9995c2120ea539cfb3551817df214a2 Mon Sep 17 00:00:00 2001 From: Andrei Karas Date: Thu, 4 Sep 2014 19:33:37 +0300 Subject: Move processTradeItemAdd from ea namespace into eathena and tmwa. --- src/net/tmwa/tradehandler.cpp | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) (limited to 'src/net/tmwa/tradehandler.cpp') diff --git a/src/net/tmwa/tradehandler.cpp b/src/net/tmwa/tradehandler.cpp index 0a67a9202..073fe78ed 100644 --- a/src/net/tmwa/tradehandler.cpp +++ b/src/net/tmwa/tradehandler.cpp @@ -26,6 +26,8 @@ #include "being/playerinfo.h" +#include "gui/windows/tradewindow.h" + #include "net/tmwa/messageout.h" #include "net/tmwa/protocol.h" @@ -153,4 +155,27 @@ void TradeHandler::processTradeRequest(Net::MessageIn &msg) const processTradeRequestContinue(msg.readString(24, "name")); } +void TradeHandler::processTradeItemAdd(Net::MessageIn &msg) +{ + const int amount = msg.readInt32(); + const int type = msg.readInt16(); + const uint8_t identify = msg.readUInt8(); // identified flag + msg.readUInt8(); // attribute + const uint8_t refine = msg.readUInt8(); // refine + msg.skip(8); // card (4 shorts) + + if (tradeWindow) + { + if (type == 0) + { + tradeWindow->setMoney(amount); + } + else + { + tradeWindow->addItem2(type, false, amount, + refine, identify, false); + } + } +} + } // namespace TmwAthena -- cgit v1.2.3-60-g2f50