From 0b02718faa9ccff8a021de00f9c47dd66e24e324 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lo=C3=AFc=20Hoguin?= Date: Sat, 26 Feb 2011 18:25:04 +0100 Subject: [PATCH] psu_proto: Move send_1015 to psu_proto without reviewing it. --- src/egs_game.erl | 2 +- src/psu/psu_game.erl | 7 ------- src/psu/psu_proto.erl | 8 ++++++++ 3 files changed, 9 insertions(+), 8 deletions(-) diff --git a/src/egs_game.erl b/src/egs_game.erl index bb0f2d9..0b10737 100644 --- a/src/egs_game.erl +++ b/src/egs_game.erl @@ -452,7 +452,7 @@ event(mission_abort, Client=#client{gid=GID}) -> event({mission_start, QuestID}, Client) -> log("mission start ~b", [QuestID]), psu_proto:send_1020(Client), - psu_game:send_1015(QuestID), + psu_proto:send_1015(QuestID, Client), psu_proto:send_0c02(Client); %% @doc Force the invite of an NPC character while inside a mission. Mostly used by story missions. diff --git a/src/psu/psu_game.erl b/src/psu/psu_game.erl index c03165a..a2e1322 100644 --- a/src/psu/psu_game.erl +++ b/src/psu/psu_game.erl @@ -332,13 +332,6 @@ send_1004(Type, User, PartyPos) -> 16#01000000:32, 16#01000000:32, %% @todo first is current hp, second is max hp 0:608 >>). -%% @doc Send the mission's quest file when starting a new mission. -%% @todo Handle correctly. 0:32 is actually a missing value. Value before that is unknown too. -send_1015(QuestID) -> - QuestData = egs_quests_db:quest_nbl(QuestID), - Size = byte_size(QuestData), - send(<< (header(16#1015))/binary, QuestID:32/little, 16#01010000:32, 0:32, Size:32/little, QuestData/binary >>). - %% @todo No idea. send_1016(PartyPos) -> GID = get(gid), diff --git a/src/psu/psu_proto.erl b/src/psu/psu_proto.erl index ddf0319..efd2d53 100644 --- a/src/psu/psu_proto.erl +++ b/src/psu/psu_proto.erl @@ -1541,6 +1541,14 @@ send_100e({QuestID, ZoneID, MapID}, EntryID, AreaName, #client{socket=Socket, gi send_100f(NPCid, PartyPos, #client{socket=Socket, gid=DestGID}) -> packet_send(Socket, << 16#100f0300:32, 0:160, 16#00011300:32, DestGID:32/little, 0:64, NPCid:16/little, 1, PartyPos:8, PartyPos:32/little >>). +%% @doc Send the mission's quest file when starting a new mission. +%% @todo Handle correctly. 0:32 is actually a missing value. Value before that is unknown too. +%% @todo This packet hasn't been reviewed at all yet. +send_1015(QuestID, #client{socket=Socket, gid=DestGID}) -> + QuestData = egs_quests_db:quest_nbl(QuestID), + Size = byte_size(QuestData), + packet_send(Socket, << 16#10150300:32, 0:160, 16#00011300:32, DestGID:32/little, 0:64, QuestID:32/little, 16#01010000:32, 0:32, Size:32/little, QuestData/binary >>). + %% @doc Mission start related. send_1020(#client{socket=Socket, gid=DestGID}) -> packet_send(Socket, << 16#10200300:32, 16#ffff:16, 0:144, 16#00011300:32, DestGID:32/little, 0:64 >>).