8#include <unordered_map>
24using std::string_view;
26using std::unordered_map;
190 if (lowerCaseString !=
"false" && lowerCaseString !=
"true" && lowerCaseString !=
"1" && lowerCaseString !=
"0")
return optional;
191 value = lowerCaseString ==
"true" || lowerCaseString ==
"1";
221 Console::println(
"MiniScript::getIntegerValue(): converting float to integer: precision loss");
230 Console::println(
"MiniScript::getIntegerValue(): converting float to integer: precision loss");
419 if (value ==
"true") {
423 if (value ==
"false") {
445 if (value ==
"true") {
449 if (value ==
"false") {
530 "Transformations(translation = Vector3(" +
539 result+=
", rotations = (axis = Vector3(" +
670 return "No description.";
847 string argumentsString;
848 for (
auto& argument: arguments) argumentsString+= (argumentsString.empty() ==
false?
", ":
"") +
string(
"'") + string(argument) + string(
"'");
849 return argumentsString;
864 bool parseScriptStatement(
const string_view& statement, string_view& method, vector<string_view>& arguments);
873 ScriptVariable
executeScriptStatement(
const string_view& method,
const vector<string_view>& arguments,
const ScriptStatement& statement);
904 const string findRightArgument(
const string statement,
int position,
int& length);
912 const string findLeftArgument(
const string statement,
int position,
int& length);
939 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);
1001 switch(scriptOperator) {
1019 default:
return "INVALID";
1030 for (
auto& argument: arguments)
if (argument.getType() == type)
return true;
1040 template<std::
size_t SIZE>
1042 for (
auto& argument: arguments)
if (argument.getType() == type)
return true;
1054 inline static bool getBooleanValue(
const vector<ScriptVariable>& arguments,
int idx,
bool& value,
bool optional =
false) {
1055 if (idx >= arguments.size())
return optional;
1056 auto& argument = arguments[idx];
1057 return argument.getBooleanValue(value, optional);
1068 template<std::
size_t SIZE>
1069 inline static bool getBooleanValue(
const array<ScriptVariable, SIZE>& arguments,
int idx,
bool& value,
bool optional =
false) {
1070 if (idx >= arguments.size())
return optional;
1071 auto& argument = arguments[idx];
1072 return argument.getBooleanValue(value, optional);
1083 inline static bool getIntegerValue(
const vector<ScriptVariable>& arguments,
int idx, int64_t& value,
bool optional =
false) {
1084 if (idx >= arguments.size())
return optional;
1085 auto& argument = arguments[idx];
1086 return argument.getIntegerValue(value, optional);
1097 template<std::
size_t SIZE>
1098 inline static bool getIntegerValue(
const array<ScriptVariable, SIZE>& arguments,
int idx, int64_t& value,
bool optional =
false) {
1099 if (idx >= arguments.size())
return optional;
1100 auto& argument = arguments[idx];
1101 return argument.getIntegerValue(value, optional);
1112 inline static bool getFloatValue(
const vector<ScriptVariable>& arguments,
int idx,
float& value,
bool optional =
false) {
1113 if (idx >= arguments.size())
return optional;
1114 auto& argument = arguments[idx];
1115 return argument.getFloatValue(value, optional);
1126 template<std::
size_t SIZE>
1127 inline static bool getFloatValue(
const array<ScriptVariable, SIZE>& arguments,
int idx,
float& value,
bool optional =
false) {
1128 if (idx >= arguments.size())
return optional;
1129 auto& argument = arguments[idx];
1130 return argument.getFloatValue(value, optional);
1141 inline static bool getStringValue(
const vector<ScriptVariable>& arguments,
int idx,
string& value,
bool optional =
false) {
1142 if (idx >= arguments.size())
return optional;
1143 auto& argument = arguments[idx];
1144 return argument.getStringValue(value, optional);
1155 template<std::
size_t SIZE>
1156 inline static bool getStringValue(
const array<ScriptVariable, SIZE>& arguments,
int idx,
string& value,
bool optional =
false) {
1157 if (idx >= arguments.size())
return optional;
1158 auto& argument = arguments[idx];
1159 return argument.getStringValue(value, optional);
1170 inline static bool getVector3Value(
const vector<ScriptVariable>& arguments,
int idx,
Vector3& value,
bool optional =
false) {
1171 if (idx >= arguments.size())
return optional;
1172 auto& argument = arguments[idx];
1173 return argument.getVector3Value(value, optional);
1184 template<std::
size_t SIZE>
1185 inline static bool getVector3Value(
const array<ScriptVariable, SIZE>& arguments,
int idx,
Vector3& value,
bool optional =
false) {
1186 if (idx >= arguments.size())
return optional;
1187 auto& argument = arguments[idx];
1188 return argument.getVector3Value(value, optional);
1200 if (idx >= arguments.size())
return optional;
1201 auto& argument = arguments[idx];
1202 return argument.getTransformationsValue(value, optional);
1213 template<std::
size_t SIZE>
1215 if (idx >= arguments.size())
return optional;
1216 auto& argument = arguments[idx];
1217 return argument.getTransformationsValue(value, optional);
1239 Console::println(
"MiniScript::getVariable(): '" +
scriptFileName +
"': variable with name '" + name +
"' does not exist: variable names must start with '$'");
1247 return *scriptVariableIt->second;
1262 *scriptVariableIt->second = variable;
1266 *scriptVariable = variable;
1282 delete scriptVariableIt->second;
1291 void loadScript(
const string& pathName,
const string& fileName);
1302 virtual void emit(
const string& condition);
1328 bool transpile(
string& generatedCode,
int scriptIdx,
const unordered_map<
string, vector<string>>& methodCodeMap);
1339 bool transpileScriptCondition(
string& generatedCode,
int scriptIdx,
const unordered_map<
string, vector<string>>& methodCodeMap,
const string& returnValue,
const string& injectCode,
int depth = 0);
static void println()
Print new line to console.
static bool viewIs(const string_view &str)
Check if given string is a float string.
static float viewParse(const string_view &str)
Parse float.
static float parse(const string &str)
Parse float.
static bool is(const string &str)
Check if given string is a float string.
static bool viewIs(const string_view &str)
Check if given string is a integer string.
static int parse(const string &str)
Parse integer.
static int viewParse(const string_view &str)
Parse integer.
static bool is(const string &str)
Check if given string is a integer string.
ScriptMethod(const vector< ArgumentType > &argumentTypes={}, ScriptVariableType returnValueType=ScriptVariableType::TYPE_VOID)
Constructor.
const ScriptVariableType & getReturnValueType()
virtual void executeMethod(const vector< ScriptVariable > &argumentValues, ScriptVariable &returnValue, const ScriptStatement &statement)=0
Execute script method.
virtual bool isMixedReturnValue()
virtual ScriptOperator getOperator()
virtual bool isVariadic()
virtual ~ScriptMethod()
Destructor.
ScriptVariableType returnValueType
const vector< ArgumentType > & getArgumentTypes()
virtual const string getMethodName()=0
virtual string getDescription()
vector< ArgumentType > argumentTypes
Script State Machine State.
ScriptStateMachineState()
Constructor.
virtual void execute()=0
Execute script state machine state.
virtual const string getName()=0
virtual ~ScriptStateMachineState()
Destructor.
bool getVector3Value(Vector3 &value, bool optional=false) const
Get vector3 value from given variable.
static const string getTypeAsString(ScriptVariableType type)
bool getIntegerValue(int64_t &value, bool optional=false) const
Get integer value from given variable.
const string getValueString() const
void setValue(const string &value)
Set string value from given value into variable.
ScriptVariable(bool value)
Constructor.
ScriptVariable(const string &value)
Constructor.
ScriptVariable(float value)
Constructor.
bool getStringValue(string &value, bool optional=false) const
Get string value from given variable.
void setValue(const Transformations &value)
Set transformations value from given value into variable.
ScriptVariableType getType() const
void setValue(float value)
Set float value from given value into variable.
const string getAsString()
ScriptVariable(const Vector3 &value)
Constructor.
ScriptVariable()
Constructor.
Transformations transformationsValue
bool getTransformationsValue(Transformations &value, bool optional=false) const
Get transformations value from given variable.
ScriptVariable(int64_t value)
Constructor.
void setValue(int64_t value)
Set integer value from given value into variable.
const string getTypeAsString()
bool getFloatValue(float &value, bool optional=false) const
Get float value from given variable.
bool getBooleanValue(bool &value, bool optional=false) const
Get boolean value from given variable.
void setValue(const Vector3 &value)
Set vector3 value from given value into variable.
void setImplicitTypedValueFromStringView(const string_view &value)
Set implicit typed value given by value string.
void setValue(bool value)
Set boolean value from given value into variable.
ScriptVariable(const Transformations &value)
Constructor.
void setImplicitTypedValue(const string &value)
Set implicit typed value given by value string.
static bool getFloatValue(const array< ScriptVariable, SIZE > &arguments, int idx, float &value, bool optional=false)
Get float value from given variable.
bool transpile(string &generatedCode, int scriptIdx, const unordered_map< string, vector< string > > &methodCodeMap)
Transpile a script statement.
void setHash(const string &hash)
Set hash.
void resetScriptExecutationState(int scriptIdx, StateMachineState stateMachineState)
Reset script execution state.
static bool getBooleanValue(const vector< ScriptVariable > &arguments, int idx, bool &value, bool optional=false)
Get boolean value from given variable.
static bool getVector3Value(const vector< ScriptVariable > &arguments, int idx, Vector3 &value, bool optional=false)
Get vector3 value from given variable.
void loadScript(const string &pathName, const string &fileName)
Load script.
void registerStateMachineState(ScriptStateMachineState *state)
Register script state machine state.
vector< Script > getNativeScripts()
static string getOperatorAsString(ScriptOperator scriptOperator)
Get operator as string.
unordered_map< int, ScriptStateMachineState * > scriptStateMachineStates
virtual void startScript()
Start script.
const string findLeftArgument(const string statement, int position, int &length)
Find left argument in statement beginning from position.
static bool getIntegerValue(const array< ScriptVariable, SIZE > &arguments, int idx, int64_t &value, bool optional=false)
Get integer value from given variable.
static bool getFloatValue(const vector< ScriptVariable > &arguments, int idx, float &value, bool optional=false)
Get float value from given variable.
unordered_map< string, ScriptMethod * > scriptMethods
ScriptVariable executeScriptStatement(const string_view &method, const vector< string_view > &arguments, const ScriptStatement &statement)
Execute a script statement.
@ OPERATOR_MULTIPLICATION
static bool hasType(const array< ScriptVariable, SIZE > &arguments, ScriptVariableType type)
Check if arguments contain argument with given type.
virtual void execute()
Execute.
virtual void registerStateMachineStates()
Register state machine states.
virtual void initializeNative()
Initialize native mini script.
void setVariable(const string &name, const ScriptVariable &variable)
Set script variable.
virtual void registerVariables()
Register variables.
static constexpr bool VERBOSE
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.
virtual void registerMethods()
Register methods.
virtual void emit(const string &condition)
Emit.
static bool getIntegerValue(const vector< ScriptVariable > &arguments, int idx, int64_t &value, bool optional=false)
Get integer value from given variable.
static const bool isOperatorChar(char c)
Returns if char is operator char.
static STATIC_DLL_IMPEXT string OPERATOR_CHARS
static bool hasType(const vector< ScriptVariable > &arguments, ScriptVariableType type)
Check if arguments contain argument with given type.
virtual ~MiniScript()
Destructor.
bool getNextStatementOperator(const string &statement, ScriptStatementOperator &nextOperator)
Determine next not substituted operator in statement.
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.
void stopScriptExecutation()
Stop script execution.
void setNative(bool native)
Set native.
void setNativeScripts(const vector< Script > &nativeScripts)
Set native scripts.
static bool getTransformationsValue(const array< ScriptVariable, SIZE > &arguments, int idx, Transformations &value, bool optional=false)
Get transformations value from given variable.
const string getInformation()
Get miniscript instance information.
static bool getVector3Value(const array< ScriptVariable, SIZE > &arguments, int idx, Vector3 &value, bool optional=false)
Get vector3 value from given variable.
const string getArgumentsAsString(const vector< string_view > &arguments)
Returns arguments as string placed in a vector of string_views.
MiniScript()
Default constructor.
const vector< Script > & getScripts()
const string doStatementPreProcessing(const string &statement)
Do statement pre processing, 1) replace operators with corresponding methods.
static bool getTransformationsValue(const vector< ScriptVariable > &arguments, int idx, Transformations &value, bool optional=false)
Get transformations value from given variable.
const ScriptVariable getVariable(const string &name)
Returns variable with given name.
void startErrorScript()
Start error script.
const string trimArgument(const string &argument)
Trim argument and remove unnessessary parenthesis.
void unsetVariable(const string &name)
Unset script variable.
void executeStateMachine()
Execute state machine.
static bool getBooleanValue(const array< ScriptVariable, SIZE > &arguments, int idx, bool &value, bool optional=false)
Get boolean value from given variable.
void registerMethod(ScriptMethod *method)
Register script method.
@ STATE_WAIT_FOR_CONDITION
vector< Script > nativeScripts
const string findRightArgument(const string statement, int position, int &length)
Find right argument in statement beginning from position.
static bool getStringValue(const array< ScriptVariable, SIZE > &arguments, int idx, string &value, bool optional=false)
Get string value from given variable.
bool parseScriptStatement(const string_view &statement, string_view &method, vector< string_view > &arguments)
Parse a script statement.
virtual int determineNamedScriptIdxToStart()
Determine named script index to start.
void gotoStatementGoto(const ScriptStatement &statement)
Goto statement from given statements goto statement.
static bool getStringValue(const vector< ScriptVariable > &arguments, int idx, string &value, bool optional=false)
Get string value from given variable.
virtual int determineScriptIdxToStart()
Determine script index to start.
void setScriptState(int state)
Set script state machine state.
unordered_map< uint8_t, ScriptMethod * > scriptOperators
void executeScriptLine()
Execute a single script line.
static int64_t getCurrentMillis()
Retrieve current time in milliseconds.
ScriptStateMachineState * lastStateMachineState
stack< bool > conditionStack
unordered_map< string, ScriptVariable * > variables
unordered_map< int, int64_t > forTimeStarted
stack< EndType > endTypeStack
vector< string > enabledNamedConditions
int64_t timeEnabledConditionsCheckLast
ScriptOperator scriptOperator
vector< ScriptStatement > statements
@ CONDITIONTYPE_ONENABLED
ConditionType conditionType
#define STATIC_DLL_IMPEXT