TDME2 1.9.121
|
#include <tdme/utilities/MiniScript.h>
Public Member Functions | |
ScriptVariable () | |
Constructor. More... | |
ScriptVariable (bool value) | |
Constructor. More... | |
ScriptVariable (int64_t value) | |
Constructor. More... | |
ScriptVariable (float value) | |
Constructor. More... | |
ScriptVariable (const string &value) | |
Constructor. More... | |
ScriptVariable (const Vector3 &value) | |
Constructor. More... | |
ScriptVariable (const Transformations &value) | |
Constructor. More... | |
ScriptVariableType | getType () const |
bool | getBooleanValue (bool &value, bool optional=false) const |
Get boolean value from given variable. More... | |
bool | getIntegerValue (int64_t &value, bool optional=false) const |
Get integer value from given variable. More... | |
bool | getFloatValue (float &value, bool optional=false) const |
Get float value from given variable. More... | |
bool | getStringValue (string &value, bool optional=false) const |
Get string value from given variable. More... | |
bool | getVector3Value (Vector3 &value, bool optional=false) const |
Get vector3 value from given variable. More... | |
bool | getTransformationsValue (Transformations &value, bool optional=false) const |
Get transformations value from given variable. More... | |
void | setValue (bool value) |
Set boolean value from given value into variable. More... | |
void | setValue (int64_t value) |
Set integer value from given value into variable. More... | |
void | setValue (float value) |
Set float value from given value into variable. More... | |
void | setValue (const string &value) |
Set string value from given value into variable. More... | |
void | setValue (const Vector3 &value) |
Set vector3 value from given value into variable. More... | |
void | setValue (const Transformations &value) |
Set transformations value from given value into variable. More... | |
void | setImplicitTypedValue (const string &value) |
Set implicit typed value given by value string. More... | |
void | setImplicitTypedValueFromStringView (const string_view &value) |
Set implicit typed value given by value string. More... | |
const string | getTypeAsString () |
const string | getAsString () |
const string | getValueString () const |
Static Public Member Functions | |
static const string | getTypeAsString (ScriptVariableType type) |
Private Attributes | |
ScriptVariableType | type { TYPE_VOID } |
string | stringValue |
Transformations | transformationsValue |
bool | booleanValue { false } |
int64_t | integerValue { 0 } |
float | floatValue { 0.0f } |
Vector3 | vector3Value |
Definition at line 95 of file MiniScript.h.
|
inline |
Constructor.
Definition at line 109 of file MiniScript.h.
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
Definition at line 492 of file MiniScript.h.
|
inline |
Get boolean value from given variable.
value | value |
optional | optionalfalse |
Definition at line 173 of file MiniScript.h.
|
inline |
Get float value from given variable.
value | value |
optional | optional |
Definition at line 250 of file MiniScript.h.
|
inline |
Get integer value from given variable.
value | value |
optional | optional |
Definition at line 209 of file MiniScript.h.
|
inline |
Get string value from given variable.
value | value |
optional | optional |
Definition at line 282 of file MiniScript.h.
|
inline |
Get transformations value from given variable.
value | value |
optional | optional |
Definition at line 339 of file MiniScript.h.
|
inline |
Definition at line 163 of file MiniScript.h.
|
inline |
Definition at line 485 of file MiniScript.h.
|
inlinestatic |
Definition at line 469 of file MiniScript.h.
|
inline |
Definition at line 504 of file MiniScript.h.
|
inline |
Get vector3 value from given variable.
value | value |
optional | optional |
Definition at line 312 of file MiniScript.h.
|
inline |
Set implicit typed value given by value string.
value | value |
Definition at line 418 of file MiniScript.h.
|
inline |
Set implicit typed value given by value string.
value | value |
Definition at line 444 of file MiniScript.h.
|
inline |
Set boolean value from given value into variable.
value | value |
Definition at line 364 of file MiniScript.h.
|
inline |
Set string value from given value into variable.
value | value |
Definition at line 391 of file MiniScript.h.
|
inline |
Set transformations value from given value into variable.
value | value |
Definition at line 409 of file MiniScript.h.
|
inline |
Set vector3 value from given value into variable.
value | value |
Definition at line 400 of file MiniScript.h.
|
inline |
Set float value from given value into variable.
value | value |
Definition at line 382 of file MiniScript.h.
|
inline |
Set integer value from given value into variable.
value | value |
Definition at line 373 of file MiniScript.h.
|
private |
Definition at line 100 of file MiniScript.h.
|
private |
Definition at line 102 of file MiniScript.h.
|
private |
Definition at line 101 of file MiniScript.h.
|
private |
Definition at line 98 of file MiniScript.h.
|
private |
Definition at line 99 of file MiniScript.h.
|
private |
Definition at line 97 of file MiniScript.h.
|
private |
Definition at line 103 of file MiniScript.h.