TDME2 1.9.121
|
Miniscript. More...
#include <tdme/utilities/MiniScript.h>
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< Script > | getNativeScripts () |
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< Script > | scripts |
vector< Script > | nativeScripts |
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 = "!*/%+-<>&|=" |
Miniscript.
Definition at line 40 of file MiniScript.h.
enum ScriptOperator |
Definition at line 42 of file MiniScript.h.
enum ScriptVariableType |
Enumerator | |
---|---|
TYPE_VOID | |
TYPE_BOOLEAN | |
TYPE_INTEGER | |
TYPE_FLOAT | |
TYPE_STRING | |
TYPE_VECTOR3 | |
TYPE_TRANSFORMATIONS |
Definition at line 85 of file MiniScript.h.
enum StateMachineState |
Enumerator | |
---|---|
STATE_NONE | |
STATE_NEXT_STATEMENT | |
STATE_WAIT | |
STATE_WAIT_FOR_CONDITION |
Definition at line 71 of file MiniScript.h.
MiniScript | ( | ) |
Default constructor.
Definition at line 65 of file MiniScript.cpp.
|
virtual |
Destructor.
Definition at line 69 of file MiniScript.cpp.
|
protectedvirtual |
Determine named script index to start.
Definition at line 816 of file MiniScript.cpp.
|
protectedvirtual |
Determine script index to start.
Definition at line 756 of file MiniScript.cpp.
|
private |
Do statement pre processing, 1) replace operators with corresponding methods.
statement | statement |
Definition at line 1011 of file MiniScript.cpp.
|
virtual |
|
virtual |
Execute.
Definition at line 462 of file MiniScript.cpp.
|
private |
Execute a single script line.
Definition at line 96 of file MiniScript.cpp.
|
private |
Execute a script statement.
method | method |
arguments | arguments |
statement | statement |
Definition at line 254 of file MiniScript.cpp.
|
protected |
Execute state machine.
Definition at line 416 of file MiniScript.cpp.
|
private |
Find left argument in statement beginning from position.
statement | statement |
position | position |
length | argument length |
Definition at line 974 of file MiniScript.cpp.
|
private |
Find right argument in statement beginning from position.
statement | statement |
position | position |
length | argument length |
Definition at line 937 of file MiniScript.cpp.
|
inlineprivate |
Returns arguments as string placed in a vector of string_views.
arguments | arguments |
Definition at line 846 of file MiniScript.h.
|
inlinestatic |
Get boolean value from given variable.
arguments | arguments |
idx | argument index |
value | value |
optional | optionalfalse |
Definition at line 1069 of file MiniScript.h.
|
inlinestatic |
Get boolean value from given variable.
arguments | arguments |
idx | argument index |
value | value |
optional | optionalfalse |
Definition at line 1054 of file MiniScript.h.
|
inlinestatic |
Get float value from given variable.
arguments | arguments |
idx | argument index |
value | value |
optional | optional |
Definition at line 1127 of file MiniScript.h.
|
inlinestatic |
Get float value from given variable.
arguments | arguments |
idx | argument index |
value | value |
optional | optional |
Definition at line 1112 of file MiniScript.h.
|
inline |
Definition at line 955 of file MiniScript.h.
const string getInformation | ( | ) |
Get miniscript instance information.
Definition at line 1057 of file MiniScript.cpp.
|
inlinestatic |
Get integer value from given variable.
arguments | arguments |
idx | argument index |
value | value |
optional | optional |
Definition at line 1098 of file MiniScript.h.
|
inlinestatic |
Get integer value from given variable.
arguments | arguments |
idx | argument index |
value | value |
optional | optional |
Definition at line 1083 of file MiniScript.h.
|
inlineprotected |
Definition at line 720 of file MiniScript.h.
|
inlineprotected |
Definition at line 751 of file MiniScript.h.
|
private |
Determine next not substituted operator in statement.
statement | statement |
nextOperator | next operator |
Definition at line 872 of file MiniScript.cpp.
|
inlinestatic |
Get operator as string.
scriptOperator | script operator |
Definition at line 1000 of file MiniScript.h.
|
inline |
Definition at line 962 of file MiniScript.h.
|
inline |
Definition at line 969 of file MiniScript.h.
|
inlinestatic |
Get string value from given variable.
arguments | arguments |
idx | argument index |
value | value |
optional | optional |
Definition at line 1156 of file MiniScript.h.
|
inlinestatic |
Get string value from given variable.
arguments | arguments |
idx | argument index |
value | value |
optional | optional |
Definition at line 1141 of file MiniScript.h.
|
inlinestatic |
Get transformations value from given variable.
arguments | arguments |
idx | argument index |
value | value |
optional | optional |
Definition at line 1214 of file MiniScript.h.
|
inlinestatic |
Get transformations value from given variable.
arguments | arguments |
idx | argument index |
value | value |
optional | optional |
Definition at line 1199 of file MiniScript.h.
|
inline |
Returns variable with given name.
name | name |
Definition at line 1237 of file MiniScript.h.
|
inlinestatic |
Get vector3 value from given variable.
arguments | arguments |
idx | argument index |
value | value |
optional | optional |
Definition at line 1185 of file MiniScript.h.
|
inlinestatic |
Get vector3 value from given variable.
arguments | arguments |
idx | argument index |
value | value |
optional | optional |
Definition at line 1170 of file MiniScript.h.
|
inlineprotected |
Goto statement from given statements goto statement.
statement | statement |
Definition at line 744 of file MiniScript.h.
|
inlinestatic |
Check if arguments contain argument with given type.
arguments | arguments |
type | type |
Definition at line 1041 of file MiniScript.h.
|
inlinestatic |
Check if arguments contain argument with given type.
arguments | arguments |
type | type |
Definition at line 1029 of file MiniScript.h.
|
protectedvirtual |
Initialize native mini script.
Definition at line 84 of file MiniScript.cpp.
|
inlinestaticprivate |
Returns if char is operator char.
c | char to test |
Definition at line 880 of file MiniScript.h.
|
inline |
Definition at line 1312 of file MiniScript.h.
void loadScript | ( | const string & | pathName, |
const string & | fileName | ||
) |
Load script.
pathName | path name |
fileName | file name |
Definition at line 481 of file MiniScript.cpp.
|
private |
Parse a script statement.
statement | statement |
method | method |
arguments | arguments |
Definition at line 120 of file MiniScript.cpp.
void registerMethod | ( | ScriptMethod * | method | ) |
|
virtual |
Register methods.
Definition at line 1260 of file MiniScript.cpp.
void registerStateMachineState | ( | ScriptStateMachineState * | state | ) |
Register script state machine state.
state | state |
Definition at line 75 of file MiniScript.cpp.
|
virtual |
Register state machine states.
Definition at line 1180 of file MiniScript.cpp.
|
virtual |
Register variables.
Definition at line 3412 of file MiniScript.cpp.
|
inlineprotected |
Reset script execution state.
scriptIdx | script index |
stateMachineState | state machine state |
Definition at line 773 of file MiniScript.h.
|
inlineprotected |
|
inlineprotected |
|
inlineprotected |
|
inlineprotected |
|
inline |
Set script variable.
name | name |
variable | variable |
Definition at line 1255 of file MiniScript.h.
|
inline |
Start error script.
Definition at line 976 of file MiniScript.h.
|
virtual |
Start script.
Definition at line 743 of file MiniScript.cpp.
|
inlineprotected |
Stop script execution.
Definition at line 789 of file MiniScript.h.
bool transpile | ( | string & | generatedCode, |
int | scriptIdx, | ||
const unordered_map< string, vector< string > > & | methodCodeMap | ||
) |
Transpile a script statement.
generatedCode | generated code |
scriptIdx | script index |
methodCodeMap | method code map |
Definition at line 3683 of file MiniScript.cpp.
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.
generatedCode | generated code |
scriptIdx | script index |
methodCodeMap | method code map |
returnValue | return value |
injectCode | inject code |
Definition at line 3783 of file MiniScript.cpp.
|
private |
Transpile script statement.
generatedCode | generated code |
method | method |
arguments | arguments |
statement | script statement |
scriptIdx | script index |
statementIdx | statement index |
methodCodeMap | method code map |
scriptStateChanged | script could have state changed |
scriptStopped | script could have been stopped |
enabledNamedConditions | enabled named conditions |
depth | depth |
argumentIdx | argument index |
parentArgumentIdx | parent argument index |
returnValue | return value |
injectCode | code to additionally inject |
additionalIndent | additional indent |
Definition at line 3415 of file MiniScript.cpp.
|
private |
Trim argument and remove unnessessary parenthesis.
argument | argument |
Definition at line 929 of file MiniScript.cpp.
|
inline |
|
protected |
Definition at line 706 of file MiniScript.h.
|
protected |
Definition at line 707 of file MiniScript.h.
|
protected |
Definition at line 709 of file MiniScript.h.
|
staticprivate |
Definition at line 825 of file MiniScript.h.
|
private |
Definition at line 832 of file MiniScript.h.
|
private |
Definition at line 828 of file MiniScript.h.
|
private |
Definition at line 830 of file MiniScript.h.
|
private |
Definition at line 831 of file MiniScript.h.
|
protected |
Definition at line 708 of file MiniScript.h.
|
protected |
Definition at line 710 of file MiniScript.h.
|
private |
Definition at line 829 of file MiniScript.h.
|
private |
Definition at line 833 of file MiniScript.h.
|
staticconstexprprivate |
Definition at line 822 of file MiniScript.h.