- Added Blue Shadow's DropInventory ACS function.

This commit is contained in:
MajorCooke 2014-09-19 17:27:18 -05:00
parent 33f83cc7f9
commit 16a380f82a
1 changed files with 37 additions and 0 deletions

View File

@ -4367,6 +4367,7 @@ enum EACSFunctions
ACSF_ChangeActorAngle,
ACSF_ChangeActorPitch, // 80
ACSF_GetArmorInfo,
ACSF_DropInventory,
/* Zandronum's - these must be skipped when we reach 99!
-100:ResetMap(0),
@ -5491,6 +5492,42 @@ doplaysound: if (funcIndex == ACSF_PlayActorSound)
break;
}
case ACSF_DropInventory:
{
const char *type = FBehavior::StaticLookupString(args[1]);
AInventory *inv;
if (type != NULL)
{
if (args[0] == 0)
{
if (activator != NULL)
{
inv = activator->FindInventory(type);
if (inv)
{
activator->DropInventory(inv);
}
}
}
else
{
FActorIterator it(args[0]);
AActor *actor;
while ((actor = it.Next()) != NULL)
{
inv = actor->FindInventory(type);
if (inv)
{
actor->DropInventory(inv);
}
}
}
}
break;
}
case ACSF_CheckFlag:
{
AActor *actor = SingleActorFromTID(args[0], activator);