From 4ae0cd0b3838cc3354702af2ca6d669a91afdd8d Mon Sep 17 00:00:00 2001 From: Andrei Karas Date: Mon, 9 Feb 2015 15:56:35 +0300 Subject: eathena: add packet CMSG_SEARCHSTORE_SEARCH 0x0819. --- src/net/eathena/protocol.h | 2 ++ src/net/eathena/searchstorehandler.cpp | 18 ++++++++++++++++++ src/net/eathena/searchstorehandler.h | 5 +++++ 3 files changed, 25 insertions(+) (limited to 'src/net/eathena') diff --git a/src/net/eathena/protocol.h b/src/net/eathena/protocol.h index 640db8a78..a214674ed 100644 --- a/src/net/eathena/protocol.h +++ b/src/net/eathena/protocol.h @@ -561,4 +561,6 @@ #define CMSG_BUYINGSTORE_OPEN 0x0360 #define CMSG_BUYINGSTORE_SELL 0x0811 +#define CMSG_SEARCHSTORE_SEARCH 0x0819 + #endif // NET_EATHENA_PROTOCOL_H diff --git a/src/net/eathena/searchstorehandler.cpp b/src/net/eathena/searchstorehandler.cpp index 38baadd6d..4ddad3148 100644 --- a/src/net/eathena/searchstorehandler.cpp +++ b/src/net/eathena/searchstorehandler.cpp @@ -20,6 +20,9 @@ #include "net/eathena/searchstorehandler.h" +#include "net/eathena/messageout.h" +#include "net/eathena/protocol.h" + #include "debug.h" extern Net::SearchStoreHandler *searchStoreHandler; @@ -47,4 +50,19 @@ void SearchStoreHandler::handleMessage(Net::MessageIn &msg) } } +void SearchStoreHandler::search(const StoreSearchType::Type type, + const int minPrice, + const int maxPrice, + const int itemId) const +{ + createOutPacket(CMSG_SEARCHSTORE_SEARCH); + outMsg.writeInt16(23, "len"); + outMsg.writeInt8(static_cast(type), "search type"); + outMsg.writeInt32(maxPrice, "max price"); + outMsg.writeInt32(minPrice, "min price"); + outMsg.writeInt32(1, "items count"); + outMsg.writeInt32(0, "cards count"); + outMsg.writeInt16(itemId, "item id"); +} + } // namespace EAthena diff --git a/src/net/eathena/searchstorehandler.h b/src/net/eathena/searchstorehandler.h index f9c486faf..56e44dd8b 100644 --- a/src/net/eathena/searchstorehandler.h +++ b/src/net/eathena/searchstorehandler.h @@ -36,6 +36,11 @@ class SearchStoreHandler final : public MessageHandler, A_DELETE_COPY(SearchStoreHandler) void handleMessage(Net::MessageIn &msg) override final; + + void search(const StoreSearchType::Type type, + const int minPrice, + const int maxPrice, + const int itemId) const override final; }; } // namespace EAthena -- cgit v1.2.3-60-g2f50