From a7105aa2f73a372be018173e47b2fa8e6cfa87e4 Mon Sep 17 00:00:00 2001 From: Andrei Karas Date: Tue, 14 Oct 2014 15:55:29 +0300 Subject: eathena: add partial support for SMSG_ELEMENTAL_INFO 0x081d. --- src/net/eathena/elementalhandler.cpp | 14 ++++++++++++++ src/net/eathena/elementalhandler.h | 2 ++ src/net/eathena/packets.h | 2 +- src/net/eathena/protocol.h | 1 + 4 files changed, 18 insertions(+), 1 deletion(-) diff --git a/src/net/eathena/elementalhandler.cpp b/src/net/eathena/elementalhandler.cpp index dc21746cd..8dc8b6684 100644 --- a/src/net/eathena/elementalhandler.cpp +++ b/src/net/eathena/elementalhandler.cpp @@ -35,6 +35,7 @@ ElementalHandler::ElementalHandler() : static const uint16_t _messages[] = { SMSG_ELEMENTAL_UPDATE_STATUS, + SMSG_ELEMENTAL_INFO, 0 }; handledMessages = _messages; @@ -49,6 +50,10 @@ void ElementalHandler::handleMessage(Net::MessageIn &msg) processElementalUpdateStatus(msg); break; + case SMSG_ELEMENTAL_INFO: + processElementalInfo(msg); + break; + default: break; } @@ -60,4 +65,13 @@ void ElementalHandler::processElementalUpdateStatus(Net::MessageIn &msg) msg.readInt32("value"); } +void ElementalHandler::processElementalInfo(Net::MessageIn &msg) +{ + msg.readInt32("elemental id"); + msg.readInt32("hp"); + msg.readInt32("max hp"); + msg.readInt32("sp"); + msg.readInt32("max sp"); +} + } // namespace EAthena diff --git a/src/net/eathena/elementalhandler.h b/src/net/eathena/elementalhandler.h index 1bbdd2b15..e77845432 100644 --- a/src/net/eathena/elementalhandler.h +++ b/src/net/eathena/elementalhandler.h @@ -39,6 +39,8 @@ class ElementalHandler final : public MessageHandler, protected: void processElementalUpdateStatus(Net::MessageIn &msg); + + void processElementalInfo(Net::MessageIn &msg); }; } // namespace EAthena diff --git a/src/net/eathena/packets.h b/src/net/eathena/packets.h index ef06cf3ca..e98366251 100644 --- a/src/net/eathena/packets.h +++ b/src/net/eathena/packets.h @@ -216,7 +216,7 @@ int16_t packet_lengths[] = //0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 // #0x0800 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14, 20, - 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, + 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 22, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 66, 0, 0, 0, 0, 26, 0, // #0x0840 diff --git a/src/net/eathena/protocol.h b/src/net/eathena/protocol.h index c5c653d8c..53631859c 100644 --- a/src/net/eathena/protocol.h +++ b/src/net/eathena/protocol.h @@ -299,6 +299,7 @@ #define SMSG_AUCTION_OPEN_WINDOW 0x025f #define SMSG_ELEMENTAL_UPDATE_STATUS 0x081e +#define SMSG_ELEMENTAL_INFO 0x081d /********************************** * Packets from client to server * -- cgit v1.2.3-70-g09d2