From dfa5634adb4bce18a5a598529f83fe239bd0f82e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lo=C3=AFc=20Hoguin?= Date: Sat, 26 Feb 2011 22:31:01 +0100 Subject: [PATCH] psu_proto: Move send_170c to psu_proto without reviewing it. --- src/egs_game.erl | 4 ++-- src/psu/psu_game.erl | 5 ----- src/psu/psu_proto.erl | 6 ++++++ 3 files changed, 8 insertions(+), 7 deletions(-) diff --git a/src/egs_game.erl b/src/egs_game.erl index 6384628..ebf27e2 100644 --- a/src/egs_game.erl +++ b/src/egs_game.erl @@ -239,8 +239,8 @@ event({chat, _FromTypeID, FromGID, _FromName, Modifiers, ChatMsg}, #client{gid=U egs_users:broadcast_all({egs, chat, UserGID, BcastTypeID, BcastGID, BcastName, Modifiers, ChatMsg}); %% @todo There's at least 9 different sets of locations. Handle all of them correctly. -event(counter_background_locations_request, _Client) -> - psu_game:send_170c(); +event(counter_background_locations_request, Client) -> + psu_proto:send_170c(Client); %% @todo Make sure non-mission counters follow the same loading process. %% @todo Probably validate the From* values, to not send the player back inside a mission. diff --git a/src/psu/psu_game.erl b/src/psu/psu_game.erl index 9a6d313..4691e01 100644 --- a/src/psu/psu_game.erl +++ b/src/psu/psu_game.erl @@ -375,11 +375,6 @@ send_1602() -> GID = get(gid), send(<< 16#16020300:32, 16#ffff:16, 0:144, 16#00011300:32, GID:32/little, 0:96, Bin/binary, 0:MiddlePaddingSize, NbNPC, 0:24, UCS2PMName/binary, 0:EndPaddingSize, 0:32 >>). -%% @todo Find what the heck this packet is. -send_170c() -> - {ok, File} = file:read_file("p/packet170c.bin"), - send(<< (header(16#170c))/binary, File/binary >>). - %% @doc PP cube handler. %% @todo The 4 bytes before the file may vary. Everything past that is the same. Figure things out. send_1a04() -> diff --git a/src/psu/psu_proto.erl b/src/psu/psu_proto.erl index 13779a3..117d5c4 100644 --- a/src/psu/psu_proto.erl +++ b/src/psu/psu_proto.erl @@ -1664,6 +1664,12 @@ send_1706(CharName, #client{socket=Socket, gid=DestGID}) -> send_170a(#client{socket=Socket, gid=DestGID}) -> packet_send(Socket, << 16#170a0300:32, 16#ffff:16, 0:144, 16#00011300:32, DestGID:32/little, 0:64, 16#01010c08:32 >>). +%% @todo Find what the heck this packet is. +%% @todo This packet hasn't been reviewed at all yet. +send_170c(#client{socket=Socket, gid=DestGID}) -> + {ok, File} = file:read_file("p/packet170c.bin"), + packet_send(Socket, << 16#170c0300:32, 16#ffff:16, 0:144, 16#00011300:32, DestGID:32/little, 0:64, File/binary >>). + %% @doc Send the background to use for the counter. send_1711(Bg, #client{socket=Socket, gid=DestGID, lid=DestLID}) -> packet_send(Socket, << 16#17110300:32, DestLID:16/little, 0:144, 16#00011300:32, DestGID:32/little, 0:64, Bg:8, 0:24 >>).