From c2adcb7018db398175c223f2013b48b4bf7a0c41 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lo=C3=AFc=20Hoguin?= Date: Sun, 12 Sep 2010 23:42:36 +0200 Subject: [PATCH] psu_game: Don't reload the area twice in story missions when the NPC follows. --- src/psu/psu_game.erl | 11 +++++++++-- src/psu/psu_proto.erl | 7 +++---- 2 files changed, 12 insertions(+), 6 deletions(-) diff --git a/src/psu/psu_game.erl b/src/psu/psu_game.erl index aefe9d9..ee0c3cc 100644 --- a/src/psu/psu_game.erl +++ b/src/psu/psu_game.erl @@ -543,8 +543,15 @@ events(Events) -> %% @todo When changing lobby to the room, 0230 must also be sent. Same when going from room to lobby. %% @todo Probably move area_load inside the event and make other events call this one when needed. event({area_change, QuestID, ZoneID, MapID, EntryID}) -> - log("area change (~b,~b,~b,~b)", [QuestID, ZoneID, MapID, EntryID]), - area_load(QuestID, ZoneID, MapID, EntryID); + event({area_change, QuestID, ZoneID, MapID, EntryID, 16#ffffffff}); +event({area_change, QuestID, ZoneID, MapID, EntryID, PartyPos}) -> + case PartyPos of + 16#ffffffff -> + log("area change (~b,~b,~b,~b,~b)", [QuestID, ZoneID, MapID, EntryID, PartyPos]), + area_load(QuestID, ZoneID, MapID, EntryID); + _Any -> %% @todo Handle area_change event for NPCs in story missions. + ignore + end; %% @doc Chat broadcast handler. Dispatch the message to everyone (for now). %% Disregard the name sent by the server. Use the name saved in memory instead, to prevent client-side editing. diff --git a/src/psu/psu_proto.erl b/src/psu/psu_proto.erl index d4afb7d..bbefea6 100644 --- a/src/psu/psu_proto.erl +++ b/src/psu/psu_proto.erl @@ -334,7 +334,7 @@ parse(Size, 16#0806, Channel, Data) -> parse(Size, 16#0807, 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, ZoneID:16/little, MapID:16/little, EntryID:16/little, _AreaChangeNb:16/little, VarJ:32/little >> = Data, + QuestID:32/little, ZoneID:16/little, MapID:16/little, EntryID:16/little, _AreaChangeNb:16/little, PartyPos:32/little >> = Data, ?ASSERT_EQ(Size, 60), ?ASSERT_EQ(Channel, 2), ?ASSERT_EQ(VarA, 0), @@ -346,8 +346,7 @@ parse(Size, 16#0807, Channel, Data) -> ?ASSERT_EQ(VarG, 0), ?ASSERT_EQ(VarH, 0), ?ASSERT_EQ(VarI, 0), - ?ASSERT_EQ(VarJ, 16#ffffffff), - {area_change, QuestID, ZoneID, MapID, EntryID}; + {area_change, QuestID, ZoneID, MapID, EntryID, PartyPos}; %% @todo Probably safely ignored. Still, figure out VarJ. It can be different than 2. parse(Size, 16#0808, Channel, Data) -> @@ -899,7 +898,7 @@ parse(Size, 16#0f0a, Channel, Data) -> ?ASSERT_EQ(VarV, 1), ?ASSERT_EQ(VarW, 0), ?ASSERT(), - ignore; %% @todo object_goggle_target_??? + ignore; %% @todo object_goggle_target_activate [56, 25] -> ?ASSERT_EQ(VarN, 16#ffffffff), ?ASSERT_EQ(VarO, 16#ffffffff),