AzerothCore 3.3.5a
OpenSource WoW Emulator
Loading...
Searching...
No Matches
Acore::HealthPctOrderPred Class Reference

#include "Unit.h"

Public Member Functions

 HealthPctOrderPred (bool ascending=true)
 
bool operator() (WorldObject const *objA, WorldObject const *objB) const
 
bool operator() (Unit const *a, Unit const *b) const
 

Private Attributes

bool const _ascending
 

Detailed Description

Constructor & Destructor Documentation

◆ HealthPctOrderPred()

Acore::HealthPctOrderPred::HealthPctOrderPred ( bool  ascending = true)
inline
2160: _ascending(ascending) { }
bool const _ascending
Definition: Unit.h:2179

Member Function Documentation

◆ operator()() [1/2]

bool Acore::HealthPctOrderPred::operator() ( Unit const *  a,
Unit const *  b 
) const
inline
2172 {
2173 float rA = a->GetMaxHealth() ? float(a->GetHealth()) / float(a->GetMaxHealth()) : 0.0f;
2174 float rB = b->GetMaxHealth() ? float(b->GetHealth()) / float(b->GetMaxHealth()) : 0.0f;
2175 return _ascending ? rA < rB : rA > rB;
2176 }

References _ascending, Unit::GetHealth(), and Unit::GetMaxHealth().

◆ operator()() [2/2]

bool Acore::HealthPctOrderPred::operator() ( WorldObject const *  objA,
WorldObject const *  objB 
) const
inline
2163 {
2164 Unit const* a = objA->ToUnit();
2165 Unit const* b = objB->ToUnit();
2166 float rA = (a && a->GetMaxHealth()) ? float(a->GetHealth()) / float(a->GetMaxHealth()) : 0.0f;
2167 float rB = (b && b->GetMaxHealth()) ? float(b->GetHealth()) / float(b->GetMaxHealth()) : 0.0f;
2168 return _ascending ? rA < rB : rA > rB;
2169 }
Unit * ToUnit()
Definition: Object.h:209
Definition: Unit.h:630
uint32 GetMaxHealth() const
Definition: Unit.h:1030
uint32 GetHealth() const
Definition: Unit.h:1029

References _ascending, Unit::GetHealth(), Unit::GetMaxHealth(), and Object::ToUnit().

Member Data Documentation

◆ _ascending

bool const Acore::HealthPctOrderPred::_ascending
private

Referenced by operator()().