This page has been translated automatically.
UnigineEditor
Interface Overview
Assets Workflow
Settings and Preferences
Working With Projects
Adjusting Node Parameters
Setting Up Materials
Setting Up Properties
Landscape Tool
Using Editor Tools for Specific Tasks
Extending Editor Functionality
Programming
Fundamentals
Setting Up Development Environment
Usage Examples
UnigineScript
C++
C#
UUSL (Unified UNIGINE Shader Language)
File Formats
Rebuilding the Engine Tools
GUI
Double Precision Coordinates
API
Containers
Common Functionality
Controls-Related Classes
Engine-Related Classes
Filesystem Functionality
GUI-Related Classes
Math Functionality
Node-Related Classes
Objects-Related Classes
Networking Functionality
Pathfinding-Related Classes
Physics-Related Classes
Plugins-Related Classes
IG Plugin
CIGIConnector Plugin
Rendering-Related Classes
Warning! This version of documentation is OUTDATED, as it describes an older SDK version! Please switch to the documentation for the latest SDK version.
Warning! This version of documentation describes an old SDK version which is no longer supported! Please upgrade to the latest SDK version.

WorldExpression Class

Warning
UnigineScript is deprecated and will be removed in future releases. Please consider using C#/C++ instead, as these APIs are the preferred ones. Availability of new Engine features in UnigineScipt is not guaranteed, as the current level of support assumes only fixing critical issues.
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:
    Source code (UnigineScript)
    // 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:
    Source code (UnigineScript)
    // 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();
    Notice
    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:
    Source code (UnigineScript)
    // World script
    namespace WorldScriptScope {
    
    	void worldScriptFunc(string arg) {
    		log.message("World script code: %s\n",arg);
    	}
    }
    Source code (UnigineScript)
    // WorldExpression
    engine.world.call("WorldScriptScope::worldScriptFunc","hello from WorldExpression");
  • If a world script calls a function of a WorldExpression:
    Source code (UnigineScript)
    // World script
    namespace WorldScriptScope {
    
    	void worldScriptFunc(WorldExpression expression) {
    		expression.call("worldExpressionFunc","hello from the world script");
    	}
    }
    Source code (UnigineScript)
    // 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:

Source code (UnigineScript)
Node node = getNode();
Node parent = node.getParent();
Now you can, for example, operate with all of the WorldExpression children as follows:
Source code (UnigineScript)
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.
Notice
The expression passed as an argument must be wrapped with curly braces {} as they define the world expression scope.
If the expression is stored in a file, this file should be included as follows:
Source code (UnigineScript)
expression.setExpression("{\n#include <my_project/scripts/my_expression.h>\n}");
The path should be specified relative to the data directory.

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.

float getUpdateDistanceLimit ( ) #

Returns the distance from the camera within which the object should be updated.

Return value

Distance from the camera within which the object should be updated.
Last update: 2020-04-10
Build: ()