2008-10-18 17:17:44 +00:00
|
|
|
#ifndef THINGDEF_EXP_H
|
|
|
|
#define THINGDEF_EXP_H
|
|
|
|
|
|
|
|
/*
|
|
|
|
** thingdef_exp.h
|
|
|
|
**
|
|
|
|
** Expression evaluation
|
|
|
|
**
|
|
|
|
**---------------------------------------------------------------------------
|
|
|
|
** Copyright 2008 Christoph Oelckers
|
|
|
|
** All rights reserved.
|
|
|
|
**
|
|
|
|
** Redistribution and use in source and binary forms, with or without
|
|
|
|
** modification, are permitted provided that the following conditions
|
|
|
|
** are met:
|
|
|
|
**
|
|
|
|
** 1. Redistributions of source code must retain the above copyright
|
|
|
|
** notice, this list of conditions and the following disclaimer.
|
|
|
|
** 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
** notice, this list of conditions and the following disclaimer in the
|
|
|
|
** documentation and/or other materials provided with the distribution.
|
|
|
|
** 3. The name of the author may not be used to endorse or promote products
|
|
|
|
** derived from this software without specific prior written permission.
|
|
|
|
** 4. When not used as part of ZDoom or a ZDoom derivative, this code will be
|
|
|
|
** covered by the terms of the GNU General Public License as published by
|
|
|
|
** the Free Software Foundation; either version 2 of the License, or (at
|
|
|
|
** your option) any later version.
|
|
|
|
**
|
|
|
|
** THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
|
|
|
|
** IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
|
|
|
** OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
|
|
|
** IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
|
|
|
|
** INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
|
|
|
** NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
|
|
** DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
|
|
** THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
|
|
** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
|
|
|
** THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
**---------------------------------------------------------------------------
|
|
|
|
**
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "m_random.h"
|
|
|
|
|
|
|
|
#define CHECKRESOLVED() if (isresolved) return this; isresolved=true;
|
|
|
|
#define SAFE_DELETE(p) if (p!=NULL) { delete p; p=NULL; }
|
|
|
|
#define RESOLVE(p,c) if (p!=NULL) p = p->Resolve(c)
|
|
|
|
#define ABORT(p) if (!(p)) { delete this; return NULL; }
|
|
|
|
#define SAFE_RESOLVE(p,c) RESOLVE(p,c); ABORT(p)
|
|
|
|
|
2008-10-19 21:43:36 +00:00
|
|
|
extern PSymbolTable GlobalSymbols;
|
2008-10-18 17:17:44 +00:00
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
//
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
|
|
|
|
enum
|
|
|
|
{
|
|
|
|
MSG_WARNING,
|
|
|
|
MSG_ERROR,
|
|
|
|
MSG_DEBUG,
|
|
|
|
MSG_LOG,
|
|
|
|
MSG_DEBUGLOG
|
|
|
|
};
|
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
//
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
|
|
|
|
struct FScriptPosition
|
|
|
|
{
|
|
|
|
FString FileName;
|
|
|
|
int ScriptLine;
|
|
|
|
|
|
|
|
FScriptPosition()
|
|
|
|
{
|
|
|
|
ScriptLine=0;
|
|
|
|
}
|
|
|
|
FScriptPosition(const FScriptPosition &other)
|
|
|
|
{
|
|
|
|
FileName = other.FileName;
|
|
|
|
ScriptLine = other.ScriptLine;
|
|
|
|
}
|
|
|
|
FScriptPosition(FString fname, int line)
|
|
|
|
{
|
|
|
|
FileName = fname;
|
|
|
|
ScriptLine = line;
|
|
|
|
}
|
|
|
|
FScriptPosition(FScanner &sc)
|
|
|
|
{
|
|
|
|
FileName = sc.ScriptName;
|
|
|
|
ScriptLine = sc.GetMessageLine();
|
|
|
|
}
|
|
|
|
FScriptPosition &operator=(const FScriptPosition &other)
|
|
|
|
{
|
|
|
|
FileName = other.FileName;
|
|
|
|
ScriptLine = other.ScriptLine;
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
2008-10-19 21:43:36 +00:00
|
|
|
void Message(int severity, const char *message,...) const;
|
2008-10-18 17:17:44 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
//
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
|
|
|
|
struct FCompileContext
|
|
|
|
{
|
|
|
|
const PClass *cls;
|
2008-10-19 21:43:36 +00:00
|
|
|
bool lax;
|
|
|
|
|
|
|
|
|
|
|
|
PSymbol *FindInClass(FName identifier)
|
|
|
|
{
|
|
|
|
return cls? cls->Symbols.FindSymbol(identifier, true) : NULL;
|
|
|
|
}
|
|
|
|
PSymbol *FindGlobal(FName identifier)
|
|
|
|
{
|
|
|
|
return GlobalSymbols.FindSymbol(identifier, true);
|
|
|
|
}
|
2008-10-18 17:17:44 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
//
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
|
|
|
|
struct ExpVal
|
|
|
|
{
|
|
|
|
ExpValType Type;
|
|
|
|
union
|
|
|
|
{
|
|
|
|
int Int;
|
|
|
|
double Float;
|
2008-10-19 21:43:36 +00:00
|
|
|
void *pointer;
|
2008-10-18 17:17:44 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
int GetInt()
|
|
|
|
{
|
|
|
|
return Type == VAL_Int? Int : Type == VAL_Float? int(Float) : 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
double GetFloat()
|
|
|
|
{
|
|
|
|
return Type == VAL_Int? double(Int) : Type == VAL_Float? Float : 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool GetBool()
|
|
|
|
{
|
|
|
|
return Type == VAL_Int? !!Int : Type == VAL_Float? Float!=0. : false;
|
|
|
|
}
|
2008-10-19 21:43:36 +00:00
|
|
|
|
|
|
|
template<class T> T *GetPointer()
|
|
|
|
{
|
|
|
|
return Type == VAL_Object || Type == VAL_Pointer? (T*)pointer : NULL;
|
|
|
|
}
|
2008-10-18 17:17:44 +00:00
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
//
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
|
|
|
|
struct FxExpression
|
|
|
|
{
|
|
|
|
protected:
|
|
|
|
FxExpression(const FScriptPosition &pos)
|
|
|
|
{
|
|
|
|
isresolved = false;
|
|
|
|
ScriptPosition = pos;
|
|
|
|
}
|
|
|
|
public:
|
|
|
|
virtual FxExpression *Resolve(FCompileContext &ctx);
|
|
|
|
FxExpression *ResolveAsBoolean(FCompileContext &ctx)
|
|
|
|
{
|
|
|
|
// This will need more handling if other types than Int and Float are added
|
|
|
|
return Resolve(ctx);
|
|
|
|
}
|
|
|
|
|
2008-10-19 21:43:36 +00:00
|
|
|
virtual ExpVal EvalExpression (AActor *self);
|
2008-10-18 17:17:44 +00:00
|
|
|
virtual bool isConstant() const;
|
2008-10-19 21:43:36 +00:00
|
|
|
virtual void RequestAddress();
|
2008-10-18 17:17:44 +00:00
|
|
|
|
|
|
|
FScriptPosition ScriptPosition;
|
2008-10-19 21:43:36 +00:00
|
|
|
FExpressionType ValueType;
|
2008-10-18 17:17:44 +00:00
|
|
|
protected:
|
|
|
|
bool isresolved;
|
|
|
|
};
|
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
//
|
2008-10-18 20:41:51 +00:00
|
|
|
// FxIdentifier
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
|
|
|
|
class FxIdentifier : public FxExpression
|
|
|
|
{
|
|
|
|
FName Identifier;
|
|
|
|
|
|
|
|
public:
|
|
|
|
FxIdentifier(FName i, const FScriptPosition &p);
|
|
|
|
FxExpression *Resolve(FCompileContext&);
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
// FxDotIdentifier
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
|
|
|
|
class FxDotIdentifier : public FxExpression
|
|
|
|
{
|
|
|
|
FxExpression *container;
|
|
|
|
FName Identifier;
|
|
|
|
|
|
|
|
public:
|
|
|
|
FxDotIdentifier(FxExpression*, FName, const FScriptPosition &);
|
|
|
|
~FxDotIdentifier();
|
|
|
|
FxExpression *Resolve(FCompileContext&);
|
|
|
|
};
|
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
// FxClassDefaults
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
|
|
|
|
class FxClassDefaults : public FxExpression
|
|
|
|
{
|
|
|
|
FxExpression *obj;
|
|
|
|
|
|
|
|
public:
|
|
|
|
FxClassDefaults(FxExpression*, const FScriptPosition &);
|
|
|
|
~FxClassDefaults();
|
|
|
|
FxExpression *Resolve(FCompileContext&);
|
|
|
|
bool IsDefaultObject() const;
|
|
|
|
};
|
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
// FxConstant
|
2008-10-18 17:17:44 +00:00
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
|
|
|
|
class FxConstant : public FxExpression
|
|
|
|
{
|
|
|
|
ExpVal value;
|
|
|
|
|
|
|
|
public:
|
|
|
|
FxConstant(int val, const FScriptPosition &pos) : FxExpression(pos)
|
|
|
|
{
|
|
|
|
ValueType = value.Type = VAL_Int;
|
|
|
|
value.Int = val;
|
|
|
|
}
|
|
|
|
|
|
|
|
FxConstant(double val, const FScriptPosition &pos) : FxExpression(pos)
|
|
|
|
{
|
|
|
|
ValueType = value.Type = VAL_Float;
|
|
|
|
value.Float = val;
|
|
|
|
}
|
|
|
|
|
|
|
|
FxConstant(ExpVal cv, const FScriptPosition &pos) : FxExpression(pos)
|
|
|
|
{
|
|
|
|
value = cv;
|
|
|
|
ValueType = cv.Type;
|
|
|
|
}
|
2008-10-19 21:43:36 +00:00
|
|
|
|
|
|
|
static FxExpression *MakeConstant(PSymbol *sym, const FScriptPosition &pos);
|
2008-10-18 17:17:44 +00:00
|
|
|
|
|
|
|
bool isConstant() const
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
2008-10-19 21:43:36 +00:00
|
|
|
ExpVal EvalExpression (AActor *self);
|
2008-10-18 17:17:44 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
//
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
|
|
|
|
class FxIntCast : public FxExpression
|
|
|
|
{
|
|
|
|
FxExpression *basex;
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
|
|
|
FxIntCast(FxExpression *x);
|
|
|
|
~FxIntCast();
|
|
|
|
FxExpression *Resolve(FCompileContext&);
|
|
|
|
|
2008-10-19 21:43:36 +00:00
|
|
|
ExpVal EvalExpression (AActor *self);
|
2008-10-18 17:17:44 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
// FxSign
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
|
|
|
|
class FxPlusSign : public FxExpression
|
|
|
|
{
|
|
|
|
FxExpression *Operand;
|
|
|
|
|
|
|
|
public:
|
|
|
|
FxPlusSign(FxExpression*);
|
|
|
|
~FxPlusSign();
|
|
|
|
FxExpression *Resolve(FCompileContext&);
|
|
|
|
};
|
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
// FxSign
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
|
|
|
|
class FxMinusSign : public FxExpression
|
|
|
|
{
|
|
|
|
FxExpression *Operand;
|
|
|
|
|
|
|
|
public:
|
|
|
|
FxMinusSign(FxExpression*);
|
|
|
|
~FxMinusSign();
|
|
|
|
FxExpression *Resolve(FCompileContext&);
|
2008-10-19 21:43:36 +00:00
|
|
|
ExpVal EvalExpression (AActor *self);
|
2008-10-18 17:17:44 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
// FxUnaryNot
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
|
|
|
|
class FxUnaryNotBitwise : public FxExpression
|
|
|
|
{
|
|
|
|
FxExpression *Operand;
|
|
|
|
|
|
|
|
public:
|
|
|
|
FxUnaryNotBitwise(FxExpression*);
|
|
|
|
~FxUnaryNotBitwise();
|
|
|
|
FxExpression *Resolve(FCompileContext&);
|
2008-10-19 21:43:36 +00:00
|
|
|
ExpVal EvalExpression (AActor *self);
|
2008-10-18 17:17:44 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
// FxUnaryNot
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
|
|
|
|
class FxUnaryNotBoolean : public FxExpression
|
|
|
|
{
|
|
|
|
FxExpression *Operand;
|
|
|
|
|
|
|
|
public:
|
|
|
|
FxUnaryNotBoolean(FxExpression*);
|
|
|
|
~FxUnaryNotBoolean();
|
|
|
|
FxExpression *Resolve(FCompileContext&);
|
2008-10-19 21:43:36 +00:00
|
|
|
ExpVal EvalExpression (AActor *self);
|
2008-10-18 17:17:44 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
// FxBinary
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
|
|
|
|
class FxBinary : public FxExpression
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
int Operator;
|
|
|
|
FxExpression *left;
|
|
|
|
FxExpression *right;
|
|
|
|
|
|
|
|
FxBinary(int, FxExpression*, FxExpression*);
|
|
|
|
~FxBinary();
|
|
|
|
bool ResolveLR(FCompileContext& ctx, bool castnumeric);
|
|
|
|
};
|
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
// FxBinary
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
|
|
|
|
class FxAddSub : public FxBinary
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
|
|
|
|
FxAddSub(int, FxExpression*, FxExpression*);
|
|
|
|
FxExpression *Resolve(FCompileContext&);
|
2008-10-19 21:43:36 +00:00
|
|
|
ExpVal EvalExpression (AActor *self);
|
2008-10-18 17:17:44 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
// FxBinary
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
|
|
|
|
class FxMulDiv : public FxBinary
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
|
|
|
|
FxMulDiv(int, FxExpression*, FxExpression*);
|
|
|
|
FxExpression *Resolve(FCompileContext&);
|
2008-10-19 21:43:36 +00:00
|
|
|
ExpVal EvalExpression (AActor *self);
|
2008-10-18 17:17:44 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
// FxBinary
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
|
|
|
|
class FxCompareRel : public FxBinary
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
|
|
|
|
FxCompareRel(int, FxExpression*, FxExpression*);
|
|
|
|
FxExpression *Resolve(FCompileContext&);
|
2008-10-19 21:43:36 +00:00
|
|
|
ExpVal EvalExpression (AActor *self);
|
2008-10-18 17:17:44 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
// FxBinary
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
|
|
|
|
class FxCompareEq : public FxBinary
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
|
|
|
|
FxCompareEq(int, FxExpression*, FxExpression*);
|
|
|
|
FxExpression *Resolve(FCompileContext&);
|
2008-10-19 21:43:36 +00:00
|
|
|
ExpVal EvalExpression (AActor *self);
|
2008-10-18 17:17:44 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
// FxBinary
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
|
|
|
|
class FxBinaryInt : public FxBinary
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
|
|
|
|
FxBinaryInt(int, FxExpression*, FxExpression*);
|
|
|
|
FxExpression *Resolve(FCompileContext&);
|
2008-10-19 21:43:36 +00:00
|
|
|
ExpVal EvalExpression (AActor *self);
|
2008-10-18 17:17:44 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
// FxBinaryLogical
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
|
|
|
|
class FxBinaryLogical : public FxExpression
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
int Operator;
|
|
|
|
FxExpression *left;
|
|
|
|
FxExpression *right;
|
|
|
|
|
|
|
|
FxBinaryLogical(int, FxExpression*, FxExpression*);
|
|
|
|
~FxBinaryLogical();
|
|
|
|
FxExpression *Resolve(FCompileContext&);
|
|
|
|
|
2008-10-19 21:43:36 +00:00
|
|
|
ExpVal EvalExpression (AActor *self);
|
2008-10-18 17:17:44 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
// FxConditional
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
|
|
|
|
class FxConditional : public FxExpression
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
FxExpression *condition;
|
|
|
|
FxExpression *truex;
|
|
|
|
FxExpression *falsex;
|
|
|
|
|
|
|
|
FxConditional(FxExpression*, FxExpression*, FxExpression*);
|
|
|
|
~FxConditional();
|
|
|
|
FxExpression *Resolve(FCompileContext&);
|
|
|
|
|
2008-10-19 21:43:36 +00:00
|
|
|
ExpVal EvalExpression (AActor *self);
|
2008-10-18 17:17:44 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
//
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
|
|
|
|
class FxAbs : public FxExpression
|
|
|
|
{
|
|
|
|
FxExpression *val;
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
|
|
|
FxAbs(FxExpression *v);
|
|
|
|
~FxAbs();
|
|
|
|
FxExpression *Resolve(FCompileContext&);
|
|
|
|
|
2008-10-19 21:43:36 +00:00
|
|
|
ExpVal EvalExpression (AActor *self);
|
2008-10-18 17:17:44 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
//
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
|
|
|
|
class FxRandom : public FxExpression
|
|
|
|
{
|
|
|
|
FRandom * rng;
|
|
|
|
FxExpression *min, *max;
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
|
|
|
FxRandom(FRandom *, FxExpression *mi, FxExpression *ma, const FScriptPosition &pos);
|
|
|
|
~FxRandom();
|
|
|
|
FxExpression *Resolve(FCompileContext&);
|
|
|
|
|
2008-10-19 21:43:36 +00:00
|
|
|
ExpVal EvalExpression (AActor *self);
|
2008-10-18 17:17:44 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
//
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
|
|
|
|
class FxRandom2 : public FxExpression
|
|
|
|
{
|
|
|
|
FRandom * rng;
|
|
|
|
FxExpression *mask;
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
|
|
|
FxRandom2(FRandom *, FxExpression *m, const FScriptPosition &pos);
|
|
|
|
~FxRandom2();
|
|
|
|
FxExpression *Resolve(FCompileContext&);
|
|
|
|
|
2008-10-19 21:43:36 +00:00
|
|
|
ExpVal EvalExpression (AActor *self);
|
2008-10-18 17:17:44 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2008-10-19 21:43:36 +00:00
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
// FxGlobalVariable
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
|
|
|
|
class FxGlobalVariable : public FxExpression
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
PSymbolVariable *var;
|
|
|
|
bool AddressRequested;
|
|
|
|
|
|
|
|
FxGlobalVariable(PSymbolVariable*, const FScriptPosition&);
|
|
|
|
FxExpression *Resolve(FCompileContext&);
|
|
|
|
void RequestAddress();
|
|
|
|
ExpVal EvalExpression (AActor *self);
|
|
|
|
};
|
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
// FxClassMember
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
|
|
|
|
class FxClassMember : public FxExpression
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
FxExpression *classx;
|
|
|
|
PSymbolVariable *membervar;
|
|
|
|
bool AddressRequested;
|
|
|
|
|
|
|
|
FxClassMember(FxExpression*, PSymbolVariable*, const FScriptPosition&);
|
|
|
|
~FxClassMember();
|
|
|
|
FxExpression *Resolve(FCompileContext&);
|
|
|
|
void RequestAddress();
|
|
|
|
ExpVal EvalExpression (AActor *self);
|
|
|
|
};
|
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
// FxSelf
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
|
|
|
|
class FxSelf : public FxExpression
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
FxSelf(const FScriptPosition&);
|
|
|
|
FxExpression *Resolve(FCompileContext&);
|
|
|
|
ExpVal EvalExpression (AActor *self);
|
|
|
|
};
|
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
// FxArrayElement
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
|
|
|
|
class FxArrayElement : public FxExpression
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
FxExpression *Array;
|
|
|
|
FxExpression *index;
|
|
|
|
//bool AddressRequested;
|
|
|
|
|
|
|
|
FxArrayElement(FxExpression*, FxExpression*);
|
|
|
|
~FxArrayElement();
|
|
|
|
FxExpression *Resolve(FCompileContext&);
|
|
|
|
//void RequestAddress();
|
|
|
|
ExpVal EvalExpression (AActor *self);
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2008-10-21 18:10:50 +00:00
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
// FxFunctionCall
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
|
|
|
|
typedef TDeletingArray<FxExpression*> FArgumentList;
|
|
|
|
|
|
|
|
class FxFunctionCall : public FxExpression
|
|
|
|
{
|
|
|
|
FxExpression *Self;
|
|
|
|
FName MethodName;
|
|
|
|
FArgumentList *ArgList;
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
|
|
|
FxFunctionCall(FxExpression *self, FName methodname, FArgumentList *args, const FScriptPosition &pos);
|
|
|
|
~FxFunctionCall();
|
|
|
|
FxExpression *Resolve(FCompileContext&);
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
// FxActionSpecialCall
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
|
|
|
|
class FxActionSpecialCall : public FxExpression
|
|
|
|
{
|
|
|
|
FxExpression *Self;
|
|
|
|
int Special;
|
|
|
|
FArgumentList *ArgList;
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
|
|
|
FxActionSpecialCall(FxExpression *self, int special, FArgumentList *args, const FScriptPosition &pos);
|
|
|
|
~FxActionSpecialCall();
|
|
|
|
FxExpression *Resolve(FCompileContext&);
|
|
|
|
ExpVal EvalExpression (AActor *self);
|
|
|
|
};
|
|
|
|
|
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
// FxGlobalFunctionCall
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
|
|
|
|
class FxGlobalFunctionCall : public FxExpression
|
|
|
|
{
|
|
|
|
FName Name;
|
|
|
|
FArgumentList *ArgList;
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
|
|
|
FxGlobalFunctionCall(FName fname, FArgumentList *args, const FScriptPosition &pos);
|
|
|
|
~FxGlobalFunctionCall();
|
|
|
|
FxExpression *Resolve(FCompileContext&);
|
|
|
|
ExpVal EvalExpression (AActor *self);
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2008-10-19 21:43:36 +00:00
|
|
|
|
|
|
|
|
2008-10-18 17:17:44 +00:00
|
|
|
FxExpression *ParseExpression (FScanner &sc, PClass *cls);
|
2008-10-19 21:43:36 +00:00
|
|
|
int AddExpression (FxExpression *data);
|
2008-10-18 17:17:44 +00:00
|
|
|
|
|
|
|
|
2008-10-18 20:41:51 +00:00
|
|
|
#endif
|