summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2015-02-09 21:42:03 +0300
committerAndrei Karas <akaras@inbox.ru>2015-02-09 21:42:03 +0300
commit37d7bd3163ad58391df36363b6f0135c638fbeb8 (patch)
treea4a13cb66e13dd0e3576f77c6f17057fde2004d2 /src
parent76bbb31b1d9b1b8c22614ac91e765519194257d8 (diff)
downloadManaVerse-37d7bd3163ad58391df36363b6f0135c638fbeb8.tar.gz
ManaVerse-37d7bd3163ad58391df36363b6f0135c638fbeb8.tar.bz2
ManaVerse-37d7bd3163ad58391df36363b6f0135c638fbeb8.tar.xz
ManaVerse-37d7bd3163ad58391df36363b6f0135c638fbeb8.zip
eathena: add partial support for packet SMSG_SEARCHSTORE_CLICK_ACK 0x083d.
Diffstat (limited to 'src')
-rw-r--r--src/net/eathena/packets.h2
-rw-r--r--src/net/eathena/protocol.h1
-rw-r--r--src/net/eathena/searchstorehandler.cpp11
-rw-r--r--src/net/eathena/searchstorehandler.h4
4 files changed, 16 insertions, 2 deletions
diff --git a/src/net/eathena/packets.h b/src/net/eathena/packets.h
index 2357cdf0a..6bff795cc 100644
--- a/src/net/eathena/packets.h
+++ b/src/net/eathena/packets.h
@@ -218,7 +218,7 @@ int16_t packet_lengths[] =
-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14, 20,
3, 0, 8, -1, 86, -1, 0, 0, -1, 0, 4, 10, 10, 22, 8, 0,
0, 0, 0, 0, 6, 0, -1, 3, 0, 0, 0, 0, 0, -1, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 66, 5, 0, 0, 0, 26, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 66, 5, 0, 0, 6, 26, 0,
// #0x0840
-1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 19, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, -1, -1, -1, 0, 0, 0, 0, 0, 0, 0,
diff --git a/src/net/eathena/protocol.h b/src/net/eathena/protocol.h
index 1d34f158a..c285c5667 100644
--- a/src/net/eathena/protocol.h
+++ b/src/net/eathena/protocol.h
@@ -346,6 +346,7 @@
#define SMSG_SEARCHSTORE_SEARCH_ACK 0x0836
#define SMSG_SEARCHSTORE_SEARCH_FAILED 0x0837
#define SMSG_SEARCHSTORE_OPEN 0x083a
+#define SMSG_SEARCHSTORE_CLICK_ACK 0x083d
/**********************************
* Packets from client to server *
diff --git a/src/net/eathena/searchstorehandler.cpp b/src/net/eathena/searchstorehandler.cpp
index a90a1d299..ed23b1dda 100644
--- a/src/net/eathena/searchstorehandler.cpp
+++ b/src/net/eathena/searchstorehandler.cpp
@@ -42,6 +42,7 @@ SearchStoreHandler::SearchStoreHandler() :
SMSG_SEARCHSTORE_SEARCH_ACK,
SMSG_SEARCHSTORE_SEARCH_FAILED,
SMSG_SEARCHSTORE_OPEN,
+ SMSG_SEARCHSTORE_CLICK_ACK,
0
};
handledMessages = _messages;
@@ -64,6 +65,10 @@ void SearchStoreHandler::handleMessage(Net::MessageIn &msg)
processSearchOpen(msg);
break;
+ case SMSG_SEARCHSTORE_CLICK_ACK:
+ processSearchClickAck(msg);
+ break;
+
default:
break;
}
@@ -163,4 +168,10 @@ void SearchStoreHandler::processSearchOpen(Net::MessageIn &msg)
msg.readUInt8("uses");
}
+void SearchStoreHandler::processSearchClickAck(Net::MessageIn &msg)
+{
+ msg.readInt16("x");
+ msg.readInt16("y");
+}
+
} // namespace EAthena
diff --git a/src/net/eathena/searchstorehandler.h b/src/net/eathena/searchstorehandler.h
index 7a6b82024..3a449f512 100644
--- a/src/net/eathena/searchstorehandler.h
+++ b/src/net/eathena/searchstorehandler.h
@@ -55,7 +55,9 @@ class SearchStoreHandler final : public MessageHandler,
static void processSearchFailed(Net::MessageIn &msg);
- void processSearchOpen(Net::MessageIn &msg);
+ static void processSearchOpen(Net::MessageIn &msg);
+
+ static void processSearchClickAck(Net::MessageIn &msg);
};
} // namespace EAthena