Skip to content

Commit

Permalink
feat: add Unit:GetThreatList (#117)
Browse files Browse the repository at this point in the history
  • Loading branch information
r-o-b-o-t-o authored Apr 4, 2023
1 parent 8a85df8 commit 1407daa
Show file tree
Hide file tree
Showing 3 changed files with 41 additions and 0 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,7 @@ Eluna API for AC:
### Unit
- Added `Unit:ModifyThreatPct()`: https://github.com/azerothcore/mod-eluna/pull/25
- Added `Unit:GetAttackers()`: https://github.com/azerothcore/mod-eluna/pull/116
- Added `Unit:GetThreatList()`: https://github.com/azerothcore/mod-eluna/pull/117

### GameObject
- Added `GameObject:AddLoot()` to add loot at runtime to an **empty** container: https://github.com/azerothcore/mod-eluna/pull/52
Expand Down
1 change: 1 addition & 0 deletions src/LuaEngine/LuaFunctions.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -428,6 +428,7 @@ ElunaRegister<Unit> UnitMethods[] =
// {"RemoveBindSightAuras", &LuaUnit::RemoveBindSightAuras}, // :RemoveBindSightAuras() - UNDOCUMENTED
// {"RemoveCharmAuras", &LuaUnit::RemoveCharmAuras}, // :RemoveCharmAuras() - UNDOCUMENTED
{ "ClearThreatList", &LuaUnit::ClearThreatList },
{ "GetThreatList", &LuaUnit::GetThreatList },
{ "ClearUnitState", &LuaUnit::ClearUnitState },
{ "AddUnitState", &LuaUnit::AddUnitState },
// {"DisableMelee", &LuaUnit::DisableMelee}, // :DisableMelee([disable]) - UNDOCUMENTED - if true, enables
Expand Down
39 changes: 39 additions & 0 deletions src/LuaEngine/UnitMethods.h
Original file line number Diff line number Diff line change
Expand Up @@ -2037,6 +2037,45 @@ namespace LuaUnit
return 0;
}

/**
* Returns the [Unit]'s threat list.
*
* @return table threatList : table of [Unit]s in the threat list
*/
int GetThreatList(lua_State* L, Unit* unit)
{
if (!unit->CanHaveThreatList())
{
Eluna::Push(L);
return 1;
}

ThreatContainer::StorageType const& list = unit->GetThreatMgr().GetThreatList();

lua_newtable(L);
int table = lua_gettop(L);
uint32 i = 1;
for (ThreatReference* item : list)
{
if (!item)
{
continue;
}
Unit* victim = item->GetVictim();
if (!victim)
{
continue;
}

Eluna::Push(L, victim);
lua_rawseti(L, table, i);
++i;
}

lua_settop(L, table); // push table to top of stack
return 1;
}

/**
* Mounts the [Unit] on the given displayID/modelID.
*
Expand Down

0 comments on commit 1407daa

Please sign in to comment.