psu_proto: Review and move send_021b to psu_proto.

This commit is contained in:
Loïc Hoguin 2010-09-23 18:53:58 +02:00
parent 578bef1018
commit 1f2f198f0c
2 changed files with 5 additions and 6 deletions

View File

@ -44,7 +44,7 @@ char_load(User) ->
send_1512(),
% 0303
send_1602(),
send_021b().
psu_proto:send_021b(State).
%% @doc Return the current season information.
area_get_season(QuestID) ->
@ -325,11 +325,6 @@ send_020f(Filename, SetID, SeasonID) ->
Size = byte_size(File),
send(<< 16#020f0300:32, 16#ffff:16, 0:272, SetID, SeasonID, 0:16, Size:32/little-unsigned-integer, File/binary >>).
%% @todo End of character loading. Just send it.
send_021b() ->
GID = get(gid),
send(<< 16#021b0300:32, 16#ffff:16, 0:144, 16#00011300:32, GID:32/little, 0:64 >>).
%% @doc Send the list of available universes.
send_021e() ->
{ok, Count} = egs_user_model:count(),

View File

@ -1254,6 +1254,10 @@ send_0215(UnknownValue, #state{socket=Socket, gid=DestGID, lid=DestLID}) ->
send_0216(IP, Port, #state{socket=Socket, gid=DestGID}) ->
packet_send(Socket, << 16#02160300:32, 16#ffff:16, 0:144, 16#00000f00:32, DestGID:32/little, 0:64, IP/binary, Port:16/little, 0:16 >>).
%% @todo End of character loading.
send_021b(#state{socket=Socket, gid=DestGID, lid=DestLID}) ->
packet_send(Socket, << 16#021b0300:32, DestLID:16/little, 0:144, 16#00011300:32, DestGID:32/little, 0:64 >>).
%% @doc Send the auth key, or, in case of failure, a related error message.
send_0223(AuthGID, AuthKey, #state{socket=Socket, gid=DestGID}) ->
packet_send(Socket, << 16#02230300:32, 0:160, 16#00000f00:32, DestGID:32/little, 0:64, AuthGID:32/little, AuthKey:32/bits >>).