psu_proto: Review and move send_0210 to psu_proto.

This commit is contained in:
Loïc Hoguin 2010-09-23 18:44:56 +02:00
parent c029f98deb
commit 578bef1018
2 changed files with 8 additions and 8 deletions

View File

@ -30,13 +30,14 @@
%% @todo Should wait for the 021c reply before doing area_change.
%% @todo Move this whole function directly to psu_proto, probably.
char_load(User) ->
State = #state{socket=User#egs_user_model.socket, gid=User#egs_user_model.id, lid=User#egs_user_model.lid},
send_0d01(User),
% 0246
send_0a0a((User#egs_user_model.character)#characters.inventory),
send_1006(5, 0),
send_1005((User#egs_user_model.character)#characters.name),
send_1006(12, 0),
send_0210(),
psu_proto:send_0210(State),
send_0222(),
send_1500(User),
send_1501(),
@ -324,13 +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 >>).
%% @doc Send the current UNIX time.
send_0210() ->
GID = get(gid),
CurrentTime = calendar:datetime_to_gregorian_seconds(calendar:now_to_universal_time(now()))
- calendar:datetime_to_gregorian_seconds({{1970, 1, 1}, {0, 0, 0}}),
send(<< 16#02100300:32, 16#ffff:16, 0:144, 16#00011300:32, GID:32/little, 0:96, CurrentTime:32/little-unsigned-integer >>).
%% @todo End of character loading. Just send it.
send_021b() ->
GID = get(gid),

View File

@ -1240,6 +1240,12 @@ send_020e(Filename, #state{socket=Socket}) ->
Size = byte_size(File),
packet_send(Socket, << 16#020e0300:32, 16#ffff:16, 0:272, Size:32/little, 0:32, File/binary, 0:32 >>).
%% @doc Send the current UNIX time.
send_0210(#state{socket=Socket, gid=DestGID, lid=DestLID}) ->
UnixTime = calendar:datetime_to_gregorian_seconds(calendar:now_to_universal_time(now()))
- calendar:datetime_to_gregorian_seconds({{1970, 1, 1}, {0, 0, 0}}),
packet_send(Socket, << 16#02100300:32, DestLID:16/little, 0:144, 16#00011300:32, DestGID:32/little, 0:96, UnixTime:32/little >>).
%% @todo No idea what this is doing.
send_0215(UnknownValue, #state{socket=Socket, gid=DestGID, lid=DestLID}) ->
packet_send(Socket, << 16#02150300:32, DestLID:16/little, 0:144, 16#00011300:32, DestGID:32/little, 0:64, UnknownValue:32/little >>).