TorqueScript Reference
|
Inherited by ActionMap, AssetBase, AssetManager, AssetQuery, AssetTagsManifest, BehaviorInstance, BehaviorTemplate, ConsoleLogger, EventManager, FileDialog, FileObject, Message, ModuleManager, NetObject, ParticleAssetEmitter, PickingSceneController, PNGImage, PopupMenu, RemoteDebuggerBase, RenderProxy, SceneObjectSet, SimComponent, SimSet, SimXMLDocument, StreamObject, Taml, TCPObject, UndoManager, and ZipObject.
Public Member Functions | |
Integer | clone ([copyDynamicFields=false]?) |
void | delete () |
Identity | |
Reference an object | |
Integer | getId () |
void | setName (newName) |
String | getName () |
Scoping | |
Manipulate the object's script-defined | |
String | getClassNamespace () |
String | getSuperClassNamespace () |
void | setClassNamespace (nameSpace) |
void | setSuperClassNamespace () |
Reflection | |
Methods to query and manipulate the object's class, methods, and fields. | |
Boolean | isMethod (string methodName) |
String | call (methodName, [args]*) |
void | dumpClassHierarchy () |
void | dump () |
Boolean | isMemberOfClass (string classname) |
String | getClassName () |
String | getFieldValue (fieldName) |
Boolean | setFieldValue (fieldName, value) |
Integer | getDynamicFieldCount () |
String | getDynamicField (index) |
Integer | getFieldCount () |
String | getField (int index) |
void | setProgenitorFile (file) |
String | getProgenitorFile () |
Integer | getType () |
String | getFieldType (fieldName) |
Grouping | |
Manipulate the (singular) group for this object. | |
void | setInternalName (string InternalName) |
String | getInternalName () |
Boolean | isChildOfGroup (groupID) |
Integer | getGroup () |
Timer/Scheduled Events | |
Perform timed callbacks on the object. | |
Boolean | startTimer (callbackFunction, float timePeriod, [repeat]?) |
void | stopTimer () |
Boolean | isTimerActive () |
Integer | schedule (time, command, [arg]*) |
Serialization | |
Write an object. (Read in with exec()). | |
Boolean | save (fileName, [selectedOnly]?) |
void | addFieldFilter (fieldName) |
void | removeFieldFilter (fieldName) |
SimObject is the base class for all other scripted classes. This means that all other "simulation" classes – be they SceneObjects, Scenes, or plain-old SimObjects – can use the methods and fields of SimObject.
When we create a SimObject with new
, it is given a unique id which is returned by new
. We usually save the id in our own variables. Alternatively, we can give the SimObject a name which we can use to directly manipulate it. This name can be set with the new
operator or it can be added later.
If we give an object a name, then we can write script methods that are "scoped" to run on this object only. For instance, if we have a SimObject named MyObject
, and if we call MyObject.myMethod()
, then this call will be handled by a method we named MyObject::myMethod
if one exists.
See getId(), getName(), setName()
Each subclass of SimObject will provide important fields. For instance, a SceneObject will have a position, scale, etc. These are known as "static" or "built-in" fields. Additionally, you can add any number of your own fields, for example myField
or hitPoints
. These are known as "dynamic" or "add-on" fields. To do so only requires you to set the field directly with %myObject.myField = myValue;
. Attempting to retrieve a field that does not exist (yet) returns nothing. There is no error or warning.
Note that static fields exist for every object of a class, while dynamic fields are unique to any one instance. Adding myField
to one SceneObject does not add it to all SceneObjects.
For working with fields more programmatically, see Reflection below.
We can attach a Namespace
to an object. Then calls to this object will be handled by the script functions in that Namespace. For instance, if we set %myObject.class = MyScope
then the call %myObject.myMethod
will be handled with a method named MyScope::myMethod()
. (If we also named the object MyObject
, then if there is a MyObject::myMethod()
it will run. Otherwise, Torque2D will look for MyScope::myMethod()
and run that if found.)
Finally there is also a secondary Namespace
that will receive the call if neither the Name
nor the primary Namespace
had a method to handle the call.
Unfortunately, these Namespaces
are called Classes
in this context. You set the class
or superclass
. But this should not be confused with the SimObject's "real" class which is SimObject or Scene as examples.
See getClassNamespace(), setClassNamespace(), getSuperClassNamespace(), setSuperClassNamespace()
SimObject supports "reflection" – the run-time inspection of an object's methods, fields, etc. For instance, we can ask an object what class it instantiates, what dynamic fields it has, etc. We can also use this feature to call a method on an object even if we only know the string name of the method.
See getClassName(), isMemberOfClass(), isMethod(), dump(), dumpClassHierarchy(), call()
See getFieldValue(), setFieldValue(), getFieldCount(), getField(), getDynamicFieldCount(), getDynamicField()
We can set a SimObject to regularly call its own onTimer() callback. Additionally, we can schedule a single call to any method at any time in the future.
See startTimer(), stopTimer(), isTimerActive(), schedule()
void addFieldFilter | ( | fieldName | ) |
Add the field to the list of fields to exclude during write.
fieldName | The name of the field to filter out. |
The field can be static or dynamic.
String call | ( | methodName | , |
[args] * | |||
) |
Dynamically call a method by a string name
Normally you would call a method in the form object.myMethod(param1, param2)
. Alternatively, you can use object.call(myMethod, param1, param2)
. This can be useful if, for instance, you don't know which method to call in advance.
Integer clone | ( | [copyDynamicFields = false] ? | ) |
Clones the object.
copyDynamicFields | Whether the dynamic fields should be copied to the cloned object or not. Optional: Defaults to false. |
void delete | ( | ) |
Use the delete method to delete this object. When an object is deleted, it automatically
For objects in the GameBase, ScriptObject, or GUIControl hierarchies, an object will first: Call the onRemove() method for the object's namespace
void dump | ( | ) |
dump the object to the console.
Use the dump method to display the following information about this object:
void dumpClassHierarchy | ( | ) |
String getClassName | ( | ) |
Returns the engine class of this object such as SimObject
or SceneObject
Note that this method is defined in SimObject but is inherited by subclasses of SimObject. Subclasses will return the correct subclass name.
Note also, getClassName() is not related to an object's class
field! The class
field is a scripting concept that provides a "namespace" to look for user-defined functions (see getClassNamespace()).
String getClassNamespace | ( | ) |
Returns the Namespace
of this object as set by the user.
class
field.The class namespace is a a scripting concept that provides a "namespace" in which the engine looks to find user-defined scripting functions. It can be set, and reset, by the user by using setClassNamespace(). Alternatively, it can be set directly using the class
field of the object.
Note that this can easily be confused with getClassName(), which is unrelated, and returns the "true" engine class name of an object, such as SimObject
.
See setClassNamespace() for examples.
String getDynamicField | ( | index | ) |
Return the field name of a specific dynamic ("add-on") field by index.
index | the dynamic field for which to retrieve the name |
You would normally access dynamic fields directly %object.field
or indirectly %object.getFieldValue(%field)
. However, you may not know the field's names or otherwise need to iterate over the fields. Use getDynamicFieldCount() to get the number of dynamic fields, and then iterate over them with this function.
Note that only dynamic ("add-on") fields will be surfaced. Static ("built-in") fields like SimSet.class
will not be counted or listed.
While static and dynamic fields have separate functions to get their counts and names, they share getFieldValue() and setFieldValue() to read and set any field by name.
Also note that the order of the fields by an index has no meaning. It is not alphabetical, the order created, or otherwise.
Integer getDynamicFieldCount | ( | ) |
return the number of dynamic ("add-on") fields.
Note that static (or "built-in") fields are not counted. For instance, SimObject.class
will not count.
See getDynamicField() for an explanation and examples.
String getField | ( | int | index | ) |
Return the field name of a specific static ("built-in") field by index.
index | the static field for which to retrieve the name |
You would normally access static fields directly %object.class
or indirectly %object.getFieldValue(%field)
. However, you may not know the field's names or otherwise need to iterate over the fields. Use getFieldCount() to get the number of static fields, and then iterate over them with this function.
Note that only static ("built-in") fields will be surfaced. Dynamic ("add-on") fields like %SimSet.myField
will not be counted or listed.
While static and dynamic fields have separate functions to get their counts and names, they share getFieldValue() and setFieldValue() to read and set any field by name.
Also note that the order of the fields by an index has no meaning. It is not alphabetical, the order created, or otherwise.
Integer getFieldCount | ( | ) |
return the number of static ("built-in") fields.
Note that dynamic (or "add-on") fields are not counted. For instance, %object.class
will count, but %object.myField
will not.
See getField() for an explanation and examples.
String getFieldType | ( | fieldName | ) |
return the type of a field, such as "int" for an Integer
fieldName | field of the object to get the type of |
No warning will be shown if the field isn't found.
String getFieldValue | ( | fieldName | ) |
Return the value of any field. This can be a static ("built-in") field or a dynamic ("add-on") field.
Normally, you would get a field directly as %object.field
. However, in some cases you may want to use getFieldValue(). For instance, suppose you allow the field name to be passed into a function. You can still get that field with %object.getFieldValue(%field)
.
fieldName | the name of the field |
Integer getGroup | ( | ) |
determines if this object is contained in a SimGroup and if so, which one.
Integer getId | ( | ) |
get the unique numeric ID – or "handle" – of this object.
The id is provided for you by the simulator upon object creation. You can not change it and it likely will not be reused by any other object after this object is deleted.
%object.id
. If you do set %object.id
you will only succeed in creating a dynamic field named id
– an unrelated field to the actual object's id.String getInternalName | ( | ) |
returns the objects "internal" name
Not to be confused with the object's Name
, the internal name is used to find this object within a group. Each object may be in one group, ultimately forming a tree (usually for GUI related classes). See SimGroup for more information.
String getName | ( | ) |
Returns the name of the object
See setName() for a description of the name field.
Note not to confuse this with the internalName
which is a name for grouping purposes.
See setName() for caveats.
String getProgenitorFile | ( | ) |
Gets the progenitor file responsible for this instances creation.
String getSuperClassNamespace | ( | ) |
Return the superclass Namespace
of this object as set by the user.
An object can have a primary and secondary Namespace
also known as its class
and superclass
. If a user-defined function is not found in the class
then the superclass
is searched.
Integer getType | ( | ) |
Use the getType method to get the type for this object.
This is here for legacy purposes.
This type is an integer value composed of bitmasks. For simplicity, these bitmasks are defined in the engine and exposed for our use as global variables. To simplify the writing of scripts, a set of globals has been provided containing the bit setting for each class corresponding to a particular type.
Boolean isChildOfGroup | ( | groupID | ) |
test if this object is in a specified group (or subgroup of it)
groupID | the ID of the group being tested |
Boolean isMemberOfClass | ( | string | classname | ) |
returns true if this object is of the specified class or a subclass of the specified class
Boolean isMethod | ( | string | methodName | ) |
Returns wether the method exists for this object.
The method must be a "built-in" method, or one that is not user-defined in script. It must also be a direct method on the object, and not a behavior defined in a Behavior.
Boolean isTimerActive | ( | ) |
Checks whether the periodic timer is active for this object or not.
void removeFieldFilter | ( | fieldName | ) |
Remove the field from the list of fields to exclude during write
fieldName | The name of the field to stop filtering out. |
The field can be static or dynamic.
save this object to a specified file
fileName | the file to save to |
selectedOnly | seems to be for editors to set. not sure how to mark anything as "selected" |
Integer schedule | ( | time | , |
command | , | ||
[arg] * | |||
) |
schedule an action to be executed upon this object in the future.
time | Time in milliseconds till action is scheduled to occur. |
command | Name of the command to execute. This command must be scoped to this object (i.e. It must exist in the namespace of the object), otherwise the schedule call will fail. |
arg1...argN | These are optional arguments which will be passed to the command. This version of schedule automatically passes the ID of obj as arg0 to command. |
The major difference between this and the schedule() console function is that if this object is deleted prior to the scheduled event, the event is automatically canceled. Times should not be treated as exact since some 'simulation delay' is to be expected. The minimum resolution for a scheduled event is 32 ms, or one tick.
The existence of command is not validated. If you pass an invalid console method name, the schedule() method will still return a schedule ID, but the subsequent event will fail silently.
To manipulate the scheduled event, use the id returned with the system schedule functions.
void setClassNamespace | ( | nameSpace | ) |
Sets the Namespace
of this object.
The class namespace is a a scripting concept that provides a "namespace" in which the engine looks to find user-defined scripting functions. It can be set, and reset, by the user using setClassNamespace(). Alternatively, it can be set directly using the class
field of the object.
The Namespace
or class
can then be returned with getClassNamespace(). Note that this can easily be confused with getClassName(), which is unrelated, and returns the "true" engine class name of an object, such as SimObject
.
Boolean setFieldValue | ( | fieldName | , |
value | |||
) |
Set the value of any field. This can be a static ("built-in") field or a dynamic ("add-on") field.
Normally, you would set a field directly as %object.field = value
. However, in some cases you may want to use setFieldValue(). For instance, suppose you allow the field name to be passed into a function. You can still set that field with %object.setFieldValue(field, "myValue")
.
fieldName | the name of the field to set |
value | the value to set |
void setInternalName | ( | string | InternalName | ) |
sets the objects "internal" name
internalName | the name used for group access |
Not to be confused with the object's Name
, the internal name is used to find this object within a group. Each object may be in one group, ultimately forming a tree (usually for GUI related classes). See SimGroup for more information.
void setName | ( | newName | ) |
Set the objects name field.
newName | name for objects |
Now the object can be invoked by this name. This is different than tracking an object by a variable, such as %myObject
or $myObject
.
Only one object can have a specific name. Setting a second object with this name will remove the name from the former object.
Note not to confuse this with the internalName
which is a name for grouping purposes.
%object.name
. If you do set %object.name
you will only succeed in creating a dynamic field named name
– an unrelated field to the actual object's name.void setProgenitorFile | ( | file | ) |
Sets the progenitor file responsible for this instances creation.
file | The progenitor file responsible for this instances creation. |
void setSuperClassNamespace | ( | ) |
Sets the superclass Namespace
of this object.
An object can have a primary and secondary Namespace
also known as its class
and superclass
. If a user-defined function is not found in the class
then the superclass
is searched.
Boolean startTimer | ( | callbackFunction | , |
float | timePeriod, | ||
[repeat] ? | |||
) |
Starts a periodic timer for this object. Sets a timer on the object that, when it expires, will cause the object to execute the given callback function. The timer event will continue to occur at regular intervals until stopTimer() is called or the timer expires.
callbackFunction | The name of the callback function to call for each timer repetition. |
timePeriod | The period of time (in milliseconds) between each callback. |
repeat | The number of times the timer should repeat. If not specified or zero then it will run infinitely. |
void stopTimer | ( | ) |
Stops the periodic timer for this object.