TDME2 1.9.121
Public Member Functions | Static Public Member Functions | Private Attributes | List of all members
MiniScript::ScriptVariable Class Reference

#include <tdme/utilities/MiniScript.h>

Collaboration diagram for MiniScript::ScriptVariable:
Collaboration graph

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
 

Detailed Description

Definition at line 95 of file MiniScript.h.

Constructor & Destructor Documentation

◆ ScriptVariable() [1/7]

ScriptVariable ( )
inline

Constructor.

Definition at line 109 of file MiniScript.h.

◆ ScriptVariable() [2/7]

ScriptVariable ( bool  value)
inline

Constructor.

Parameters
valuevalue

Definition at line 116 of file MiniScript.h.

◆ ScriptVariable() [3/7]

ScriptVariable ( int64_t  value)
inline

Constructor.

Parameters
valuevalue

Definition at line 124 of file MiniScript.h.

◆ ScriptVariable() [4/7]

ScriptVariable ( float  value)
inline

Constructor.

Parameters
valuevalue

Definition at line 132 of file MiniScript.h.

◆ ScriptVariable() [5/7]

ScriptVariable ( const string &  value)
inline

Constructor.

Parameters
valuevalue

Definition at line 140 of file MiniScript.h.

◆ ScriptVariable() [6/7]

ScriptVariable ( const Vector3 value)
inline

Constructor.

Parameters
valuevalue

Definition at line 148 of file MiniScript.h.

◆ ScriptVariable() [7/7]

ScriptVariable ( const Transformations value)
inline

Constructor.

Parameters
valuevalue

Definition at line 156 of file MiniScript.h.

Member Function Documentation

◆ getAsString()

const string getAsString ( )
inline
Returns
string representation of script variable type

Definition at line 492 of file MiniScript.h.

◆ getBooleanValue()

bool getBooleanValue ( bool &  value,
bool  optional = false 
) const
inline

Get boolean value from given variable.

Parameters
valuevalue
optionaloptionalfalse
Returns
success

Definition at line 173 of file MiniScript.h.

◆ getFloatValue()

bool getFloatValue ( float &  value,
bool  optional = false 
) const
inline

Get float value from given variable.

Parameters
valuevalue
optionaloptional
Returns
success

Definition at line 250 of file MiniScript.h.

◆ getIntegerValue()

bool getIntegerValue ( int64_t &  value,
bool  optional = false 
) const
inline

Get integer value from given variable.

Parameters
valuevalue
optionaloptional
Returns
success

Definition at line 209 of file MiniScript.h.

◆ getStringValue()

bool getStringValue ( string &  value,
bool  optional = false 
) const
inline

Get string value from given variable.

Parameters
valuevalue
optionaloptional
Returns
success

Definition at line 282 of file MiniScript.h.

◆ getTransformationsValue()

bool getTransformationsValue ( Transformations value,
bool  optional = false 
) const
inline

Get transformations value from given variable.

Parameters
valuevalue
optionaloptional
Returns
success

Definition at line 339 of file MiniScript.h.

◆ getType()

ScriptVariableType getType ( ) const
inline
Returns
type

Definition at line 163 of file MiniScript.h.

◆ getTypeAsString() [1/2]

const string getTypeAsString ( )
inline
Returns
string representation of script variable type

Definition at line 485 of file MiniScript.h.

◆ getTypeAsString() [2/2]

static const string getTypeAsString ( ScriptVariableType  type)
inlinestatic
Returns
string representation of script variable type

Definition at line 469 of file MiniScript.h.

◆ getValueString()

const string getValueString ( ) const
inline
Returns
string representation of script variable type

Definition at line 504 of file MiniScript.h.

◆ getVector3Value()

bool getVector3Value ( Vector3 value,
bool  optional = false 
) const
inline

Get vector3 value from given variable.

Parameters
valuevalue
optionaloptional
Returns
success

Definition at line 312 of file MiniScript.h.

◆ setImplicitTypedValue()

void setImplicitTypedValue ( const string &  value)
inline

Set implicit typed value given by value string.

Parameters
valuevalue

Definition at line 418 of file MiniScript.h.

◆ setImplicitTypedValueFromStringView()

void setImplicitTypedValueFromStringView ( const string_view &  value)
inline

Set implicit typed value given by value string.

Parameters
valuevalue

Definition at line 444 of file MiniScript.h.

◆ setValue() [1/6]

void setValue ( bool  value)
inline

Set boolean value from given value into variable.

Parameters
valuevalue

Definition at line 364 of file MiniScript.h.

◆ setValue() [2/6]

void setValue ( const string &  value)
inline

Set string value from given value into variable.

Parameters
valuevalue

Definition at line 391 of file MiniScript.h.

◆ setValue() [3/6]

void setValue ( const Transformations value)
inline

Set transformations value from given value into variable.

Parameters
valuevalue

Definition at line 409 of file MiniScript.h.

◆ setValue() [4/6]

void setValue ( const Vector3 value)
inline

Set vector3 value from given value into variable.

Parameters
valuevalue

Definition at line 400 of file MiniScript.h.

◆ setValue() [5/6]

void setValue ( float  value)
inline

Set float value from given value into variable.

Parameters
valuevalue

Definition at line 382 of file MiniScript.h.

◆ setValue() [6/6]

void setValue ( int64_t  value)
inline

Set integer value from given value into variable.

Parameters
valuevalue

Definition at line 373 of file MiniScript.h.

Member Data Documentation

◆ booleanValue

bool booleanValue { false }
private

Definition at line 100 of file MiniScript.h.

◆ floatValue

float floatValue { 0.0f }
private

Definition at line 102 of file MiniScript.h.

◆ integerValue

int64_t integerValue { 0 }
private

Definition at line 101 of file MiniScript.h.

◆ stringValue

string stringValue
private

Definition at line 98 of file MiniScript.h.

◆ transformationsValue

Transformations transformationsValue
private

Definition at line 99 of file MiniScript.h.

◆ type

ScriptVariableType type { TYPE_VOID }
private

Definition at line 97 of file MiniScript.h.

◆ vector3Value

Vector3 vector3Value
private

Definition at line 103 of file MiniScript.h.


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