TDME2 1.9.121
Classes | Public Types | Public Member Functions | Static Public Member Functions | Protected Member Functions | Protected Attributes | Private Member Functions | Static Private Member Functions | Private Attributes | Static Private Attributes | List of all members
MiniScript Class Reference

Miniscript. More...

#include <tdme/utilities/MiniScript.h>

Collaboration diagram for MiniScript:
Collaboration graph

Classes

struct  Script
 Script. More...
 
class  ScriptMethod
 Script method. More...
 
struct  ScriptState
 
class  ScriptStateMachineState
 Script State Machine State. More...
 
struct  ScriptStatement
 
struct  ScriptStatementOperator
 
class  ScriptVariable
 

Public Types

enum  ScriptOperator {
  OPERATOR_NONE , OPERATOR_NOT , OPERATOR_DIVISION , OPERATOR_MULTIPLICATION ,
  OPERATOR_REMAINDER , OPERATOR_ADDITION , OPERATOR_SUBTRACTION , OPERATOR_LESSER ,
  OPERATOR_LESSEREQUALS , OPERATOR_GREATER , OPERATOR_GREATEREQUALS , OPERATOR_EQUALS ,
  OPERATOR_NOTEQUAL , OPERATOR_AND , OPERATOR_OR , OPERATOR_SET ,
  OPERATOR_MAX
}
 
enum  StateMachineState { STATE_NONE = -1 , STATE_NEXT_STATEMENT , STATE_WAIT , STATE_WAIT_FOR_CONDITION }
 
enum  ScriptVariableType {
  TYPE_VOID , TYPE_BOOLEAN , TYPE_INTEGER , TYPE_FLOAT ,
  TYPE_STRING , TYPE_VECTOR3 , TYPE_TRANSFORMATIONS
}
 

Public Member Functions

 MiniScript ()
 Default constructor. More...
 
virtual ~MiniScript ()
 Destructor. More...
 
const string & getHash ()
 
const vector< Script > & getScripts ()
 
int getScriptState ()
 
void startErrorScript ()
 Start error script. More...
 
virtual void registerStateMachineStates ()
 Register state machine states. More...
 
virtual void registerMethods ()
 Register methods. More...
 
virtual void registerVariables ()
 Register variables. More...
 
void registerStateMachineState (ScriptStateMachineState *state)
 Register script state machine state. More...
 
void registerMethod (ScriptMethod *method)
 Register script method. More...
 
const ScriptVariable getVariable (const string &name)
 Returns variable with given name. More...
 
void setVariable (const string &name, const ScriptVariable &variable)
 Set script variable. More...
 
void unsetVariable (const string &name)
 Unset script variable. More...
 
void loadScript (const string &pathName, const string &fileName)
 Load script. More...
 
virtual void startScript ()
 Start script. More...
 
virtual void emit (const string &condition)
 Emit. More...
 
virtual void execute ()
 Execute. More...
 
bool isRunning ()
 
const string getInformation ()
 Get miniscript instance information. More...
 
bool transpile (string &generatedCode, int scriptIdx, const unordered_map< string, vector< string > > &methodCodeMap)
 Transpile a script statement. More...
 
bool transpileScriptCondition (string &generatedCode, int scriptIdx, const unordered_map< string, vector< string > > &methodCodeMap, const string &returnValue, const string &injectCode, int depth=0)
 Transpile a script condition. More...
 

Static Public Member Functions

static string getOperatorAsString (ScriptOperator scriptOperator)
 Get operator as string. More...
 
static bool hasType (const vector< ScriptVariable > &arguments, ScriptVariableType type)
 Check if arguments contain argument with given type. More...
 
template<std::size_t SIZE>
static bool hasType (const array< ScriptVariable, SIZE > &arguments, ScriptVariableType type)
 Check if arguments contain argument with given type. More...
 
static bool getBooleanValue (const vector< ScriptVariable > &arguments, int idx, bool &value, bool optional=false)
 Get boolean value from given variable. More...
 
template<std::size_t SIZE>
static bool getBooleanValue (const array< ScriptVariable, SIZE > &arguments, int idx, bool &value, bool optional=false)
 Get boolean value from given variable. More...
 
static bool getIntegerValue (const vector< ScriptVariable > &arguments, int idx, int64_t &value, bool optional=false)
 Get integer value from given variable. More...
 
template<std::size_t SIZE>
static bool getIntegerValue (const array< ScriptVariable, SIZE > &arguments, int idx, int64_t &value, bool optional=false)
 Get integer value from given variable. More...
 
static bool getFloatValue (const vector< ScriptVariable > &arguments, int idx, float &value, bool optional=false)
 Get float value from given variable. More...
 
template<std::size_t SIZE>
static bool getFloatValue (const array< ScriptVariable, SIZE > &arguments, int idx, float &value, bool optional=false)
 Get float value from given variable. More...
 
static bool getStringValue (const vector< ScriptVariable > &arguments, int idx, string &value, bool optional=false)
 Get string value from given variable. More...
 
template<std::size_t SIZE>
static bool getStringValue (const array< ScriptVariable, SIZE > &arguments, int idx, string &value, bool optional=false)
 Get string value from given variable. More...
 
static bool getVector3Value (const vector< ScriptVariable > &arguments, int idx, Vector3 &value, bool optional=false)
 Get vector3 value from given variable. More...
 
template<std::size_t SIZE>
static bool getVector3Value (const array< ScriptVariable, SIZE > &arguments, int idx, Vector3 &value, bool optional=false)
 Get vector3 value from given variable. More...
 
static bool getTransformationsValue (const vector< ScriptVariable > &arguments, int idx, Transformations &value, bool optional=false)
 Get transformations value from given variable. More...
 
template<std::size_t SIZE>
static bool getTransformationsValue (const array< ScriptVariable, SIZE > &arguments, int idx, Transformations &value, bool optional=false)
 Get transformations value from given variable. More...
 

Protected Member Functions

virtual void initializeNative ()
 Initialize native mini script. More...
 
bool getNative ()
 
void setNative (bool native)
 Set native. More...
 
void setHash (const string &hash)
 Set hash. More...
 
void gotoStatementGoto (const ScriptStatement &statement)
 Goto statement from given statements goto statement. More...
 
vector< ScriptgetNativeScripts ()
 
void setNativeScripts (const vector< Script > &nativeScripts)
 Set native scripts. More...
 
void executeStateMachine ()
 Execute state machine. More...
 
void resetScriptExecutationState (int scriptIdx, StateMachineState stateMachineState)
 Reset script execution state. More...
 
void stopScriptExecutation ()
 Stop script execution. More...
 
void setScriptState (int state)
 Set script state machine state. More...
 
virtual int determineScriptIdxToStart ()
 Determine script index to start. More...
 
virtual int determineNamedScriptIdxToStart ()
 Determine named script index to start. More...
 

Protected Attributes

string hash
 
bool native
 
vector< Scriptscripts
 
vector< ScriptnativeScripts
 
ScriptState scriptState
 

Private Member Functions

const string getArgumentsAsString (const vector< string_view > &arguments)
 Returns arguments as string placed in a vector of string_views. More...
 
void executeScriptLine ()
 Execute a single script line. More...
 
bool parseScriptStatement (const string_view &statement, string_view &method, vector< string_view > &arguments)
 Parse a script statement. More...
 
ScriptVariable executeScriptStatement (const string_view &method, const vector< string_view > &arguments, const ScriptStatement &statement)
 Execute a script statement. More...
 
bool getNextStatementOperator (const string &statement, ScriptStatementOperator &nextOperator)
 Determine next not substituted operator in statement. More...
 
const string trimArgument (const string &argument)
 Trim argument and remove unnessessary parenthesis. More...
 
const string findRightArgument (const string statement, int position, int &length)
 Find right argument in statement beginning from position. More...
 
const string findLeftArgument (const string statement, int position, int &length)
 Find left argument in statement beginning from position. More...
 
const string doStatementPreProcessing (const string &statement)
 Do statement pre processing, 1) replace operators with corresponding methods. More...
 
bool transpileScriptStatement (string &generatedCode, const string_view &method, const vector< string_view > &arguments, const ScriptStatement &statement, int scriptIdx, int &statementIdx, const unordered_map< string, vector< string > > &methodCodeMap, bool &scriptStateChanged, bool &scriptStopped, vector< string > &enabledNamedConditions, int depth=0, int argumentIdx=-1, int parentArgumentIdx=-1, const string &returnValue=string(), const string &injectCode=string(), int additionalIndent=0)
 Transpile script statement. More...
 

Static Private Member Functions

static const bool isOperatorChar (char c)
 Returns if char is operator char. More...
 

Private Attributes

unordered_map< string, ScriptMethod * > scriptMethods
 
unordered_map< int, ScriptStateMachineState * > scriptStateMachineStates
 
unordered_map< uint8_t, ScriptMethod * > scriptOperators
 
string scriptPathName
 
string scriptFileName
 
bool scriptValid { false }
 

Static Private Attributes

static constexpr bool VERBOSE { false }
 
static STATIC_DLL_IMPEXT string OPERATOR_CHARS = "!*/%+-<>&|="
 

Detailed Description

Miniscript.

Definition at line 40 of file MiniScript.h.

Member Enumeration Documentation

◆ ScriptOperator

Enumerator
OPERATOR_NONE 
OPERATOR_NOT 
OPERATOR_DIVISION 
OPERATOR_MULTIPLICATION 
OPERATOR_REMAINDER 
OPERATOR_ADDITION 
OPERATOR_SUBTRACTION 
OPERATOR_LESSER 
OPERATOR_LESSEREQUALS 
OPERATOR_GREATER 
OPERATOR_GREATEREQUALS 
OPERATOR_EQUALS 
OPERATOR_NOTEQUAL 
OPERATOR_AND 
OPERATOR_OR 
OPERATOR_SET 
OPERATOR_MAX 

Definition at line 42 of file MiniScript.h.

◆ ScriptVariableType

Enumerator
TYPE_VOID 
TYPE_BOOLEAN 
TYPE_INTEGER 
TYPE_FLOAT 
TYPE_STRING 
TYPE_VECTOR3 
TYPE_TRANSFORMATIONS 

Definition at line 85 of file MiniScript.h.

◆ StateMachineState

Enumerator
STATE_NONE 
STATE_NEXT_STATEMENT 
STATE_WAIT 
STATE_WAIT_FOR_CONDITION 

Definition at line 71 of file MiniScript.h.

Constructor & Destructor Documentation

◆ MiniScript()

Default constructor.

Definition at line 65 of file MiniScript.cpp.

◆ ~MiniScript()

~MiniScript ( )
virtual

Destructor.

Definition at line 69 of file MiniScript.cpp.

Member Function Documentation

◆ determineNamedScriptIdxToStart()

int determineNamedScriptIdxToStart ( )
protectedvirtual

Determine named script index to start.

Returns
script index or -1 if no script to start

Definition at line 816 of file MiniScript.cpp.

◆ determineScriptIdxToStart()

int determineScriptIdxToStart ( )
protectedvirtual

Determine script index to start.

Returns
script index or -1 if no script to start

Definition at line 756 of file MiniScript.cpp.

◆ doStatementPreProcessing()

const string doStatementPreProcessing ( const string &  statement)
private

Do statement pre processing, 1) replace operators with corresponding methods.

Parameters
statementstatement

Definition at line 1011 of file MiniScript.cpp.

◆ emit()

void emit ( const string &  condition)
virtual

Emit.

Parameters
conditioncondition

Definition at line 389 of file MiniScript.cpp.

◆ execute()

void execute ( )
virtual

Execute.

Definition at line 462 of file MiniScript.cpp.

◆ executeScriptLine()

void executeScriptLine ( )
private

Execute a single script line.

Definition at line 96 of file MiniScript.cpp.

◆ executeScriptStatement()

MiniScript::ScriptVariable executeScriptStatement ( const string_view &  method,
const vector< string_view > &  arguments,
const ScriptStatement statement 
)
private

Execute a script statement.

Parameters
methodmethod
argumentsarguments
statementstatement
Returns
return value as script variablle

Definition at line 254 of file MiniScript.cpp.

◆ executeStateMachine()

void executeStateMachine ( )
protected

Execute state machine.

Definition at line 416 of file MiniScript.cpp.

◆ findLeftArgument()

const string findLeftArgument ( const string  statement,
int  position,
int &  length 
)
private

Find left argument in statement beginning from position.

Parameters
statementstatement
positionposition
lengthargument length

Definition at line 974 of file MiniScript.cpp.

◆ findRightArgument()

const string findRightArgument ( const string  statement,
int  position,
int &  length 
)
private

Find right argument in statement beginning from position.

Parameters
statementstatement
positionposition
lengthargument length

Definition at line 937 of file MiniScript.cpp.

◆ getArgumentsAsString()

const string getArgumentsAsString ( const vector< string_view > &  arguments)
inlineprivate

Returns arguments as string placed in a vector of string_views.

Parameters
argumentsarguments
Returns
arguments as string

Definition at line 846 of file MiniScript.h.

◆ getBooleanValue() [1/2]

static bool getBooleanValue ( const array< ScriptVariable, SIZE > &  arguments,
int  idx,
bool &  value,
bool  optional = false 
)
inlinestatic

Get boolean value from given variable.

Parameters
argumentsarguments
idxargument index
valuevalue
optionaloptionalfalse
Returns
success

Definition at line 1069 of file MiniScript.h.

◆ getBooleanValue() [2/2]

static bool getBooleanValue ( const vector< ScriptVariable > &  arguments,
int  idx,
bool &  value,
bool  optional = false 
)
inlinestatic

Get boolean value from given variable.

Parameters
argumentsarguments
idxargument index
valuevalue
optionaloptionalfalse
Returns
success

Definition at line 1054 of file MiniScript.h.

◆ getFloatValue() [1/2]

static bool getFloatValue ( const array< ScriptVariable, SIZE > &  arguments,
int  idx,
float &  value,
bool  optional = false 
)
inlinestatic

Get float value from given variable.

Parameters
argumentsarguments
idxargument index
valuevalue
optionaloptional
Returns
success

Definition at line 1127 of file MiniScript.h.

◆ getFloatValue() [2/2]

static bool getFloatValue ( const vector< ScriptVariable > &  arguments,
int  idx,
float &  value,
bool  optional = false 
)
inlinestatic

Get float value from given variable.

Parameters
argumentsarguments
idxargument index
valuevalue
optionaloptional
Returns
success

Definition at line 1112 of file MiniScript.h.

◆ getHash()

const string & getHash ( )
inline
Returns
script hash

Definition at line 955 of file MiniScript.h.

◆ getInformation()

const string getInformation ( )

Get miniscript instance information.

Definition at line 1057 of file MiniScript.cpp.

◆ getIntegerValue() [1/2]

static bool getIntegerValue ( const array< ScriptVariable, SIZE > &  arguments,
int  idx,
int64_t &  value,
bool  optional = false 
)
inlinestatic

Get integer value from given variable.

Parameters
argumentsarguments
idxargument index
valuevalue
optionaloptional
Returns
success

Definition at line 1098 of file MiniScript.h.

◆ getIntegerValue() [2/2]

static bool getIntegerValue ( const vector< ScriptVariable > &  arguments,
int  idx,
int64_t &  value,
bool  optional = false 
)
inlinestatic

Get integer value from given variable.

Parameters
argumentsarguments
idxargument index
valuevalue
optionaloptional
Returns
success

Definition at line 1083 of file MiniScript.h.

◆ getNative()

bool getNative ( )
inlineprotected
Returns
if this script was compiled to C++ and is executed nativly

Definition at line 720 of file MiniScript.h.

◆ getNativeScripts()

vector< Script > getNativeScripts ( )
inlineprotected
Returns
native script

Definition at line 751 of file MiniScript.h.

◆ getNextStatementOperator()

bool getNextStatementOperator ( const string &  statement,
MiniScript::ScriptStatementOperator nextOperator 
)
private

Determine next not substituted operator in statement.

Parameters
statementstatement
nextOperatornext operator

Definition at line 872 of file MiniScript.cpp.

◆ getOperatorAsString()

static string getOperatorAsString ( ScriptOperator  scriptOperator)
inlinestatic

Get operator as string.

Parameters
scriptOperatorscript operator
Returns
script operator as string

Definition at line 1000 of file MiniScript.h.

◆ getScripts()

const vector< Script > & getScripts ( )
inline
Returns
scripts

Definition at line 962 of file MiniScript.h.

◆ getScriptState()

int getScriptState ( )
inline
Returns
script state machine state

Definition at line 969 of file MiniScript.h.

◆ getStringValue() [1/2]

static bool getStringValue ( const array< ScriptVariable, SIZE > &  arguments,
int  idx,
string &  value,
bool  optional = false 
)
inlinestatic

Get string value from given variable.

Parameters
argumentsarguments
idxargument index
valuevalue
optionaloptional
Returns
success

Definition at line 1156 of file MiniScript.h.

◆ getStringValue() [2/2]

static bool getStringValue ( const vector< ScriptVariable > &  arguments,
int  idx,
string &  value,
bool  optional = false 
)
inlinestatic

Get string value from given variable.

Parameters
argumentsarguments
idxargument index
valuevalue
optionaloptional
Returns
success

Definition at line 1141 of file MiniScript.h.

◆ getTransformationsValue() [1/2]

static bool getTransformationsValue ( const array< ScriptVariable, SIZE > &  arguments,
int  idx,
Transformations value,
bool  optional = false 
)
inlinestatic

Get transformations value from given variable.

Parameters
argumentsarguments
idxargument index
valuevalue
optionaloptional
Returns
success

Definition at line 1214 of file MiniScript.h.

◆ getTransformationsValue() [2/2]

static bool getTransformationsValue ( const vector< ScriptVariable > &  arguments,
int  idx,
Transformations value,
bool  optional = false 
)
inlinestatic

Get transformations value from given variable.

Parameters
argumentsarguments
idxargument index
valuevalue
optionaloptional
Returns
success

Definition at line 1199 of file MiniScript.h.

◆ getVariable()

const ScriptVariable getVariable ( const string &  name)
inline

Returns variable with given name.

Parameters
namename
Returns
variable

Definition at line 1237 of file MiniScript.h.

◆ getVector3Value() [1/2]

static bool getVector3Value ( const array< ScriptVariable, SIZE > &  arguments,
int  idx,
Vector3 value,
bool  optional = false 
)
inlinestatic

Get vector3 value from given variable.

Parameters
argumentsarguments
idxargument index
valuevalue
optionaloptional
Returns
success

Definition at line 1185 of file MiniScript.h.

◆ getVector3Value() [2/2]

static bool getVector3Value ( const vector< ScriptVariable > &  arguments,
int  idx,
Vector3 value,
bool  optional = false 
)
inlinestatic

Get vector3 value from given variable.

Parameters
argumentsarguments
idxargument index
valuevalue
optionaloptional
Returns
success

Definition at line 1170 of file MiniScript.h.

◆ gotoStatementGoto()

void gotoStatementGoto ( const ScriptStatement statement)
inlineprotected

Goto statement from given statements goto statement.

Parameters
statementstatement

Definition at line 744 of file MiniScript.h.

◆ hasType() [1/2]

static bool hasType ( const array< ScriptVariable, SIZE > &  arguments,
ScriptVariableType  type 
)
inlinestatic

Check if arguments contain argument with given type.

Parameters
argumentsarguments
typetype
Returns
has type

Definition at line 1041 of file MiniScript.h.

◆ hasType() [2/2]

static bool hasType ( const vector< ScriptVariable > &  arguments,
ScriptVariableType  type 
)
inlinestatic

Check if arguments contain argument with given type.

Parameters
argumentsarguments
typetype
Returns
has type

Definition at line 1029 of file MiniScript.h.

◆ initializeNative()

void initializeNative ( )
protectedvirtual

Initialize native mini script.

Definition at line 84 of file MiniScript.cpp.

◆ isOperatorChar()

static const bool isOperatorChar ( char  c)
inlinestaticprivate

Returns if char is operator char.

Parameters
cchar to test
Returns
if char is operator char

Definition at line 880 of file MiniScript.h.

◆ isRunning()

bool isRunning ( )
inline
Returns
is running

Definition at line 1312 of file MiniScript.h.

◆ loadScript()

void loadScript ( const string &  pathName,
const string &  fileName 
)

Load script.

Parameters
pathNamepath name
fileNamefile name

Definition at line 481 of file MiniScript.cpp.

◆ parseScriptStatement()

bool parseScriptStatement ( const string_view &  statement,
string_view &  method,
vector< string_view > &  arguments 
)
private

Parse a script statement.

Parameters
statementstatement
methodmethod
argumentsarguments
Returns
success

Definition at line 120 of file MiniScript.cpp.

◆ registerMethod()

void registerMethod ( ScriptMethod method)

Register script method.

Parameters
methodmethod

Definition at line 87 of file MiniScript.cpp.

◆ registerMethods()

void registerMethods ( )
virtual

Register methods.

Definition at line 1260 of file MiniScript.cpp.

◆ registerStateMachineState()

void registerStateMachineState ( ScriptStateMachineState state)

Register script state machine state.

Parameters
statestate

Definition at line 75 of file MiniScript.cpp.

◆ registerStateMachineStates()

void registerStateMachineStates ( )
virtual

Register state machine states.

Definition at line 1180 of file MiniScript.cpp.

◆ registerVariables()

void registerVariables ( )
virtual

Register variables.

Definition at line 3412 of file MiniScript.cpp.

◆ resetScriptExecutationState()

void resetScriptExecutationState ( int  scriptIdx,
StateMachineState  stateMachineState 
)
inlineprotected

Reset script execution state.

Parameters
scriptIdxscript index
stateMachineStatestate machine state

Definition at line 773 of file MiniScript.h.

◆ setHash()

void setHash ( const string &  hash)
inlineprotected

Set hash.

Parameters
hashhash

Definition at line 736 of file MiniScript.h.

◆ setNative()

void setNative ( bool  native)
inlineprotected

Set native.

Parameters
nativenative

Definition at line 728 of file MiniScript.h.

◆ setNativeScripts()

void setNativeScripts ( const vector< Script > &  nativeScripts)
inlineprotected

Set native scripts.

Parameters
nativenative scripts

Definition at line 759 of file MiniScript.h.

◆ setScriptState()

void setScriptState ( int  state)
inlineprotected

Set script state machine state.

Parameters
statestate

Definition at line 802 of file MiniScript.h.

◆ setVariable()

void setVariable ( const string &  name,
const ScriptVariable variable 
)
inline

Set script variable.

Parameters
namename
variablevariable

Definition at line 1255 of file MiniScript.h.

◆ startErrorScript()

void startErrorScript ( )
inline

Start error script.

Definition at line 976 of file MiniScript.h.

◆ startScript()

void startScript ( )
virtual

Start script.

Definition at line 743 of file MiniScript.cpp.

◆ stopScriptExecutation()

void stopScriptExecutation ( )
inlineprotected

Stop script execution.

Definition at line 789 of file MiniScript.h.

◆ transpile()

bool transpile ( string &  generatedCode,
int  scriptIdx,
const unordered_map< string, vector< string > > &  methodCodeMap 
)

Transpile a script statement.

Parameters
generatedCodegenerated code
scriptIdxscript index
methodCodeMapmethod code map
Returns
success

Definition at line 3683 of file MiniScript.cpp.

◆ transpileScriptCondition()

bool transpileScriptCondition ( string &  generatedCode,
int  scriptIdx,
const unordered_map< string, vector< string > > &  methodCodeMap,
const string &  returnValue,
const string &  injectCode,
int  depth = 0 
)

Transpile a script condition.

Parameters
generatedCodegenerated code
scriptIdxscript index
methodCodeMapmethod code map
returnValuereturn value
injectCodeinject code
Returns
success

Definition at line 3783 of file MiniScript.cpp.

◆ transpileScriptStatement()

bool transpileScriptStatement ( string &  generatedCode,
const string_view &  method,
const vector< string_view > &  arguments,
const ScriptStatement statement,
int  scriptIdx,
int &  statementIdx,
const unordered_map< string, vector< string > > &  methodCodeMap,
bool &  scriptStateChanged,
bool &  scriptStopped,
vector< string > &  enabledNamedConditions,
int  depth = 0,
int  argumentIdx = -1,
int  parentArgumentIdx = -1,
const string &  returnValue = string(),
const string &  injectCode = string(),
int  additionalIndent = 0 
)
private

Transpile script statement.

Parameters
generatedCodegenerated code
methodmethod
argumentsarguments
statementscript statement
scriptIdxscript index
statementIdxstatement index
methodCodeMapmethod code map
scriptStateChangedscript could have state changed
scriptStoppedscript could have been stopped
enabledNamedConditionsenabled named conditions
depthdepth
argumentIdxargument index
parentArgumentIdxparent argument index
returnValuereturn value
injectCodecode to additionally inject
additionalIndentadditional indent

Definition at line 3415 of file MiniScript.cpp.

◆ trimArgument()

const string trimArgument ( const string &  argument)
private

Trim argument and remove unnessessary parenthesis.

Parameters
argumentargument
Returns
processed argument

Definition at line 929 of file MiniScript.cpp.

◆ unsetVariable()

void unsetVariable ( const string &  name)
inline

Unset script variable.

Parameters
namename

Definition at line 1275 of file MiniScript.h.

Member Data Documentation

◆ hash

string hash
protected

Definition at line 706 of file MiniScript.h.

◆ native

bool native
protected

Definition at line 707 of file MiniScript.h.

◆ nativeScripts

vector<Script> nativeScripts
protected

Definition at line 709 of file MiniScript.h.

◆ OPERATOR_CHARS

string OPERATOR_CHARS = "!*/%+-<>&|="
staticprivate

Definition at line 825 of file MiniScript.h.

◆ scriptFileName

string scriptFileName
private

Definition at line 832 of file MiniScript.h.

◆ scriptMethods

unordered_map<string, ScriptMethod*> scriptMethods
private

Definition at line 828 of file MiniScript.h.

◆ scriptOperators

unordered_map<uint8_t, ScriptMethod*> scriptOperators
private

Definition at line 830 of file MiniScript.h.

◆ scriptPathName

string scriptPathName
private

Definition at line 831 of file MiniScript.h.

◆ scripts

vector<Script> scripts
protected

Definition at line 708 of file MiniScript.h.

◆ scriptState

ScriptState scriptState
protected

Definition at line 710 of file MiniScript.h.

◆ scriptStateMachineStates

unordered_map<int, ScriptStateMachineState*> scriptStateMachineStates
private

Definition at line 829 of file MiniScript.h.

◆ scriptValid

bool scriptValid { false }
private

Definition at line 833 of file MiniScript.h.

◆ VERBOSE

constexpr bool VERBOSE { false }
staticconstexprprivate

Definition at line 822 of file MiniScript.h.


The documentation for this class was generated from the following files: