psu_proto: Move mission_start to events.

This commit is contained in:
Loïc Hoguin 2010-08-21 17:24:38 +02:00
parent 647bd40b41
commit e275cc2c34
2 changed files with 24 additions and 9 deletions

View File

@ -624,6 +624,14 @@ event({item_unequip, ItemID, TargetGID, TargetLID, A, B}) ->
send(<< 16#01050300:32, 0:64, GID:32/little-unsigned-integer, 0:64, 16#00011300:32, GID:32/little-unsigned-integer, send(<< 16#01050300:32, 0:64, GID:32/little-unsigned-integer, 0:64, 16#00011300:32, GID:32/little-unsigned-integer,
0:64, TargetGID:32/little-unsigned-integer, TargetLID:32/little-unsigned-integer, ItemID, 2, Category, A, B:32/little-unsigned-integer >>); 0:64, TargetGID:32/little-unsigned-integer, TargetLID:32/little-unsigned-integer, ItemID, 2, Category, A, B:32/little-unsigned-integer >>);
%% @todo Forward the mission start to other players of the same party, whatever their location is.
event({mission_start, QuestID}) ->
log("mission start ~b", [QuestID]),
send_170c(),
send_1020(),
send_1015(QuestID),
send_0c02();
%% @todo Also happening a 1506 -> 1507? Only on first selection from menu. %% @todo Also happening a 1506 -> 1507? Only on first selection from menu.
%% @todo Also at the end send a 101a (NPC:16, PartyPos:16, ffffffff). Not sure about PartyPos. %% @todo Also at the end send a 101a (NPC:16, PartyPos:16, ffffffff). Not sure about PartyPos.
event({npc_invite, NPCid}) -> event({npc_invite, NPCid}) ->
@ -785,15 +793,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 Start mission handler.
%% @todo Forward the mission start to other players of the same party, whatever their location is.
handle(16#0c01, << QuestID:32/little-unsigned-integer >>) ->
log("start mission ~b", [QuestID]),
send_170c(),
send_1020(),
send_1015(QuestID),
send_0c02();
%% @doc Counter quests files request handler? Send huge number of quest files. %% @doc Counter quests files request handler? Send huge number of quest files.
%% @todo Handle correctly. %% @todo Handle correctly.
handle(16#0c05, _) -> handle(16#0c05, _) ->

View File

@ -223,6 +223,22 @@ parse(Size, 16#0b05, _Channel, _Data) ->
?ASSERT_EQ(Size, 8), ?ASSERT_EQ(Size, 8),
ignore; ignore;
parse(Size, 16#0c01, 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, QuestID: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),
{mission_start, QuestID};
parse(_Size, Command, Channel, Data) -> parse(_Size, Command, Channel, Data) ->
%% @todo log unknown command? %% @todo log unknown command?
%~ ignore. %~ ignore.