psu_proto: Review and move send_0208 to psu_proto.

This commit is contained in:
Loïc Hoguin 2010-09-25 16:18:33 +02:00
parent d73f284f0a
commit a93c620a17
3 changed files with 6 additions and 7 deletions

View File

@ -287,7 +287,7 @@ event({counter_enter, CounterID, FromZoneID, FromMapID, FromEntryID}, State=#sta
undefined -> ignore;
_ -> psu_game:send_022c(0, 16#12)
end,
psu_game:send_0208(),
psu_proto:send_0208(State),
psu_game:send_0236();
%% @doc Leave mission counter handler.

View File

@ -212,7 +212,7 @@ area_load(AreaType, IsStart, SetID, OldUser, User, QuestFile, ZoneFile, AreaName
undefined -> ignore;
_ -> send_022c(0, 16#12)
end,
send_0208(),
psu_proto:send_0208(State),
send_0236(),
if User#egs_user_model.partypid =/= undefined, AreaType =:= mission ->
{ok, NPCList} = psu_party:get_npc(User#egs_user_model.partypid),
@ -308,11 +308,6 @@ send_0204(DestUser, TargetUser, Action) ->
16#00011300:32, DestGID:32/little-unsigned-integer, 0:64, TargetGID:32/little-unsigned-integer,
TargetLID:32/little-unsigned-integer, Action:32/little-unsigned-integer >>).
%% @doc Indicate to the client that loading should finish.
%% @todo Last value seems to be 2 most of the time. Never 0 though. Apparently counters have it at 4.
send_0208() ->
send(<< (header(16#0208))/binary, 2:32/little-unsigned-integer >>).
%% @doc Send the list of available universes.
send_021e() ->
{ok, Count} = egs_user_model:count(),

View File

@ -1250,6 +1250,10 @@ send_0205(CharUser, IsSeasonal, #state{socket=Socket, gid=DestGID, lid=DestLID})
packet_send(Socket, << 16#02050300:32, DestLID:16/little, 0:144, 16#00011300:32, DestGID:32/little, 0:64,
16#ffffffff:32, ZoneID:32/little, MapID:32/little, EntryID:32/little, 1:32/little, 0:24, IsSeasonal:8 >>).
%% @doc Indicate to the client that loading should finish.
send_0208(#state{socket=Socket, gid=DestGID, lid=DestLID}) ->
packet_send(Socket, << 16#02080300:32, DestLID:16/little, 0:144, 16#00011300:32, DestGID:32/little, 0:64, 2:32/little >>).
%% @todo No idea what this one does. For unknown reasons it uses channel 2.
%% @todo Handle the DestLID properly?
send_020c(#state{socket=Socket}) ->