summaryrefslogtreecommitdiff
path: root/src/net/eathena/vendinghandler.cpp
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2015-01-07 16:55:08 +0300
committerAndrei Karas <akaras@inbox.ru>2015-01-07 17:01:49 +0300
commit3b96653ddb43f1d02979ebb92fb3b08f39a5aa68 (patch)
tree5972d0f6431bb0078d769c8c19a6287de522cce8 /src/net/eathena/vendinghandler.cpp
parent64ed5cd18dca0d5eb08302d552a09f03d9ceeb10 (diff)
downloadplus-3b96653ddb43f1d02979ebb92fb3b08f39a5aa68.tar.gz
plus-3b96653ddb43f1d02979ebb92fb3b08f39a5aa68.tar.bz2
plus-3b96653ddb43f1d02979ebb92fb3b08f39a5aa68.tar.xz
plus-3b96653ddb43f1d02979ebb92fb3b08f39a5aa68.zip
eathena: add packet CMSG_VENDING_CREATE_SHOP 0x01b2.
Diffstat (limited to 'src/net/eathena/vendinghandler.cpp')
-rw-r--r--src/net/eathena/vendinghandler.cpp22
1 files changed, 22 insertions, 0 deletions
diff --git a/src/net/eathena/vendinghandler.cpp b/src/net/eathena/vendinghandler.cpp
index e01040055..47428a040 100644
--- a/src/net/eathena/vendinghandler.cpp
+++ b/src/net/eathena/vendinghandler.cpp
@@ -20,8 +20,12 @@
#include "net/eathena/vendinghandler.h"
+#include "shopitem.h"
+
#include "being/being.h"
+#include "net/ea/eaprotocol.h"
+
#include "net/eathena/messageout.h"
#include "net/eathena/protocol.h"
@@ -198,4 +202,22 @@ void VendingHandler::buy2(const Being *const being,
outMsg.writeInt16(index, "index");
}
+void VendingHandler::createShop(const std::string &name,
+ const bool flag,
+ std::vector<ShopItem*> &items) const
+{
+ createOutPacket(CMSG_VENDING_CREATE_SHOP);
+ outMsg.writeInt16(85 + items.size() * 8, "len");
+ outMsg.writeString(name, 80, "shop name");
+ outMsg.writeInt8(flag ? 1 : 0, "flag");
+ FOR_EACH (std::vector<ShopItem*>::const_iterator, it, items)
+ {
+ const ShopItem *const item = *it;
+ outMsg.writeInt16(static_cast<int16_t>(
+ item->getInvIndex() + INVENTORY_OFFSET), "index");
+ outMsg.writeInt16(static_cast<int16_t>(item->getQuantity()), "amount");
+ outMsg.writeInt32(item->getPrice(), "price");
+ }
+}
+
} // namespace EAthena