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
2648: _ascending(ascending) { }
bool const _ascending
Definition: Unit.h:2667

Member Function Documentation

◆ operator()() [1/2]

bool Acore::HealthPctOrderPred::operator() ( Unit const *  a,
Unit const *  b 
) const
inline
2660 {
2661 float rA = a->GetMaxHealth() ? float(a->GetHealth()) / float(a->GetMaxHealth()) : 0.0f;
2662 float rB = b->GetMaxHealth() ? float(b->GetHealth()) / float(b->GetMaxHealth()) : 0.0f;
2663 return _ascending ? rA < rB : rA > rB;
2664 }

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

◆ operator()() [2/2]

bool Acore::HealthPctOrderPred::operator() ( WorldObject const *  objA,
WorldObject const *  objB 
) const
inline
2651 {
2652 Unit const* a = objA->ToUnit();
2653 Unit const* b = objB->ToUnit();
2654 float rA = (a && a->GetMaxHealth()) ? float(a->GetHealth()) / float(a->GetMaxHealth()) : 0.0f;
2655 float rB = (b && b->GetMaxHealth()) ? float(b->GetHealth()) / float(b->GetMaxHealth()) : 0.0f;
2656 return _ascending ? rA < rB : rA > rB;
2657 }
Unit * ToUnit()
Definition: Object.h:200
Definition: Unit.h:1302
uint32 GetMaxHealth() const
Definition: Unit.h:1455
uint32 GetHealth() const
Definition: Unit.h:1454

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

Member Data Documentation

◆ _ascending

bool const Acore::HealthPctOrderPred::_ascending
private

Referenced by operator()().