Updated Copyright year to 2013
[getmangos.git] / src / game / BattleGround / BattleGroundIC.cpp
blob335669705e3589c5296e4e081c17b03dbc33d1ae
1 /*
2 * Copyright (C) 2005-2013 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 "Player.h"
20 #include "BattleGround.h"
21 #include "BattleGroundIC.h"
22 #include "Language.h"
24 BattleGroundIC::BattleGroundIC()
26 // TODO FIX ME!
27 m_StartMessageIds[BG_STARTING_EVENT_FIRST] = 0;
28 m_StartMessageIds[BG_STARTING_EVENT_SECOND] = LANG_BG_WS_START_ONE_MINUTE;
29 m_StartMessageIds[BG_STARTING_EVENT_THIRD] = LANG_BG_WS_START_HALF_MINUTE;
30 m_StartMessageIds[BG_STARTING_EVENT_FOURTH] = LANG_BG_WS_HAS_BEGUN;
33 BattleGroundIC::~BattleGroundIC()
38 void BattleGroundIC::Update(uint32 diff)
40 BattleGround::Update(diff);
43 void BattleGroundIC::StartingEventCloseDoors()
47 void BattleGroundIC::StartingEventOpenDoors()
51 void BattleGroundIC::AddPlayer(Player* plr)
53 BattleGround::AddPlayer(plr);
54 // create score and add it to map, default values are set in constructor
55 BattleGroundICScore* sc = new BattleGroundICScore;
57 m_PlayerScores[plr->GetObjectGuid()] = sc;
60 void BattleGroundIC::RemovePlayer(Player* /*plr*/, ObjectGuid /*guid*/)
65 void BattleGroundIC::HandleAreaTrigger(Player* /*source*/, uint32 /*trigger*/)
67 // this is wrong way to implement these things. On official it done by gameobject spell cast.
68 if (GetStatus() != STATUS_IN_PROGRESS)
69 return;
72 void BattleGroundIC::UpdatePlayerScore(Player* source, uint32 type, uint32 value)
75 BattleGroundScoreMap::iterator itr = m_PlayerScores.find(source->GetObjectGuid());
77 if (itr == m_PlayerScores.end()) // player not found...
78 return;
80 BattleGround::UpdatePlayerScore(source, type, value);