psu_proto: Review and move send_1022 to psu_proto.

This commit is contained in:
Loïc Hoguin 2010-09-23 23:16:24 +02:00
parent dc55ec7a66
commit ca5f73bad1
3 changed files with 7 additions and 7 deletions

View File

@ -666,7 +666,7 @@ event(player_death, State=#state{gid=GID}) ->
User2 = User#egs_user_model{character=Char#characters{currenthp=NewHP}},
egs_user_model:write(User2),
psu_proto:send_0117(User2#egs_user_model{lid=0}, State),
psu_game:send_1022(NewHP);
psu_proto:send_1022(User2, State);
%% red screen with return to lobby choice:
%~ psu_proto:send_0111(User2, 3, 1, State);

View File

@ -639,12 +639,6 @@ send_101a(NPCid, PartyPos) ->
send_1020() ->
send(header(16#1020)).
%% @doc Update HP in the party members information on the left.
%% @todo Figure out more of it.
send_1022(HP) ->
GID = get(gid),
send(<< 16#10220300:32, 0:160, 16#00011300:32, GID:32/little-unsigned-integer, 0:64, HP:32/little-unsigned-integer, 0:32 >>).
%% @todo Boss related command.
send_110e(Data) ->
send(<< (header(16#110e))/binary, Data/binary, 0:32, 5:16/little-unsigned-integer, 12:16/little-unsigned-integer, 0:32, 260:32/little-unsigned-integer >>).

View File

@ -1320,6 +1320,12 @@ send_1006(EventID, State) ->
send_1006(EventID, PartyPos, #state{socket=Socket, gid=DestGID}) ->
packet_send(Socket, << 16#10060300:32, 16#ffff:16, 0:144, 16#00011300:32, DestGID:32/little, 0:64, EventID:8, PartyPos:8, 0:16 >>).
%% @doc Update HP in the party members information on the left.
%% @todo Handle PartyPos. Probably only pass HP later.
send_1022(#egs_user_model{character=#characters{currenthp=HP}}, #state{socket=Socket, gid=DestGID}) ->
PartyPos = 0,
packet_send(Socket, << 16#10220300:32, 16#ffff:16, 0:144, 16#00011300:32, DestGID:32/little, 0:64, HP:32/little, PartyPos:32/little >>).
%% @doc Available types handler. Enable all 16 types.
send_1a07(#state{socket=Socket, gid=DestGID, lid=DestLID}) ->
packet_send(Socket, << 16#1a070300:32, DestLID:16/little, 0:144, 16#00011300:32, DestGID:32/little, 0:160,