Merge pull request #428 from MajorCooke/A_CheckSPecies

Added A_CheckSpecies(state jump, name species, ptr = AAPTR_DEFAULT)
This commit is contained in:
coelckers 2016-01-27 16:45:16 +01:00
commit c5379c749e
2 changed files with 26 additions and 0 deletions

View file

@ -5122,6 +5122,31 @@ DEFINE_ACTION_FUNCTION_PARAMS(AActor, A_RadiusGive)
ACTION_SET_RESULT(given);
}
//===========================================================================
//
// A_CheckSpecies
//
//===========================================================================
DEFINE_ACTION_FUNCTION_PARAMS(AActor, A_CheckSpecies)
{
ACTION_PARAM_START(3);
ACTION_PARAM_STATE(jump, 0);
ACTION_PARAM_NAME(species, 1);
ACTION_PARAM_INT(ptr, 2);
AActor *mobj = COPY_AAPTR(self, ptr);
ACTION_SET_RESULT(false);
//Needs at least one state jump to work.
if (!mobj)
{
return;
}
if (jump && mobj->GetSpecies() == species)
ACTION_JUMP(jump);
}
//==========================================================================
//