mirror of
https://github.com/mod-playerbots/azerothcore-wotlk.git
synced 2026-02-14 07:53:44 +00:00
77 lines
2.2 KiB
C++
77 lines
2.2 KiB
C++
/*
|
|
* This file is part of the AzerothCore Project. See AUTHORS file for Copyright information
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify it
|
|
* under the terms of the GNU Affero General Public License as published by the
|
|
* Free Software Foundation; either version 3 of the License, or (at your
|
|
* option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful, but WITHOUT
|
|
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for
|
|
* more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License along
|
|
* with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#ifndef _ARENA_SCORE_H
|
|
#define _ARENA_SCORE_H
|
|
|
|
#include "BattlegroundScore.h"
|
|
#include "SharedDefines.h"
|
|
#include "StringFormat.h"
|
|
|
|
struct AC_GAME_API ArenaScore : public BattlegroundScore
|
|
{
|
|
friend class Arena;
|
|
|
|
protected:
|
|
ArenaScore(ObjectGuid playerGuid, TeamId team) :
|
|
BattlegroundScore(playerGuid), PvPTeamId(team == TEAM_ALLIANCE ? PVP_TEAM_ALLIANCE : PVP_TEAM_HORDE) { }
|
|
|
|
void AppendToPacket(WorldPacket& data) final;
|
|
void BuildObjectivesBlock(WorldPacket& data) final;
|
|
|
|
// For Logging purpose
|
|
std::string ToString() const override
|
|
{
|
|
return Acore::StringFormat("Damage done: {}, Healing done: {}, Killing blows: {}", DamageDone, HealingDone, KillingBlows);
|
|
}
|
|
|
|
uint8 PvPTeamId;
|
|
};
|
|
|
|
struct AC_GAME_API ArenaTeamScore
|
|
{
|
|
friend class Arena;
|
|
friend class Battleground;
|
|
|
|
protected:
|
|
ArenaTeamScore() = default;
|
|
virtual ~ArenaTeamScore() = default;
|
|
|
|
void Reset()
|
|
{
|
|
RatingChange = 0;
|
|
MatchmakerRating = 0;
|
|
TeamName = {};
|
|
}
|
|
|
|
void Assign(int32 ratingChange, uint32 matchMakerRating, std::string_view teamName)
|
|
{
|
|
RatingChange = ratingChange;
|
|
MatchmakerRating = matchMakerRating;
|
|
TeamName = std::string(teamName);
|
|
}
|
|
|
|
void BuildRatingInfoBlock(WorldPacket& data);
|
|
void BuildTeamInfoBlock(WorldPacket& data);
|
|
|
|
int32 RatingChange = 0;
|
|
uint32 MatchmakerRating = 0;
|
|
std::string TeamName{};
|
|
};
|
|
|
|
#endif // ACORE_ARENA_SCORE_H
|