psu_proto: Review and move send_0a11 to psu_proto.

This commit is contained in:
Loïc Hoguin 2010-09-25 03:27:07 +02:00
parent d311a85f30
commit 821c6a5ac7
3 changed files with 8 additions and 7 deletions

View File

@ -358,13 +358,13 @@ event({hits, Hits}, State) ->
events(Hits, State);
%% @todo Send something other than just "dammy".
event({item_description_request, ItemID}, _State) ->
event({item_description_request, ItemID}, State) ->
Filename = io_lib:format("priv/items/~8.16.0b.txt", [ItemID]),
Desc = case filelib:is_regular(Filename) of
false -> << << X:8, 0:8 >> || X <- "Always bet on Dammy." >>;
true -> {ok, File} = file:read_file(Filename), File
end,
psu_game:send_0a11(ItemID, Desc);
psu_proto:send_0a11(ItemID, Desc, State);
%% @todo A and B are unknown.
%% Melee uses a format similar to: AAAA--BBCCCC----DDDDDDDDEE----FF with

View File

@ -498,11 +498,6 @@ build_item_constants(#psu_trap_item{max_quantity=MaxQuantity}) ->
build_item_constants(#psu_special_item{}) ->
<< 0:160 >>.
%% @doc Item description.
send_0a11(ItemID, ItemDesc) ->
Size = 1 + byte_size(ItemDesc),
send(<< (header(16#0a11))/binary, ItemID:32/unsigned-integer, Size:32/little-unsigned-integer, ItemDesc/binary, 0:16 >>).
%% @todo Figure out last 4 bytes!
send_0c02() ->
send(<< (header(16#0c02))/binary, 0:32 >>).

View File

@ -1307,6 +1307,12 @@ send_0231(URL, #state{socket=Socket, gid=DestGID, lid=DestLID}) ->
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 >>).
%% @doc Send an item's description.
send_0a11(ItemID, ItemDesc, #state{socket=Socket, gid=DestGID, lid=DestLID}) ->
Length = 1 + byte_size(ItemDesc) div 2,
packet_send(Socket, << 16#0a110300:32, DestLID:16/little, 0:144, 16#00011300:32, DestGID:32/little, 0:64,
ItemID:32, Length:32/little, ItemDesc/binary, 0:16 >>).
%% @doc Quest init.
%% @todo When first entering a zone it seems LID should be set to ffff apparently.
send_0c00(CharUser, #state{socket=Socket, gid=DestGID, lid=DestLID}) ->