2 * Copyright (C) 2005-2010 MaNGOS <http://getmangos.com/>
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 2 of the License, or
7 * (at your option) any later version.
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
20 #include "Database/DatabaseEnv.h"
21 #include "WorldPacket.h"
22 #include "WorldSession.h"
25 #include "ObjectMgr.h"
27 #include "UpdateMask.h"
29 #include "WaypointMovementGenerator.h"
30 #include "DestinationHolderImp.h"
32 void WorldSession::HandleTaxiNodeStatusQueryOpcode( WorldPacket
& recv_data
)
34 sLog
.outDebug( "WORLD: Received CMSG_TAXINODE_STATUS_QUERY" );
39 SendTaxiStatus( guid
);
42 void WorldSession::SendTaxiStatus( uint64 guid
)
45 Creature
*unit
= GetPlayer()->GetMap()->GetCreature(guid
);
48 sLog
.outDebug( "WorldSession::SendTaxiStatus - Unit (GUID: %u) not found.", uint32(GUID_LOPART(guid
)) );
52 uint32 curloc
= sObjectMgr
.GetNearestTaxiNode(unit
->GetPositionX(),unit
->GetPositionY(),unit
->GetPositionZ(),unit
->GetMapId(),GetPlayer( )->GetTeam());
58 sLog
.outDebug( "WORLD: current location %u ",curloc
);
60 WorldPacket
data( SMSG_TAXINODE_STATUS
, 9 );
62 data
<< uint8( GetPlayer( )->m_taxi
.IsTaximaskNodeKnown(curloc
) ? 1 : 0 );
64 sLog
.outDebug( "WORLD: Sent SMSG_TAXINODE_STATUS" );
67 void WorldSession::HandleTaxiQueryAvailableNodes( WorldPacket
& recv_data
)
69 sLog
.outDebug( "WORLD: Received CMSG_TAXIQUERYAVAILABLENODES" );
75 Creature
*unit
= GetPlayer()->GetNPCIfCanInteractWith(guid
, UNIT_NPC_FLAG_FLIGHTMASTER
);
78 sLog
.outDebug( "WORLD: HandleTaxiQueryAvailableNodes - Unit (GUID: %u) not found or you can't interact with him.", uint32(GUID_LOPART(guid
)) );
83 if(GetPlayer()->hasUnitState(UNIT_STAT_DIED
))
84 GetPlayer()->RemoveSpellsCausingAura(SPELL_AURA_FEIGN_DEATH
);
86 // unknown taxi node case
87 if( SendLearnNewTaxiNode(unit
) )
90 // known taxi node case
94 void WorldSession::SendTaxiMenu( Creature
* unit
)
97 uint32 curloc
= sObjectMgr
.GetNearestTaxiNode(unit
->GetPositionX(),unit
->GetPositionY(),unit
->GetPositionZ(),unit
->GetMapId(),GetPlayer( )->GetTeam());
102 sLog
.outDebug( "WORLD: CMSG_TAXINODE_STATUS_QUERY %u ",curloc
);
104 WorldPacket
data( SMSG_SHOWTAXINODES
, (4+8+4+8*4) );
106 data
<< uint64( unit
->GetGUID() );
107 data
<< uint32( curloc
);
108 GetPlayer()->m_taxi
.AppendTaximaskTo(data
,GetPlayer()->isTaxiCheater());
111 sLog
.outDebug( "WORLD: Sent SMSG_SHOWTAXINODES" );
114 void WorldSession::SendDoFlight( uint32 mountDisplayId
, uint32 path
, uint32 pathNode
)
117 if (GetPlayer()->hasUnitState(UNIT_STAT_DIED
))
118 GetPlayer()->RemoveSpellsCausingAura(SPELL_AURA_FEIGN_DEATH
);
120 while(GetPlayer()->GetMotionMaster()->GetCurrentMovementGeneratorType()==FLIGHT_MOTION_TYPE
)
121 GetPlayer()->GetMotionMaster()->MovementExpired(false);
124 GetPlayer()->Mount( mountDisplayId
);
126 GetPlayer()->GetMotionMaster()->MoveTaxiFlight(path
,pathNode
);
129 bool WorldSession::SendLearnNewTaxiNode( Creature
* unit
)
132 uint32 curloc
= sObjectMgr
.GetNearestTaxiNode(unit
->GetPositionX(),unit
->GetPositionY(),unit
->GetPositionZ(),unit
->GetMapId(),GetPlayer( )->GetTeam());
135 return true; // `true` send to avoid WorldSession::SendTaxiMenu call with one more curlock seartch with same false result.
137 if( GetPlayer()->m_taxi
.SetTaximaskNode(curloc
) )
139 WorldPacket
msg(SMSG_NEW_TAXI_PATH
, 0);
142 WorldPacket
update( SMSG_TAXINODE_STATUS
, 9 );
143 update
<< uint64( unit
->GetGUID() );
144 update
<< uint8( 1 );
145 SendPacket( &update
);
153 void WorldSession::HandleActivateTaxiExpressOpcode ( WorldPacket
& recv_data
)
155 sLog
.outDebug( "WORLD: Received CMSG_ACTIVATETAXIEXPRESS" );
160 recv_data
>> guid
>> node_count
;
162 Creature
*npc
= GetPlayer()->GetNPCIfCanInteractWith(guid
, UNIT_NPC_FLAG_FLIGHTMASTER
);
165 sLog
.outDebug( "WORLD: HandleActivateTaxiExpressOpcode - Unit (GUID: %u) not found or you can't interact with it.", uint32(GUID_LOPART(guid
)) );
168 std::vector
<uint32
> nodes
;
170 for(uint32 i
= 0; i
< node_count
; ++i
)
174 nodes
.push_back(node
);
180 sLog
.outDebug( "WORLD: Received CMSG_ACTIVATETAXIEXPRESS from %d to %d" ,nodes
.front(),nodes
.back());
182 GetPlayer()->ActivateTaxiPathTo(nodes
, npc
);
185 void WorldSession::HandleMoveSplineDoneOpcode(WorldPacket
& recv_data
)
187 sLog
.outDebug( "WORLD: Received CMSG_MOVE_SPLINE_DONE" );
189 uint64 guid
; // used only for proper packet read
190 if(!recv_data
.readPackGUID(guid
))
193 MovementInfo
movementInfo(recv_data
); // used only for proper packet read
195 recv_data
.read_skip
<uint32
>(); // unk
198 // in taxi flight packet received in 2 case:
199 // 1) end taxi path in far (multi-node) flight
200 // 2) switch from one map to other in case multi-map taxi path
201 // we need process only (1)
202 uint32 curDest
= GetPlayer()->m_taxi
.GetTaxiDestination();
206 TaxiNodesEntry
const* curDestNode
= sTaxiNodesStore
.LookupEntry(curDest
);
209 if(curDestNode
&& curDestNode
->map_id
!= GetPlayer()->GetMapId())
211 if(GetPlayer()->GetMotionMaster()->GetCurrentMovementGeneratorType()==FLIGHT_MOTION_TYPE
)
213 // short preparations to continue flight
214 FlightPathMovementGenerator
* flight
= (FlightPathMovementGenerator
*)(GetPlayer()->GetMotionMaster()->top());
216 flight
->SetCurrentNodeAfterTeleport();
217 Path::PathNode
const& node
= flight
->GetPath()[flight
->GetCurrentNode()];
218 flight
->SkipCurrentNode();
220 GetPlayer()->TeleportTo(curDestNode
->map_id
,node
.x
,node
.y
,node
.z
,GetPlayer()->GetOrientation());
225 uint32 destinationnode
= GetPlayer()->m_taxi
.NextTaxiDestination();
226 if ( destinationnode
> 0 ) // if more destinations to go
228 // current source node for next destination
229 uint32 sourcenode
= GetPlayer()->m_taxi
.GetTaxiSource();
231 // Add to taximask middle hubs in taxicheat mode (to prevent having player with disabled taxicheat and not having back flight path)
232 if (GetPlayer()->isTaxiCheater())
234 if(GetPlayer()->m_taxi
.SetTaximaskNode(sourcenode
))
236 WorldPacket
data(SMSG_NEW_TAXI_PATH
, 0);
237 _player
->GetSession()->SendPacket( &data
);
241 sLog
.outDebug( "WORLD: Taxi has to go from %u to %u", sourcenode
, destinationnode
);
243 uint32 mountDisplayId
= sObjectMgr
.GetTaxiMountDisplayId(sourcenode
, GetPlayer()->GetTeam());
246 sObjectMgr
.GetTaxiPath( sourcenode
, destinationnode
, path
, cost
);
248 if(path
&& mountDisplayId
)
249 SendDoFlight( mountDisplayId
, path
, 1 ); // skip start fly node
251 GetPlayer()->m_taxi
.ClearTaxiDestinations(); // clear problematic path and next
254 GetPlayer()->m_taxi
.ClearTaxiDestinations(); // not destinations, clear source node
257 void WorldSession::HandleActivateTaxiOpcode( WorldPacket
& recv_data
)
259 sLog
.outDebug( "WORLD: Received CMSG_ACTIVATETAXI" );
262 std::vector
<uint32
> nodes
;
265 recv_data
>> guid
>> nodes
[0] >> nodes
[1];
266 sLog
.outDebug( "WORLD: Received CMSG_ACTIVATETAXI from %d to %d" ,nodes
[0],nodes
[1]);
267 Creature
*npc
= GetPlayer()->GetNPCIfCanInteractWith(guid
, UNIT_NPC_FLAG_FLIGHTMASTER
);
270 sLog
.outDebug( "WORLD: HandleActivateTaxiOpcode - Unit (GUID: %u) not found or you can't interact with it.", uint32(GUID_LOPART(guid
)) );
274 GetPlayer()->ActivateTaxiPathTo(nodes
, npc
);