TrinityCore
KillRewarder.h
Go to the documentation of this file.
1/*
2 * This file is part of the TrinityCore Project. See AUTHORS file for Copyright information
3 *
4 * This program is free software; you can redistribute it and/or modify it
5 * under the terms of the GNU General Public License as published by the
6 * Free Software Foundation; either version 2 of the License, or (at your
7 * option) any later version.
8 *
9 * This program is distributed in the hope that it will be useful, but WITHOUT
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
12 * more details.
13 *
14 * You should have received a copy of the GNU General Public License along
15 * with this program. If not, see <http://www.gnu.org/licenses/>.
16 */
17
18#ifndef KillRewarder_h__
19#define KillRewarder_h__
20
21#include "Define.h"
22#include "IteratorPair.h"
23
24class Player;
25class Unit;
26class Group;
27
29{
30public:
31 KillRewarder(Trinity::IteratorPair<Player**> killers, Unit* victim, bool isBattleGround);
32
33 void Reward();
34
35private:
36 void _InitXP(Player* player, Player const* killer);
37 void _InitGroupData(Player const* killer);
38
39 void _RewardHonor(Player* player);
40 void _RewardXP(Player* player, float rate);
41 void _RewardReputation(Player* player, float rate);
42 void _RewardKillCredit(Player* player);
43 void _RewardPlayer(Player* player, bool isDungeon);
44 void _RewardGroup(Group const* group, Player const* killer);
45
56 bool _isPvP;
57};
58
59#endif // KillRewarder_h__
#define TC_GAME_API
Definition: Define.h:123
uint8_t uint8
Definition: Define.h:144
uint32_t uint32
Definition: Define.h:142
Definition: Group.h:197
uint8 _maxLevel
Definition: KillRewarder.h:54
uint32 _count
Definition: KillRewarder.h:50
Trinity::IteratorPair< Player ** > _killers
Definition: KillRewarder.h:46
float _groupRate
Definition: KillRewarder.h:48
uint32 _sumLevel
Definition: KillRewarder.h:51
Player * _maxNotGrayMember
Definition: KillRewarder.h:49
Unit * _victim
Definition: KillRewarder.h:47
bool _isBattleGround
Definition: KillRewarder.h:55
Definition: Unit.h:627