psu_proto: Review and move send_1711 to psu_proto.

This commit is contained in:
Loïc Hoguin 2010-10-19 00:20:44 +02:00
parent 393ee96012
commit 8bcf1ba3c8
3 changed files with 7 additions and 7 deletions

View File

@ -304,13 +304,13 @@ event(counter_leave, State=#state{gid=GID}) ->
%% @doc Send the code for the background image to use. But there's more that should be sent though.
%% @todo Apparently background values 1 2 3 are never used on official servers. Find out why.
%% @todo Rename to counter_bg_request.
event({counter_options_request, CounterID}, _State) ->
event({counter_options_request, CounterID}, State) ->
log("counter options request ~p", [CounterID]),
Bg = case proplists:get_value(CounterID, ?COUNTERS) of
undefined -> egs_counters:bg(CounterID);
[{quests, _}, {bg, Background}|_Tail] -> Background
end,
psu_game:send_1711(Bg);
psu_proto:send_1711(Bg, State);
%% @todo Handle when the party already exists! And stop doing it wrong.
event(counter_party_info_request, #state{gid=GID}) ->

View File

@ -668,11 +668,6 @@ send_170c() ->
{ok, File} = file:read_file("p/packet170c.bin"),
send(<< (header(16#170c))/binary, File/binary >>).
%% @doc Send the background to use for the counter.
%% @todo Background has more info past the first byte.
send_1711(Background) ->
send(<< (header(16#1711))/binary, Background:32/little-unsigned-integer >>).
%% @doc PP cube handler.
%% @todo The 4 bytes before the file may vary. Everything past that is the same. Figure things out.
send_1a04() ->

View File

@ -1430,6 +1430,11 @@ send_1022(#egs_user_model{character=#characters{currenthp=HP}}, #state{socket=So
send_1204(#state{socket=Socket, gid=DestGID}) ->
packet_send(Socket, << 16#12040300:32, 0:160, 16#00011300:32, DestGID:32/little, 0:96, 16#20000000:32, 0:256 >>).
%% @doc Send the background to use for the counter.
%% @todo Handle LID properly.
send_1711(Bg, #state{socket=Socket, gid=DestGID}) ->
packet_send(Socket, << 16#17110300:32, 0:160, 16#00011300:32, DestGID:32/little, 0:64, Bg:8, 0:24 >>).
%% @doc NPC shop request reply.
%% @todo Handle the LID properly.
send_1a02(A, B, C, D, #state{socket=Socket, gid=DestGID}) ->