summaryrefslogtreecommitdiff
path: root/src/net/eathena/cashshophandler.cpp
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2014-12-24 17:06:53 +0300
committerAndrei Karas <akaras@inbox.ru>2014-12-24 17:06:53 +0300
commit81020303571b9421b3ef1c8d2ec5f5d36599540d (patch)
tree78c0b3400ebca0d370aba332ec95d8da027de618 /src/net/eathena/cashshophandler.cpp
parent2f91a45e4c0c59a962059890ed5ab708a059788f (diff)
downloadManaVerse-81020303571b9421b3ef1c8d2ec5f5d36599540d.tar.gz
ManaVerse-81020303571b9421b3ef1c8d2ec5f5d36599540d.tar.bz2
ManaVerse-81020303571b9421b3ef1c8d2ec5f5d36599540d.tar.xz
ManaVerse-81020303571b9421b3ef1c8d2ec5f5d36599540d.zip
eathena: impliment packet SMSG_NPC_CASH_SHOP_OPEN 0x0287.
Diffstat (limited to 'src/net/eathena/cashshophandler.cpp')
-rw-r--r--src/net/eathena/cashshophandler.cpp21
1 files changed, 18 insertions, 3 deletions
diff --git a/src/net/eathena/cashshophandler.cpp b/src/net/eathena/cashshophandler.cpp
index 2ae0c67be..63cd03a04 100644
--- a/src/net/eathena/cashshophandler.cpp
+++ b/src/net/eathena/cashshophandler.cpp
@@ -20,6 +20,11 @@
#include "net/eathena/cashshophandler.h"
+#include "being/attributes.h"
+#include "being/playerinfo.h"
+
+#include "gui/windows/buydialog.h"
+
#include "net/eathena/messageout.h"
#include "net/eathena/protocol.h"
@@ -30,6 +35,8 @@ extern Net::CashShopHandler *cashShopHandler;
namespace EAthena
{
+BuyDialog *CashShopHandler::mBuyDialog = nullptr;
+
CashShopHandler::CashShopHandler() :
MessageHandler()
{
@@ -41,6 +48,7 @@ CashShopHandler::CashShopHandler() :
};
handledMessages = _messages;
cashShopHandler = this;
+ mBuyDialog = nullptr;
}
void CashShopHandler::handleMessage(Net::MessageIn &msg)
@@ -63,15 +71,22 @@ void CashShopHandler::handleMessage(Net::MessageIn &msg)
void CashShopHandler::processCashShopOpen(Net::MessageIn &msg)
{
const int count = (msg.readInt16("len") - 12) / 11;
+
+ mBuyDialog = new BuyDialog(BuyDialog::Cash);
+ mBuyDialog->setMoney(PlayerInfo::getAttribute(Attributes::MONEY));
+
msg.readInt32("cash points");
msg.readInt32("kafra points");
for (int f = 0; f < count; f ++)
{
msg.readInt32("price");
- msg.readInt32("discount price");
- msg.readUInt8("item type");
- msg.readInt16("item id");
+ const int value = msg.readInt32("discount price");
+ const int type = msg.readUInt8("item type");
+ const int itemId = msg.readInt16("item id");
+ const int color = 1;
+ mBuyDialog->addItem(itemId, type, color, 0, value);
}
+ mBuyDialog->sort();
}
void CashShopHandler::processCashShopBuyAck(Net::MessageIn &msg)