[8483] Implement glyph 43361.
[getmangos.git] / src / game / DuelHandler.cpp
blob0fa58ea2bf3b5bd5bfe67692b5c86c9bfc439f16
1 /*
2 * Copyright (C) 2005-2009 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
19 #include "Common.h"
20 #include "WorldPacket.h"
21 #include "WorldSession.h"
22 #include "Log.h"
23 #include "Opcodes.h"
24 #include "UpdateData.h"
25 #include "Player.h"
27 void WorldSession::HandleDuelAcceptedOpcode(WorldPacket& recvPacket)
29 uint64 guid;
30 Player *pl;
31 Player *plTarget;
33 if(!GetPlayer()->duel) // ignore accept from duel-sender
34 return;
36 recvPacket >> guid;
38 pl = GetPlayer();
39 plTarget = pl->duel->opponent;
41 if(pl == pl->duel->initiator || !plTarget || pl == plTarget || pl->duel->startTime != 0 || plTarget->duel->startTime != 0)
42 return;
44 //sLog.outDebug( "WORLD: received CMSG_DUEL_ACCEPTED" );
45 DEBUG_LOG("Player 1 is: %u (%s)", pl->GetGUIDLow(),pl->GetName());
46 DEBUG_LOG("Player 2 is: %u (%s)", plTarget->GetGUIDLow(),plTarget->GetName());
48 time_t now = time(NULL);
49 pl->duel->startTimer = now;
50 plTarget->duel->startTimer = now;
52 WorldPacket data(SMSG_DUEL_COUNTDOWN, 4);
53 data << (uint32)3000; // 3 seconds
54 pl->GetSession()->SendPacket(&data);
55 plTarget->GetSession()->SendPacket(&data);
58 void WorldSession::HandleDuelCancelledOpcode(WorldPacket& recvPacket)
60 //sLog.outDebug( "WORLD: received CMSG_DUEL_CANCELLED" );
62 // no duel requested
63 if(!GetPlayer()->duel)
64 return;
66 // player surrendered in a duel using /forfeit
67 if(GetPlayer()->duel->startTime != 0)
69 GetPlayer()->CombatStopWithPets(true);
70 if(GetPlayer()->duel->opponent)
71 GetPlayer()->duel->opponent->CombatStopWithPets(true);
73 GetPlayer()->CastSpell(GetPlayer(), 7267, true); // beg
74 GetPlayer()->DuelComplete(DUEL_WON);
75 return;
78 // player either discarded the duel using the "discard button"
79 // or used "/forfeit" before countdown reached 0
80 uint64 guid;
81 recvPacket >> guid;
83 GetPlayer()->DuelComplete(DUEL_INTERUPTED);