From d2fade5787cb2fa315056410af6d6e6b92438b14 Mon Sep 17 00:00:00 2001 From: Andrei Karas Date: Wed, 24 Sep 2014 23:24:39 +0300 Subject: eathena: add packet SMSG_HOMUNCULUS_INFO 0x022e. --- src/net/eathena/homunculushandler.cpp | 47 +++++++++++++++++++++++++++++++++++ src/net/eathena/homunculushandler.h | 2 ++ src/net/eathena/packets.h | 2 +- src/net/eathena/protocol.h | 1 + 4 files changed, 51 insertions(+), 1 deletion(-) (limited to 'src/net') diff --git a/src/net/eathena/homunculushandler.cpp b/src/net/eathena/homunculushandler.cpp index 7cdafb0aa..36f634de0 100644 --- a/src/net/eathena/homunculushandler.cpp +++ b/src/net/eathena/homunculushandler.cpp @@ -47,6 +47,7 @@ HomunculusHandler::HomunculusHandler() : { SMSG_HOMUNCULUS_SKILLS, SMSG_HOMUNCULUS_DATA, + SMSG_HOMUNCULUS_INFO, 0 }; handledMessages = _messages; @@ -65,6 +66,10 @@ void HomunculusHandler::handleMessage(Net::MessageIn &msg) processHomunculusData(msg); break; + case SMSG_HOMUNCULUS_INFO: + processHomunculusInfo(msg); + break; + default: break; } @@ -135,4 +140,46 @@ void HomunculusHandler::processHomunculusData(Net::MessageIn &msg) } } +void HomunculusHandler::processHomunculusInfo(Net::MessageIn &msg) +{ + const std::string name = msg.readString(24, "name"); + msg.readUInt8("flags"); // 0x01 - renamed, 0x02 - vaporize, 0x04 - alive + const int level = msg.readInt16("level"); + const int hungry = msg.readInt16("hungry"); + const int intimacy = msg.readInt16("intimacy"); + const int equip = msg.readInt16("equip"); + msg.readInt16("atk"); + msg.readInt16("matk"); + msg.readInt16("hit"); + msg.readInt16("luk/3 or crit/10"); + msg.readInt16("def"); + msg.readInt16("mdef"); + msg.readInt16("flee"); + msg.readInt16("attack speed"); + msg.readInt16("hp"); + msg.readInt16("max hp"); + msg.readInt16("sp"); + msg.readInt16("max sp"); + msg.readInt32("exp"); + msg.readInt32("next exp"); + msg.readInt16("skill points"); + const int range = msg.readInt16("attack range"); + + HomunculusInfo *const info = PlayerInfo::getHomunculus(); + if (!info) // we cant find homunculus being because id is missing + return; + Being *const dstBeing = actorManager->findBeing(info->id); + + if (dstBeing) + { + info->name = name; + info->level = level; + info->range = range; + info->hungry = hungry; + info->intimacy = intimacy; + info->equip = equip; + PlayerInfo::setHomunculusBeing(dstBeing); + } +} + } // namespace EAthena diff --git a/src/net/eathena/homunculushandler.h b/src/net/eathena/homunculushandler.h index c172adb90..6fa49a451 100644 --- a/src/net/eathena/homunculushandler.h +++ b/src/net/eathena/homunculushandler.h @@ -43,6 +43,8 @@ class HomunculusHandler final : public MessageHandler, void processHomunculusSkills(Net::MessageIn &msg); void processHomunculusData(Net::MessageIn &msg); + + void processHomunculusInfo(Net::MessageIn &msg); }; } // namespace EAthena diff --git a/src/net/eathena/packets.h b/src/net/eathena/packets.h index 28002d4e4..b9114aabd 100644 --- a/src/net/eathena/packets.h +++ b/src/net/eathena/packets.h @@ -85,7 +85,7 @@ int16_t packet_lengths[] = // #0x0200 26, 0, 0, 0, 18, 0, 0, 0, 0, 0, 0, 19, 10, 0, 0, 0, 22, -1, 16, 0, 42, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - -1, 122, 0, 0, 0, 0, 0, 0, 0, 15, 0, 0, 0, 19, 0, 0, + -1, 122, 0, 0, 0, 0, 0, 0, 0, 15, 0, 0, 0, 19, 71, 0, 12, 0, 0, 0, 0, -1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, // #0x0240 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, diff --git a/src/net/eathena/protocol.h b/src/net/eathena/protocol.h index 74ddf6dda..5e059a3b9 100644 --- a/src/net/eathena/protocol.h +++ b/src/net/eathena/protocol.h @@ -260,6 +260,7 @@ #define SMSG_HOMUNCULUS_SKILLS 0x0235 #define SMSG_HOMUNCULUS_DATA 0x0230 +#define SMSG_HOMUNCULUS_INFO 0x022e /********************************** * Packets from client to server * -- cgit v1.2.3-70-g09d2