psu_proto: Review and move send_0204 to psu_proto.
This commit is contained in:
parent
94ce201941
commit
31dc7ffb7f
@ -47,9 +47,8 @@ info({egs, player_spawn, _Player}, #state{gid=GID}) ->
|
||||
psu_game:send_0233(SpawnList);
|
||||
|
||||
%% @doc Inform the client that a player has unspawn.
|
||||
info({egs, player_unspawn, Player}, #state{gid=GID}) ->
|
||||
{ok, User} = egs_user_model:read(GID),
|
||||
psu_game:send_0204(User, Player, 5);
|
||||
info({egs, player_unspawn, Player}, State) ->
|
||||
psu_proto:send_0204(Player, State);
|
||||
|
||||
%% @doc Warp the player to the given location.
|
||||
info({egs, warp, QuestID, ZoneID, MapID, EntryID}, State) ->
|
||||
@ -703,6 +702,7 @@ event({object_warp_take, BlockID, ListNb, ObjectNb}, #state{gid=GID}) ->
|
||||
psu_game:send_0503(User#egs_user_model.pos),
|
||||
psu_game:send_1211(16#ffffffff, 0, 14, 0);
|
||||
|
||||
%% @todo Don't send_0204 if the player is removed from the party while in the lobby I guess.
|
||||
event({party_remove_member, PartyPos}, State=#state{gid=GID}) ->
|
||||
log("party remove member ~b", [PartyPos]),
|
||||
{ok, DestUser} = egs_user_model:read(GID),
|
||||
@ -714,7 +714,7 @@ event({party_remove_member, PartyPos}, State=#state{gid=GID}) ->
|
||||
_ -> ignore
|
||||
end,
|
||||
psu_proto:send_1006(8, PartyPos, State),
|
||||
psu_game:send_0204(DestUser, RemovedUser, 1),
|
||||
psu_proto:send_0204(RemovedUser, State),
|
||||
psu_proto:send_0215(0, State);
|
||||
|
||||
event({player_options_change, Options}, #state{gid=GID, slot=Slot}) ->
|
||||
|
@ -242,18 +242,6 @@ send_0113() ->
|
||||
GID = get(gid),
|
||||
send(<< 16#01130300:32, 0:64, GID:32/little-unsigned-integer, 0:64, 16#00011300:32, GID:32/little-unsigned-integer, 0:64, GID:32/little-unsigned-integer, File/binary >>).
|
||||
|
||||
%% @todo Not sure. Used for unspawning, and more.
|
||||
send_0204(DestUser, TargetUser, Action) ->
|
||||
DestGID = DestUser#egs_user_model.id,
|
||||
TargetTypeID = case (TargetUser#egs_user_model.character)#characters.type of
|
||||
npc -> 16#00001d00;
|
||||
_ -> 16#00001200
|
||||
end,
|
||||
#egs_user_model{id=TargetGID, lid=TargetLID} = TargetUser,
|
||||
send(<< 16#02040300:32, 0:32, TargetTypeID:32, TargetGID:32/little-unsigned-integer, 0:64,
|
||||
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 >>).
|
||||
|
||||
%% @todo No idea!
|
||||
send_022c(A, B) ->
|
||||
send(<< (header(16#022c))/binary, A:16/little-unsigned-integer, B:16/little-unsigned-integer >>).
|
||||
@ -418,6 +406,7 @@ send_0c09() ->
|
||||
send(<< (header(16#0c09))/binary, 0:64 >>).
|
||||
|
||||
%% @doc Send the counter's mission options (0 = invisible, 2 = disabled, 3 = available).
|
||||
%% @todo Remove this function when all the counters have been converted.
|
||||
send_0c10(Options) ->
|
||||
GID = get(gid),
|
||||
send(<< 16#0c100300:32, 0:32, 16#00011300:32, GID:32/little-unsigned-integer, 0:64,
|
||||
|
@ -1253,6 +1253,18 @@ send_0201(CharUser, #state{socket=Socket, gid=DestGID}) ->
|
||||
send_0202(#state{socket=Socket, gid=DestGID, lid=DestLID}) ->
|
||||
packet_send(Socket, << 16#020203bf:32, DestLID:16/little, 0:272, DestGID:32/little, 0:1024 >>).
|
||||
|
||||
%% @doc Unspawn the given character.
|
||||
%% @todo LID.
|
||||
%% @todo The last 4 bytes are probably the number of players remaining in the zone.
|
||||
send_0204(User, #state{socket=Socket, gid=DestGID}) ->
|
||||
CharTypeID = case (User#egs_user_model.character)#characters.type of
|
||||
npc -> 16#00001d00;
|
||||
_ -> 16#00001200
|
||||
end,
|
||||
#egs_user_model{id=CharGID, lid=CharLID} = User,
|
||||
packet_send(Socket, << 16#02040300:32, 0:32, CharTypeID:32, CharGID:32/little, 0:64,
|
||||
16#00011300:32, DestGID:32/little, 0:64, CharGID:32/little, CharLID:32/little, 100:32/little >>).
|
||||
|
||||
%% @doc Make the client load a new map.
|
||||
%% @todo We set a value of 1 and not 0 after EntryID because this value is never found to be 0.
|
||||
send_0205(CharUser, IsSeasonal, #state{socket=Socket, gid=DestGID, lid=DestLID, areanb=AreaNb}) ->
|
||||
|
Loading…
Reference in New Issue
Block a user