psu_proto: Move item_description_request to events.

This commit is contained in:
Loïc Hoguin 2010-08-23 00:10:12 +02:00
parent cf50b5a0a0
commit 8dba561f45
2 changed files with 20 additions and 5 deletions

View File

@ -596,6 +596,10 @@ event({counter_quest_options_request, CounterID}) ->
[{quests, _}, {bg, _}, {options, Options}] = proplists:get_value(CounterID, ?COUNTERS), [{quests, _}, {bg, _}, {options, Options}] = proplists:get_value(CounterID, ?COUNTERS),
send_0c10(Options); send_0c10(Options);
%% @todo Send something other than just "dammy".
event({item_description_request, ItemID}) ->
send_0a11(ItemID, "dammy");
%% @todo A and B are unknown. %% @todo A and B are unknown.
%% Melee uses a format similar to: AAAA--BBCCCC----DDDDDDDDEE----FF with %% Melee uses a format similar to: AAAA--BBCCCC----DDDDDDDDEE----FF with
%% AAAA the attack sound effect, BB the range, CCCC and DDDDDDDD unknown but related to angular range or similar, EE number of targets and FF the model. %% AAAA the attack sound effect, BB the range, CCCC and DDDDDDDD unknown but related to angular range or similar, EE number of targets and FF the model.
@ -866,11 +870,6 @@ handle(16#0a09, Data) ->
GID = get(gid), GID = get(gid),
send(<< 16#0a090300:32, 0:32, 16#00011300:32, GID:32/little-unsigned-integer, 0:64, 16#00011300:32, GID:32/little-unsigned-integer, 0:64, 16#00003300:32, 0:32 >>); send(<< 16#0a090300:32, 0:32, 16#00011300:32, GID:32/little-unsigned-integer, 0:64, 16#00011300:32, GID:32/little-unsigned-integer, 0:64, 16#00003300:32, 0:32 >>);
%% @doc Item description request.
%% @todo Send something other than just "dammy".
handle(16#0a10, << ItemID:32/unsigned-integer >>) ->
send_0a11(ItemID, "dammy");
%% @doc Set flag handler. Associate a new flag with the character. %% @doc Set flag handler. Associate a new flag with the character.
%% Just reply with a success value for now. %% Just reply with a success value for now.
%% @todo God save the flags. %% @todo God save the flags.

View File

@ -261,6 +261,22 @@ parse(Size, 16#0813, Channel, Data) ->
?ASSERT_EQ(VarJ, 16#ffffffff), ?ASSERT_EQ(VarJ, 16#ffffffff),
{npc_invite, NPCid}; {npc_invite, NPCid};
parse(Size, 16#0a10, Channel, Data) ->
<< _LID:16/little, VarA:16/little, VarB:32/little, VarC:32/little, VarD:32/little, VarE:32/little,
VarF:32/little, VarG:32/little, VarH:32/little, VarI:32/little, ItemID:32 >> = Data,
?ASSERT_EQ(Size, 48),
?ASSERT_EQ(Channel, 2),
?ASSERT_EQ(VarA, 0),
?ASSERT_EQ(VarB, 0),
?ASSERT_EQ(VarC, 0),
?ASSERT_EQ(VarD, 0),
?ASSERT_EQ(VarE, 0),
?ASSERT_EQ(VarF, 0),
?ASSERT_EQ(VarG, 0),
?ASSERT_EQ(VarH, 0),
?ASSERT_EQ(VarI, 0),
{item_description_request, ItemID};
parse(Size, 16#0b05, _Channel, _Data) -> parse(Size, 16#0b05, _Channel, _Data) ->
?ASSERT_EQ(Size, 8), ?ASSERT_EQ(Size, 8),
ignore; ignore;