1
0
mirror of https://github.com/VCMP-SqMod/SqMod.git synced 2024-11-08 00:37:15 +01:00

Implement function to retrieve all active forcefields.

This commit is contained in:
Sandu Liviu Catalin 2016-03-26 18:16:41 +02:00
parent ea9a370471
commit 054b4f080e

View File

@ -447,6 +447,7 @@ static const Object & Forcefield_FindByID(Int32 id)
return NullObject();
}
// ------------------------------------------------------------------------------------------------
static const Object & Forcefield_FindByTag(CSStr tag)
{
// Perform a validity check on the specified tag
@ -470,6 +471,35 @@ static const Object & Forcefield_FindByTag(CSStr tag)
return NullObject();
}
// ------------------------------------------------------------------------------------------------
static Array Forcefield_FindActive()
{
// Remember the initial stack size
StackGuard sg;
// Obtain the ends of the entity pool
Core::Forcefields::const_iterator itr = _Core->GetForcefields().cbegin();
Core::Forcefields::const_iterator end = _Core->GetForcefields().cend();
// Allocate an empty array on the stack
sq_newarray(DefaultVM::Get(), 0);
// Process each entity in the pool
for (; itr != end; ++itr)
{
// Is this entity instance active?
if (VALID_ENTITY(itr->mID))
{
// Push the script object on the stack
sq_pushobject(DefaultVM::Get(), (HSQOBJECT &)((*itr).mObj));
// Append the object at the back of the array
if (SQ_FAILED(sq_arrayappend(DefaultVM::Get(), -1)))
{
STHROWF("Unable to append entity instance to the list");
}
}
}
// Return the array at the top of the stack
return Var< Array >(DefaultVM::Get(), -1).value;
}
// ================================================================================================
void Register_CForcefield(HSQUIRRELVM vm)
{
@ -514,6 +544,7 @@ void Register_CForcefield(HSQUIRRELVM vm)
// Static Functions
.StaticFunc(_SC("FindByID"), &Forcefield_FindByID)
.StaticFunc(_SC("FindByTag"), &Forcefield_FindByTag)
.StaticFunc(_SC("FindActive"), &Forcefield_FindActive)
// Static Overloads
.StaticOverload< Object & (*)(CPlayer &, Int32, Float32, Float32, Float32, Uint8, Uint8, Uint8, Float32) >
(_SC("CreateEx"), &Forcefield_CreateEx)