psu_proto: Move lobby_transport_request to events.

This commit is contained in:
Loïc Hoguin 2010-08-21 17:59:59 +02:00
parent 435e075680
commit efa743a465
2 changed files with 21 additions and 5 deletions

View File

@ -630,6 +630,10 @@ 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,
0:64, TargetGID:32/little-unsigned-integer, TargetLID:32/little-unsigned-integer, ItemID, 2, Category, A, B:32/little-unsigned-integer >>);
%% @todo Just ignore the meseta price for now and send the player where he wanna be!
event(lobby_transport_request) ->
send_0c08(true);
%% @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]),
@ -799,11 +803,6 @@ handle(16#0a09, Data) ->
handle(16#0a10, << ItemID:32/unsigned-integer >>) ->
send_0a11(ItemID, "dammy");
%% @doc Lobby transport handler? Just ignore the meseta price for now and send the player where he wanna be!
%% @todo Handle correctly.
handle(16#0c07, _) ->
send_0c08(true);
%% @doc Abort mission handler.
%% Replenish the player HP.
handle(16#0c0e, _) ->

View File

@ -255,6 +255,23 @@ parse(Size, 16#0c05, Channel, Data) ->
?ASSERT_EQ(VarI, 0),
{counter_quest_files_request, CounterID};
%% @doc On official, Price = Rate x 200.
parse(Size, 16#0c07, 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, _Rate:32/little >> = Data,
?ASSERT_EQ(Size, 52),
?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),
lobby_transport_request;
parse(_Size, Command, Channel, Data) ->
%% @todo log unknown command?
%~ ignore.