From 4faabbda8fb09a3061a47deff0da027f7b68e5f0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lo=C3=AFc=20Hoguin?= Date: Sat, 26 Feb 2011 22:25:06 +0100 Subject: [PATCH] psu_proto: Move send_1706 to psu_proto without reviewing it. --- src/egs_game.erl | 4 ++-- src/psu/psu_game.erl | 6 ------ src/psu/psu_proto.erl | 8 ++++++++ 3 files changed, 10 insertions(+), 8 deletions(-) diff --git a/src/egs_game.erl b/src/egs_game.erl index bf8339c..27c2ff8 100644 --- a/src/egs_game.erl +++ b/src/egs_game.erl @@ -302,9 +302,9 @@ event({counter_options_request, CounterID}, Client) -> psu_proto:send_1711(egs_counters_db:bg(CounterID), Client); %% @todo Handle when the party already exists! And stop doing it wrong. -event(counter_party_info_request, #client{gid=GID}) -> +event(counter_party_info_request, Client=#client{gid=GID}) -> {ok, User} = egs_users:read(GID), - psu_game:send_1706((User#users.character)#characters.name); + psu_proto:send_1706((User#users.character)#characters.name, Client); %% @todo Item distribution is always set to random for now. event(counter_party_options_request, _Client) -> diff --git a/src/psu/psu_game.erl b/src/psu/psu_game.erl index 04f7910..386aed9 100644 --- a/src/psu/psu_game.erl +++ b/src/psu/psu_game.erl @@ -375,12 +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 >>). -%% @doc Party information. -%% @todo Handle existing parties. -send_1706(CharName) -> - send(<< (header(16#1706))/binary, 16#00000300:32, 16#d5c0faff:32, 0:64, CharName/binary, - 16#78000000:32, 16#01010000:32, 0:1536, 16#0100c800:32, 16#0601010a:32, 16#ffffffff:32, 0:32 >>). - %% @doc Party settings. Item distribution is random for now. %% @todo Handle correctly. send_170a() -> diff --git a/src/psu/psu_proto.erl b/src/psu/psu_proto.erl index 4087b2c..c011cc4 100644 --- a/src/psu/psu_proto.erl +++ b/src/psu/psu_proto.erl @@ -1650,6 +1650,14 @@ send_1601(PartyPos, #client{socket=Socket, gid=DestGID}) -> send_1701(#client{socket=Socket, gid=DestGID}) -> packet_send(Socket, << 16#17010300:32, 0:160, 16#00011300:32, DestGID:32/little, 0:96 >>). +%% @doc Party information. +%% @todo Handle existing parties. +%% @todo This packet hasn't been reviewed at all yet. +send_1706(CharName, #client{socket=Socket, gid=DestGID}) -> + packet_send(Socket, << 16#17060300:32, 16#ffff:16, 0:144, 16#00011300:32, DestGID:32/little, 0:64, + 16#00000300:32, 16#d5c0faff:32, 0:64, CharName/binary, + 16#78000000:32, 16#01010000:32, 0:1536, 16#0100c800:32, 16#0601010a:32, 16#ffffffff:32, 0:32 >>). + %% @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 >>).