mirror of
https://github.com/ZDoom/gzdoom-gles.git
synced 2024-11-11 07:12:16 +00:00
- Added FDARI's A_JumpIf CheckClass submission.
- bool CheckClass(string classname, int ptr_select = aaptr_default, bool match_superclass = false)
This commit is contained in:
parent
79d9a573bb
commit
6586fa29fd
2 changed files with 77 additions and 0 deletions
|
@ -298,6 +298,7 @@ xx(Abs)
|
|||
xx(ACS_NamedExecuteWithResult)
|
||||
xx(CallACS)
|
||||
xx(Sqrt)
|
||||
xx(CheckClass)
|
||||
|
||||
// Various actor names which are used internally
|
||||
xx(MapSpot)
|
||||
|
|
|
@ -43,6 +43,8 @@
|
|||
#include "tarray.h"
|
||||
#include "thingdef.h"
|
||||
#include "thingdef_exp.h"
|
||||
#include "actor.h"
|
||||
#include "actorptrselect.h"
|
||||
|
||||
static TMap<FName, FxGlobalFunctionCall::Creator> CreatorMap;
|
||||
|
||||
|
@ -185,3 +187,77 @@ public:
|
|||
|
||||
GLOBALFUNCTION_ADDER(Sqrt);
|
||||
|
||||
//==========================================================================
|
||||
//
|
||||
// Function: checkclass
|
||||
//
|
||||
//==========================================================================
|
||||
|
||||
class FxGlobalFunctionCall_CheckClass : public FxGlobalFunctionCall
|
||||
{
|
||||
public:
|
||||
GLOBALFUNCTION_DEFINE(CheckClass);
|
||||
|
||||
FxExpression *Resolve(FCompileContext& ctx)
|
||||
{
|
||||
CHECKRESOLVED();
|
||||
|
||||
if (!ResolveArgs(ctx, 1, 3, false))
|
||||
return NULL;
|
||||
|
||||
for (int i = ArgList->Size(); i > 1;)
|
||||
{
|
||||
if (!(*ArgList)[--i]->ValueType.isNumeric())
|
||||
{
|
||||
ScriptPosition.Message(MSG_ERROR, "numeric value expected for parameter");
|
||||
delete this;
|
||||
return NULL;
|
||||
}
|
||||
}
|
||||
|
||||
switch ((*ArgList)[0]->ValueType.Type)
|
||||
{
|
||||
case VAL_Class: case VAL_Name:break;
|
||||
default:
|
||||
ScriptPosition.Message(MSG_ERROR, "actor class expected for parameter");
|
||||
delete this;
|
||||
return NULL;
|
||||
}
|
||||
|
||||
ValueType = VAL_Float;
|
||||
return this;
|
||||
}
|
||||
|
||||
ExpVal EvalExpression(AActor *self)
|
||||
{
|
||||
ExpVal ret;
|
||||
ret.Type = VAL_Int;
|
||||
|
||||
const PClass * checkclass;
|
||||
{
|
||||
ExpVal v = (*ArgList)[0]->EvalExpression(self);
|
||||
checkclass = v.GetClass();
|
||||
if (!checkclass)
|
||||
{
|
||||
checkclass = PClass::FindClass(v.GetName());
|
||||
if (!checkclass) { ret.Int = 0; return ret; }
|
||||
}
|
||||
}
|
||||
|
||||
bool match_superclass = false;
|
||||
int pick_pointer = AAPTR_DEFAULT;
|
||||
|
||||
switch (ArgList->Size())
|
||||
{
|
||||
case 3: match_superclass = (*ArgList)[2]->EvalExpression(self).GetBool();
|
||||
case 2: pick_pointer = (*ArgList)[1]->EvalExpression(self).GetInt();
|
||||
}
|
||||
|
||||
self = COPY_AAPTR(self, pick_pointer);
|
||||
if (!self){ ret.Int = 0; return ret; }
|
||||
ret.Int = match_superclass ? checkclass->IsAncestorOf(self->GetClass()) : checkclass == self->GetClass();
|
||||
return ret;
|
||||
}
|
||||
};
|
||||
|
||||
GLOBALFUNCTION_ADDER(CheckClass);
|
Loading…
Reference in a new issue