WorldExpression Class
Inherits: | Node |
This class is used to create a world expression, that executes an arbitrary expression (a script). An expression can be executed for the other nodes if they are assigned as child nodes of WorldExpression. The child nodes will inherit transformations (if any) of the world expression and will be transformed relative to the pivot point of WorldExpression.
Implementing World Expression Script#
A WorldExpression script can be implemented as follows:
- As a simple sequence of functions' calls. For example:
// get the WorldExpression node Node node = getNode(); // apply transformation to the WorldExpression node node.setTransform(rotateX(cos(time * 3.0f) * 2.0f) * rotateY(sin(time * 2.0f) * 4.0f) * rotateZ(sin(time * 1.0f) * 8.0f) * translate(0.0f,0.0f,1.1f));
- As a set of functions and classes. For example:
// create resources. This function is called on world load, when not all of the nodes can be loaded void __constructor__() { ... } // delete the created resources void __destructor__() { ... } /* */ // implement any required functions void print_message() { log.message("Hello from WorlExpression!\n"); } // implement a function that the WorldExpression will execute each frame void my_update() { ... print_message(); ... } // execute the update function my_update();
Do not forget to call the function that should be executed each frame in the script.
Inter-Script Communication#
Each WorldExpression has its own scope. You cannot directly set or get variables to or from the WorldExpression (as memory corruption occurs).
- If a WorldExpression calls a function of a world script:
// World script namespace WorldScriptScope { void worldScriptFunc(string arg) { log.message("World script code: %s\n",arg); } }
// WorldExpression engine.world.call("WorldScriptScope::worldScriptFunc","hello from WorldExpression");
- If a world script calls a function of a WorldExpression:
// World script namespace WorldScriptScope { void worldScriptFunc(WorldExpression expression) { expression.call("worldExpressionFunc","hello from the world script"); } }
// WorldExpression void worldExpressionFunc(string arg) { log.message("WorldExpression code: %s\n",arg); }
Script Functions#
The following internal functions are available within the WorldExpression script:
- Node getNode() - returns the WorldExpression node.
- Node getChild(int num) - returns the WorldExpression child node by its number. If the child is not found, returns NULL.
- int getNumChilds() - returns the number of WorldExpression children.
- Node getParent() - returns the WorldExpression parent node. If there is no parent, returns NULL.
To get the WorldExpression node and its parent, you can write the following in the WorldExpression script:
Node node = getNode();
Node parent = node.getParent();
forloop(int i = 0; getNumChilds()) {
Node child = getChild(i);
log.message("The type of the node is: %s\n",child.getTypeName());
}
// this example shows the type of each WorldExpression child
See Also#
A set of UnigineScript API samples located in the <UnigineSDK>/data/samples/worlds/ folder:
- expression_00
- expression_01
- expression_02
- expression_03
- expression_04
- expression_05
WorldExpression Class
Members
static WorldExpression ( ) #
Constructor. Creates an arbitrary expression to be executed.int isCompiled ( ) #
Returns a value indicating if the given expression has been compiled. It is automatically called on world load or after setExpression() is used.Return value
1 if the expression has been compiled; otherwise, 0.int setExpression ( string src ) #
Sets the arbitrary expression to be executed.expression.setExpression("{\n#include <my_project/scripts/my_expression.h>\n}");
Arguments
- string src - An executable expression.
Return value
The expression number.string getExpression ( ) #
Returns the executable expression.Return value
The executable expression.int isFunction ( string name, int num_args ) #
Returns a value indicating if the given world expression has the function with specified name and number of arguments.Arguments
- string name - The name of the function.
- int num_args - The number of arguments.
Return value
1 if the expression exists; otherwise, 0.void setIFps ( float ifps ) #
Sets a constant frame duration used to execute the expression. It can be used to decrease the frame rate to get higher performance. 0 means that the expression is executed at the same frame rate as the main application window.Arguments
- float ifps - Frame duration (inverse FPS) in seconds (1/FPS). If a too small value is provided, 1E-6 will be used instead.
float getIFps ( ) #
Returns the current constant frame duration used to execute the expression. 0 means that the expression is executed at the same frame rate as the main application window.Return value
Frame duration (inverse FPS) in seconds (1/FPS).static int type ( ) #
Returns the type of the node.Return value
World type identifier.int setExpressionName ( string name ) #
Loads an expression from the given file.Arguments
- string name - Expression file name.
Return value
1 if the expression is successfully loaded from the given file; otherwise, 0.string getExpressionName ( ) #
Returns the name of the expression file.Return value
Expression file name.void setUpdateDistanceLimit ( float limit ) #
Sets the distance from the camera within which the object should be updated.Arguments
- float limit - Distance from the camera within which the object should be updated.