psu_proto: Move counter_quest_files_request to events.

This commit is contained in:
Loïc Hoguin 2010-08-21 17:42:31 +02:00
parent e275cc2c34
commit 435e075680
2 changed files with 22 additions and 9 deletions

View File

@ -569,6 +569,12 @@ event(counter_leave) ->
PrevArea = User#egs_user_model.prev_area, PrevArea = User#egs_user_model.prev_area,
area_load(PrevArea#psu_area.questid, PrevArea#psu_area.zoneid, PrevArea#psu_area.mapid, User#egs_user_model.prev_entryid); area_load(PrevArea#psu_area.questid, PrevArea#psu_area.zoneid, PrevArea#psu_area.mapid, User#egs_user_model.prev_entryid);
%% @doc Request the counter's quest files.
event({counter_quest_files_request, CounterID}) ->
log("counter quest files request ~p", [CounterID]),
[{quests, Filename}|_Tail] = proplists:get_value(CounterID, ?COUNTERS),
send_0c06(Filename);
%% @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.
@ -793,13 +799,6 @@ handle(16#0a09, Data) ->
handle(16#0a10, << ItemID:32/unsigned-integer >>) -> handle(16#0a10, << ItemID:32/unsigned-integer >>) ->
send_0a11(ItemID, "dammy"); send_0a11(ItemID, "dammy");
%% @doc Counter quests files request handler? Send huge number of quest files.
%% @todo Handle correctly.
handle(16#0c05, _) ->
{ok, User} = egs_user_model:read(get(gid)),
[{quests, Filename}, {bg, _}, {options, _}] = proplists:get_value(User#egs_user_model.counterid, ?COUNTERS),
send_0c06(Filename);
%% @doc Lobby transport handler? Just ignore the meseta price for now and send the player where he wanna be! %% @doc Lobby transport handler? Just ignore the meseta price for now and send the player where he wanna be!
%% @todo Handle correctly. %% @todo Handle correctly.
handle(16#0c07, _) -> handle(16#0c07, _) ->
@ -1423,8 +1422,6 @@ send_0d05() ->
%% @todo Apparently the 4 location ids are set to 0 when inviting an NPC in the lobby - NPCs have their location set to 0 when in lobby; also odd value before PartyPos related to missions %% @todo Apparently the 4 location ids are set to 0 when inviting an NPC in the lobby - NPCs have their location set to 0 when in lobby; also odd value before PartyPos related to missions
%% @todo Not sure about LID. But seems like it. %% @todo Not sure about LID. But seems like it.
send_1004(Type, User, PartyPos) -> send_1004(Type, User, PartyPos) ->
io:format("~p ~p", [User, PartyPos]),
[TypeID, LID, SomeFlag] = case Type of [TypeID, LID, SomeFlag] = case Type of
npc_mission -> [16#00001d00, PartyPos, 2]; npc_mission -> [16#00001d00, PartyPos, 2];
npc_invite -> [0, 16#ffffffff, 3]; npc_invite -> [0, 16#ffffffff, 3];

View File

@ -239,6 +239,22 @@ parse(Size, 16#0c01, Channel, Data) ->
?ASSERT_EQ(VarI, 0), ?ASSERT_EQ(VarI, 0),
{mission_start, QuestID}; {mission_start, QuestID};
parse(Size, 16#0c05, 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, CounterID:32/little >> = 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),
{counter_quest_files_request, CounterID};
parse(_Size, Command, Channel, Data) -> parse(_Size, Command, Channel, Data) ->
%% @todo log unknown command? %% @todo log unknown command?
%~ ignore. %~ ignore.