mirror of
https://github.com/mod-playerbots/mod-playerbots.git
synced 2026-01-15 18:00:27 +00:00
72 lines
2.0 KiB
C++
72 lines
2.0 KiB
C++
/*
|
|
* Copyright (C) 2016+ AzerothCore <www.azerothcore.org>, released under GNU GPL v2 license, you may redistribute it and/or modify it under version 2 of the License, or (at your option), any later version.
|
|
*/
|
|
|
|
#ifndef _PLAYERBOT_PVPVALUES_H
|
|
#define _PLAYERBOT_PVPVALUES_H
|
|
|
|
#include "NamedObjectContext.h"
|
|
#include "SharedDefines.h"
|
|
#include "Value.h"
|
|
|
|
class PlayerbotAI;
|
|
class Unit;
|
|
|
|
class BgTypeValue : public ManualSetValue<uint32>
|
|
{
|
|
public:
|
|
BgTypeValue(PlayerbotAI* botAI) : ManualSetValue<uint32>(botAI, 0, "bg type") { }
|
|
};
|
|
|
|
class ArenaTypeValue : public ManualSetValue<uint32>
|
|
{
|
|
public:
|
|
ArenaTypeValue(PlayerbotAI* botAI) : ManualSetValue<uint32>(botAI, 0, "arena type") { }
|
|
};
|
|
|
|
class BgRoleValue : public ManualSetValue<uint32>
|
|
{
|
|
public:
|
|
BgRoleValue(PlayerbotAI* botAI) : ManualSetValue<uint32>(botAI, 0, "bg role") { }
|
|
};
|
|
|
|
class BgMastersValue : public SingleCalculatedValue<std::vector<CreatureData const*>>, public Qualified
|
|
{
|
|
public:
|
|
BgMastersValue(PlayerbotAI* botAI) : SingleCalculatedValue<std::vector<CreatureData const*>>(botAI, "bg masters") { }
|
|
|
|
std::vector<CreatureData const*> Calculate() override;
|
|
};
|
|
|
|
class BgMasterValue : public CDPairCalculatedValue, public Qualified
|
|
{
|
|
public:
|
|
BgMasterValue(PlayerbotAI* botAI) : CDPairCalculatedValue(botAI, "bg master", 60) { }
|
|
|
|
CreatureData const* Calculate() override;
|
|
CreatureData const* NearestBm(bool allowDead = true);
|
|
};
|
|
|
|
class RpgBgTypeValue : public CalculatedValue<BattlegroundTypeId>
|
|
{
|
|
public:
|
|
RpgBgTypeValue(PlayerbotAI* botAI) : CalculatedValue(botAI, "rpg bg type") { }
|
|
|
|
BattlegroundTypeId Calculate() override;
|
|
};
|
|
|
|
class FlagCarrierValue : public UnitCalculatedValue
|
|
{
|
|
public:
|
|
FlagCarrierValue(PlayerbotAI* botAI, bool sameTeam = false, bool ignoreRange = false) :
|
|
UnitCalculatedValue(botAI), sameTeam(sameTeam), ignoreRange(ignoreRange) { }
|
|
|
|
Unit* Calculate() override;
|
|
|
|
private:
|
|
bool sameTeam;
|
|
bool ignoreRange;
|
|
};
|
|
|
|
#endif
|