psu_proto: Review and move send_020f to psu_proto.

This commit is contained in:
Loïc Hoguin 2010-09-25 15:57:15 +02:00
parent 821c6a5ac7
commit d73f284f0a
3 changed files with 8 additions and 8 deletions

View File

@ -270,7 +270,7 @@ event({counter_enter, CounterID, FromZoneID, FromMapID, FromEntryID}, State=#sta
psu_proto:send_0a05(State),
psu_proto:send_010d(User#egs_user_model{lid=0}, State),
psu_game:send_0200(mission),
psu_game:send_020f(ZoneFile, 0, 16#ff),
psu_proto:send_020f(ZoneFile, 0, 255, State),
psu_proto:send_0205(User, 0, State),
psu_game:send_100e(16#7fffffff, 0, 0, AreaName, CounterID),
psu_proto:send_0215(0, State),

View File

@ -163,7 +163,7 @@ area_load(AreaType, IsStart, SetID, OldUser, User, QuestFile, ZoneFile, AreaName
end,
psu_proto:send_010d(User#egs_user_model{lid=0}, State),
send_0200(AreaType),
send_020f(ZoneFile, SetID, SeasonID);
psu_proto:send_020f(ZoneFile, SetID, SeasonID, State);
true -> ignore
end,
psu_proto:send_0205(User, IsSeasonal, State),
@ -313,12 +313,6 @@ send_0204(DestUser, TargetUser, Action) ->
send_0208() ->
send(<< (header(16#0208))/binary, 2:32/little-unsigned-integer >>).
%% @doc Send the zone file to be loaded.
send_020f(Filename, SetID, SeasonID) ->
{ok, File} = file:read_file(Filename),
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 list of available universes.
send_021e() ->
{ok, Count} = egs_user_model:count(),

View File

@ -1262,6 +1262,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 zone file to be loaded.
send_020f(Filename, SetID, SeasonID, #state{socket=Socket}) ->
{ok, File} = file:read_file(Filename),
Size = byte_size(File),
packet_send(Socket, << 16#020f0300:32, 16#ffff:16, 0:272, SetID, SeasonID, 0:16, Size:32/little, File/binary >>).
%% @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()))