From dc77b8e804a71e4f7950cad1d6eac06d6e79d1fa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lo=C3=AFc=20Hoguin?= Date: Sat, 26 Feb 2011 23:07:52 +0100 Subject: [PATCH] psu_proto: Move send_0d03 to psu_proto without reviewing it. --- src/egs_char_select.erl | 4 ++-- src/psu/psu_game.erl | 14 -------------- src/psu/psu_proto.erl | 15 +++++++++++++++ 3 files changed, 17 insertions(+), 16 deletions(-) diff --git a/src/egs_char_select.erl b/src/egs_char_select.erl index eff33b3..872b12a 100644 --- a/src/egs_char_select.erl +++ b/src/egs_char_select.erl @@ -42,9 +42,9 @@ raw(Command, _Data, Client) -> %% Events. %% @doc Character screen selection request and delivery. -event(char_select_request, #client{gid=GID}) -> +event(char_select_request, Client=#client{gid=GID}) -> Folder = egs_accounts:get_folder(GID), - psu_game:send_0d03(data_load(Folder, 0), data_load(Folder, 1), data_load(Folder, 2), data_load(Folder, 3)); + psu_proto:send_0d03(data_load(Folder, 0), data_load(Folder, 1), data_load(Folder, 2), data_load(Folder, 3), Client); %% @doc The options default to 0 for everything except brightness to 4. %% @todo Don't forget to check for the character's name. diff --git a/src/psu/psu_game.erl b/src/psu/psu_game.erl index 220247b..b263393 100644 --- a/src/psu/psu_game.erl +++ b/src/psu/psu_game.erl @@ -277,20 +277,6 @@ build_item_constants(#psu_trap_item{max_quantity=MaxQuantity}) -> build_item_constants(#psu_special_item{}) -> << 0:160 >>. -%% @doc Send the character list for selection. -%% @todo There's a few odd values blanked, also the last known location apparently. -send_0d03(Data0, Data1, Data2, Data3) -> - [{status, Status0}, {char, Char0}|_] = Data0, - [{status, Status1}, {char, Char1}|_] = Data1, - [{status, Status2}, {char, Char2}|_] = Data2, - [{status, Status3}, {char, Char3}|_] = Data3, - GID = get(gid), - send(<< 16#0d030300:32/unsigned-integer, 0:32, 16#00011300:32, GID:32/little, 0:64, 16#00011300:32, GID:32/little, 0:104, - Status0:8, 0:48, Char0/binary, 0:520, - Status1:8, 0:48, Char1/binary, 0:520, - Status2:8, 0:48, Char2/binary, 0:520, - Status3:8, 0:48, Char3/binary, 0:512 >>). - %% @todo Add a character (NPC or real) to the party members on the right of the screen. %% @todo NPCid is 65535 for normal characters. %% @todo Apparently the 4 location ids are set to 0 when inviting an NPC in the lobby - NPCs have their location set to 0 when in lobby; also odd value before PartyPos related to missions diff --git a/src/psu/psu_proto.erl b/src/psu/psu_proto.erl index 6ea702a..64bbcc8 100644 --- a/src/psu/psu_proto.erl +++ b/src/psu/psu_proto.erl @@ -1485,6 +1485,21 @@ send_0d01(Character, #client{socket=Socket, gid=DestGID}) -> 16#b7bce0c6:32, 16#7ff8f963:32, 16#3fd7ffff:32, 16#fff7ffff:32, 16#f3ff63e0:32, 16#1fe00000:32, 0:7744, OptionsBin/binary >>). +%% @doc Send the character list for selection. +%% @todo There's a few odd values blanked, also the last known location apparently. +%% @todo This packet hasn't been reviewed at all yet. +send_0d03(Data0, Data1, Data2, Data3, #client{socket=Socket, gid=DestGID}) -> + [{status, Status0}, {char, Char0}|_] = Data0, + [{status, Status1}, {char, Char1}|_] = Data1, + [{status, Status2}, {char, Char2}|_] = Data2, + [{status, Status3}, {char, Char3}|_] = Data3, + packet_send(Socket, << 16#0d030300:32, 0:32, 16#00011300:32, DestGID:32/little, 0:64, + 16#00011300:32, DestGID:32/little, 0:104, + Status0:8, 0:48, Char0/binary, 0:520, + Status1:8, 0:48, Char1/binary, 0:520, + Status2:8, 0:48, Char2/binary, 0:520, + Status3:8, 0:48, Char3/binary, 0:512 >>). + %% @doc Send the flags list. This is the whole list of available values, not the character's. %% Sent without fragmentation on official for unknown reasons. Do the same here. send_0d05(#client{socket=Socket, gid=DestGID}) ->