psu_proto: Review and move send_0236 to psu_proto.

This commit is contained in:
Loïc Hoguin 2010-09-25 19:29:47 +02:00
parent e494e14767
commit 44f39528b8
3 changed files with 7 additions and 7 deletions

View File

@ -290,7 +290,7 @@ event({counter_enter, CounterID, FromZoneID, FromMapID, FromEntryID}, State=#sta
end,
State3 = State2#state{areanb=State2#state.areanb + 1},
psu_proto:send_0208(State3),
psu_game:send_0236(),
psu_proto:send_0236(State3),
{ok, State3};
%% @doc Leave mission counter handler.

View File

@ -214,7 +214,7 @@ area_load(AreaType, IsStart, SetID, OldUser, User, QuestFile, ZoneFile, AreaName
end,
State3 = State2#state{areanb=State2#state.areanb + 1},
psu_proto:send_0208(State3),
send_0236(),
psu_proto:send_0236(State3),
if User#egs_user_model.partypid =/= undefined, AreaType =:= mission ->
{ok, NPCList} = psu_party:get_npc(User#egs_user_model.partypid),
npc_load(User, NPCList);
@ -364,11 +364,6 @@ build_0233_contents(Users) ->
Next = build_0233_contents(Rest),
<< Chunk/binary, Next/binary >>.
%% @doc Center the camera on the player, if possible.
%% @todo Probably.
send_0236() ->
send(header(16#0236)).
%% @doc Send a chat command.
send_0304(FromTypeID, FromGID, FromName, Modifiers, Message) ->
{chat_modifiers, ChatType, ChatCutIn, ChatCutInAngle, ChatMsgLength, ChatChannel, ChatCharacterType} = Modifiers,

View File

@ -1324,6 +1324,11 @@ send_0231(URL, #state{socket=Socket, gid=DestGID, lid=DestLID}) ->
packet_send(Socket, << 16#02310300:32, DestLID:16/little, 0:16, 16#00000f00:32, DestGID:32/little, 0:64,
16#00000f00:32, DestGID:32/little, 0:64, Length:32/little, URLBin/binary, 0:Padding >>).
%% @doc Start the zone handling: load the zone file and the objects sent separately.
%% @todo Handle the LID properly.
send_0236(#state{socket=Socket, gid=DestGID}) ->
packet_send(Socket, << 16#02360300:32, 0:160, 16#00011300:32, DestGID:32/little, 0:64 >>).
%% @todo Inventory related. Doesn't seem to do anything.
send_0a05(#state{socket=Socket, gid=DestGID, lid=DestLID}) ->
packet_send(Socket, << 16#0a050300:32, DestLID:16/little, 0:144, 16#00011300:32, DestGID:32/little, 0:64 >>).