TorqueScript Reference
|
Inherits SimObject.
Inherited by ModuleDefinition, and NameTags.
A container for a sequence of unique SimObjects.
A SimSet is a specized container: an ordered set of references to SimObjects. As the name "set" implies, a SimObject can appear no more than once within a particular SimSet. Attempting to add an object multiple times will not change the SimSet not does it (nor should it) warn you. A SimSet keeps its items ordered, however, so it is more than a mathematical "set." You can reorder the objects.
A Simset only references SimObjects. The deletion of a SimSet will not delete the objects in it. Likewise, removing an object from a SimSet does not delete that object. Note that a SimObject can be a member of any number of SimSets.
When a SimObject is deleted, it will be automatically removed from any SimSets it is in. This is one of a SimSets most powerful features. There can be no invalid references to objects because you can not insert a non-existent reference, and references to SimObjects are automatically removed when those objects are deleted.
Due to its many capabilities, a SimSet is usually the appropriate structure for keeping Collections in Torque2D.*
Note that only SimObjects can be held in SimSets. Strings, for instance, can not. But, because SimObject is the base class for almost all script classes, you can add almost any script class to a SimSet.
The SimSet's member objects are stored initially in the order of insertion (add()), and can be removed (remove()), retrieved (getObject()), and queried (isMember()). The SimSet can have all its members counted (getCount()), printed (listObjects()), and removed (clear()). A member can be reordered via bringToFront() and pushToBack(), or re-ordered relative to another via reorderChild().
Creating and Adding**
We create the SimSet, then create objects to put in it, then we add them all in.
Uniqueness**
Continuing the above example, each member of the SimSet appears exactly once: the SimSet is a mathematically proper set.
Re-ordering**
The members of a SimSet are well ordered. Let us move a different object to the front.
Now we move a different member to the back.
Finally, we move the Fig member to precede Pear. Note that all of the other members retain their relative order.
Removing**
Suppose you want to delete the items in a SimSet. Remember that, as you delete each one, it is automatically removed from the SimSet, which in turn changes the index of any items that came after the one you just deleted!
The problem is that you delete the object at index 0. This, in turn, moves the objects down one index so that what was at index 1 is not at index 0. But your loop will not try index 0 again, where there is a fresh object. Instead it will skip to index 1. You will only delete half the items.
void add | ( | obj1 | , |
[obj2] * | |||
) |
void bringToFront | ( | object | ) |
void callOnChildren | ( | string | method, |
[string args] * | |||
) |
Call a method on all objects contained in the set.
method | The name of the method to call. |
args | The arguments to the method. |
void clear | ( | ) |
Clears the Simset This does not delete the cleared SimObjects.
void deleteObjects | ( | ) |
Deletes all the objects in the SimSet.
Integer findObjectByInternalName | ( | string | name, |
[bool searchChildren] ? | |||
) |
Returns the object with given internal name
name | The internal name of the object you wish to find |
searchChildren | Set this true if you wish to search all children as well. |
Integer getObject | ( | index | ) |
Boolean isMember | ( | object | ) |
void listObjects | ( | ) |
Prints the object data within the set
void pushToBack | ( | object | ) |
Sends item to back of set. If the SimObject is not in the set, do nothing.
void remove | ( | obj1 | , |
[obj2] * | |||
) |