psu_proto: Move send_0d03 to psu_proto without reviewing it.
This commit is contained in:
parent
eaafdc213f
commit
dc77b8e804
@ -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.
|
||||
|
@ -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
|
||||
|
@ -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}) ->
|
||||
|
Loading…
Reference in New Issue
Block a user