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.

Master 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.
Warning
The functionality described in this article is not available in the Community SDK edition.
You should upgrade to Sim SDK edition to use it.
Inherits: Syncker

This class represents the master interface of the Syncker.

Notice
Syncker plugin must be loaded.

Master Class

Members


int getNumSlaves ( ) #

Returns the total number of the slaves connected to the Master.

Return value

Total number of slaves connected to the Master.

string getSlaveAddress ( int num ) #

Returns the network address of the given slave computer.

Arguments

  • int num - Slave number.

Return value

Network address of the slave computer.

int getSlavePort ( int num ) #

Returns the UDP port used by the slave with the specified number.

Arguments

  • int num - Slave number.

Return value

UDP port of the specified slave computer. 0 - means any unused port available.

long getSlaveID ( int num ) #

Returns the ID of the slave with the specified number. A unique Slave ID consists of two parts: IP (32 bits) + port (16 bits)

Arguments

  • int num - Slave number.

Return value

ID of the slave with the specified number.

string getSlaveWorldName ( int num ) #

Returns the name of the world file currently loaded on the specified slave.

Arguments

  • int num - Slave number.

Return value

Name of the world file currently loaded on the specified slave.

string getSlaveView ( int num, int display_num ) #

Returns the name of the display or projector stored in the configuration file and assigned to the given display of the given slave computer.

Arguments

  • int num - Slave number.
  • int display_num - Display number.

Return value

Name of the display or projector.

void setSyncPlayer ( int enabled ) #

Enables synchronization of the current player's parameters via the UDP protocol:
  • Its transformation
  • Projection matrix
  • Viewport mask
  • Mask for reflections
  • Applied post-materials (if any)
Notice
Current player synchronization is used only when all slaves use the same camera.

Arguments

  • int enabled - 1 to enable synchronization; 0 - to disable it.

int isSyncPlayer ( ) #

Returns a value indicating if synchronization of the current player is enabled.
Notice
Current player synchronization is used only when all slaves use the same camera.

Return value

1 if synchronization of the current player is enabled; otherwise, 0.

void setSyncRender ( int enabled ) #

Enables synchronization of all render parameters via the UDP protocol: light scattering, occlusion, etc.
Notice
When all slaves use the same rendering settings, synchronization of render parameters can be disabled.

Arguments

  • int enabled - 1 to enable synchronization; 0 - to disable it.

int isSyncRender ( ) #

Returns a value indicating if synchronization of all render parameters is enabled.
Notice
When all slaves use the same rendering settings, synchronization of render parameters can be disabled.

Return value

true if synchronization of all render parameters is enabled; otherwise, false.

void addSyncNode ( Node node, int sync_mask = ~0 ) #

Enables synchronization of parameters of the given node via the UDP protocol.
Notice
Scene nodes are not synchronized by default, this method is used to add a particular node to the synchronization queue.

Arguments

  • Node node - Node to synchronize.
  • int sync_mask - Synchronization mask.

void addSyncNodes ( Vector<Node> nodes, int sync_mask = ~0 ) #

Enables synchronization of parameters of given nodes via the UDP protocol.
Notice
Scene nodes are not synchronized by default, this method is used to add particular nodes to the synchronization queue.

Arguments

  • Vector<Node> nodes - List of nodes to synchronize.
  • int sync_mask - Synchronization mask.

void setSyncNodeMask ( Node node, int sync_mask ) #

Sets a new synchronization mask for the specified node. Synchronization mask can be used for optimization reasons limiting the amount of data to be synchronized and thus reducing network load. For example, for moving parts of a helicopter we can set a mask to synchronize only node transformations:
Source code (UnigineScript)
master.setSyncNodeMask(fan_small, MASTER_TRANSFORM);
master.setSyncNodeMask(fan_big, MASTER_TRANSFORM);

Arguments

  • Node node - Node for which a new synchronization mask is to be set.
  • int sync_mask - New synchronization mask to be set for the specified node.

bool isSyncNode ( Node node ) #

Returns a value indicating if synchronization of the given node is enabled. Using this method you can quickly check if a node is monitored by the Syncker (node's states are dispatched to Slaves over the network).

Arguments

  • Node node - Node to be checked.

Return value

true if synchronization of the given node is enabled; otherwise, false.

int getNumSyncNodes ( ) #

Returns the total number of nodes in the synchronization queue.

Return value

Total number of nodes in the synchronization queue.

Node getSyncNode ( int num ) #

Returns the synchronized node with the given number.

Arguments

  • int num - Node number in the synchronization queue.

Return value

Synchronized node.

void removeSyncNode ( int num ) #

Removes the specified node from the synchronization queue.

Arguments

  • int num - Node number in the synchronization queue.

void removeSyncNode ( Node node ) #

Removes the specified node from the synchronization queue.

Arguments

  • Node node - Node to be removed from synchronization.

void removeSyncNodeID ( int node_id ) #

Removes the specified node from the synchronization queue by its ID.

Arguments

  • int node_id - ID of the node to be removed from the synchronization queue.

void removeSyncNodes ( Vector<Node> nodes ) #

Removes the specified nodes from the synchronization queue.

Arguments

  • Vector<Node> nodes - List of nodes to be removed from the synchronization queue.

void clearSyncNodes ( ) #

Removes all nodes from the synchronization queue.

void addSyncMaterial ( Material material ) #

Enables synchronization of the given material via the UDP protocol.
Notice
Scene materials are not synchronized by default, this method is used to add a particular material to the synchronization queue.

Arguments

  • Material material - Material to synchronize.

void addSyncMaterials ( Vector<Material> materials ) #

Enables synchronization of given materials via the UDP protocol.
Notice
Scene materials are not synchronized by default, this method is used to add particular materials to the synchronization queue.

Arguments

  • Vector<Material> materials - List of materials to synchronize.

bool isSyncMaterial ( Material mat ) #

Returns a value indicating if synchronization of the given material is enabled. Using this method you can quickly check if a material is monitored by the Syncker (material's states are dispatched to Slaves over the network).

Arguments

  • Material mat - Material to be checked.

Return value

true if synchronization of the given material is enabled; otherwise, false.

int getNumSyncMaterials ( ) #

Returns the total number of materials in the synchronization queue.

Return value

Total number of materials in the synchronization queue.

Material getSyncMaterial ( int num ) #

Returns the synchronized material with the given number.

Arguments

  • int num - Material number in the synchronization queue.

Return value

Synchronized material.

void removeSyncMaterial ( int num ) #

Removes the material with the given number from the synchronization queue.

Arguments

  • int num - Material number in the synchronization queue.

void removeSyncMaterial ( Material material ) #

Removes the specified material from the synchronization queue.

Arguments

  • Material material - Material to be removed from the synchronization queue.

void removeSyncMaterials ( Vector<Material> materials ) #

Removes the specified materials from the synchronization queue.

Arguments

  • Vector<Material> materials - List of materials to be removed from the synchronization queue.

void clearSyncMaterials ( ) #

Removes all materials from the synchronization queue.

void createNode ( Node node ) #

Synchronizes creation of the given node on all Slaves. This method is to be called after node creation on the Master.
Notice
It is recommended to use the loadNode() or loadNodereference() methods whenever possible as this approach allows adding nodes of all types, unlike the createNode() method that supports only a limited number of them.
Example:
Source code (UnigineScript)
Node node = new NodeDummy(); 
master.createNode(node);

Arguments

  • Node node - Node to create.

void deleteNode ( Node node ) #

Synchronizes deletion of the given node (with all its children) on the Master and all Slaves. Similar to calling deleteLater() for the node.

Arguments

  • Node node - Node to delete.

int isNodeCreatedBySyncker ( Node node ) #

Returns a value indicating if the given node was created via the createNode() method. Using this method you can quickly check if a node is in the run-time objects creation buffer.

Arguments

  • Node node - Node to be checked.

Return value

1 if if the given node was created via the createNode() method; otherwise, 1.

void setSlavePlayer ( int num, Player player ) #

Sets the specified player for the specified Slave.
Notice
Synchronization of the main master camera is disabled.

Arguments

void setSendRate ( float rate ) #

Sets the frequency of sending packets to Slaves. Use this method when network load is too high and slows down the whole IG system. It is recommended to use this method with interpolation enabled.
Notice
Available in the asynchronous mode only.

Arguments

  • float rate - Frequency of sending packets to Slaves. The default value is -1 (every frame).
    Notice
    The value should not be less than 1 / getInterpolationPeriod(), otherwise the image shall be "stuttering".

float getSendRate ( ) #

Returns the current frequency of sending packets to Slaves. Use this method when network load is too high and slows down the whole IG system. It is recommended to use this method with interpolation enabled.
Notice
Available in the asynchronous mode only.

Return value

Frequency of sending packets to Slaves.

void setAllowExtraSlaves ( int slaves ) #

Sets a value indicating if new Slaves can connect to the Master after starting the session. This can be used, for example, to connect a Slave which is used as a tool for configuring projections and does not operate as an IG.

Arguments

  • int slaves - 1 to permit new Slaves connecting to the Master after starting the session; 0 - to forbid it.

int isAllowExtraSlaves ( ) #

Returns a value indicating if new Slaves can connect to the Master after starting the session. This can be used, for example, to connect a Slave which is used as a tool for configuring projections and does not operate as an IG.

Return value

1 if new Slaves can connect to the Master after starting the session; otherwise, 0.

void setViewOffset ( vec3 offset ) #

Sets a new player's head position on the Master.

Arguments

  • vec3 offset - New player's head position coordinates to be set.

double getTime ( ) #

Returns the current Master time.

Return value

Current master time, in seconds.

void setSyncViewOffset ( int offset ) #

Enables synchronization of view offset for projections via the UDP protocol.

Arguments

  • int offset - 1 to enable synchronization; 0 - to disable it.

int isSyncViewOffset ( ) #

Returns a value indicating if synchronization of view offset for projections is enabled.

Return value

true if synchronization of view offset for projections is enabled; otherwise, false.

void setSyncWorldLoad ( int load ) #

Enables synchronization of world loading via the UDP protocol.

Arguments

  • int load - 1 to enable synchronization; 0 - to disable it.

int isSyncWorldLoad ( ) #

Returns a value indicating if synchronization of world loading is enabled.

Return value

true if synchronization of world loading is enabled; otherwise, false.

void setDefaultSyncNodes ( int nodes ) #

Sets a new mask defining types of nodes that will be synchronized automatically after world loading. This mask can be used for optimization reasons limiting the number of nodes to be synchronized and thus reducing network load. For example, you can restrict automatic synchronization to global water, and clouds only:
Source code (UnigineScript)
master.setDefaultSyncNodes(MASTER_WATER_GLOBAL | MASTER_CLOUD_LAYER);

Arguments

  • int nodes - Mask defining types of nodes that will be synchronized automatically after world loading.

int getDefaultSyncNodes ( ) #

Returns the current mask defining types of nodes that will be synchronized automatically after world loading. This mask can be used for optimization reasons limiting the number of nodes to be synchronized and thus reducing network load.

Return value

Current mask defining types of nodes that will be synchronized automatically after world loading.

void loadWorld ( string name ) #

Loads a world from the specified file on the Master and all Slaves. Syncker is able to automatically synchronize the current world, but it works as follows: Slaves shall only start loading a new world after it is completely loaded on the Master. This method provides a 2x speedup of world loading process, as it forces all hosts to start loading the world almost simultaneously.

Arguments

  • string name - Path to the *.world file to be loaded.

Node loadNode ( string name ) #

Loads a node from the specified file to the world on the Master and all Slaves. This is a network analogue of the loadNode() method of the World class.

Arguments

  • string name - Path to the *.node file.

Return value

Loaded node or nullptr if an error has occurred.

NodeReference loadNodeReference ( string name ) #

Loads a node reference from the specified file to the world on the Master and all Slaves. This is a network analogue of the NodeReference class constructor.

Arguments

  • string name - Path to the *.node file.

int isNodeLoadedBySyncker ( Node node ) #

Returns a value indicating if the given node was loaded by the Syncker via the loadNode() or the loadNodeReference() method.

Arguments

  • Node node - Node to be checked.

Return value

1 if if the given node was created via the createNode() method; otherwise, 1.

Variable addCallback ( CALLBACK_INDEX callback, Variable func ) #

Adds a callback of the specified type. Callback functions can be used to determine actions to be performed when sending or receiving user messages, as well as when changing settings on the Master or a Slave. The signature of the callback function can be one of the following:
Source code (UnigineScript)
// for the Syncker.Master.SESSION_STARTED type
void callback_function_name(void);

// for the Syncker.Master.SESSION_FINISHED type
void callback_function_name(void);

// for the Syncker.Master.SLAVE_CONNECTED type
void callback_function_name(int slave_num);

// for the Syncker.Master.SLAVE_DISCONNECTED type
void callback_function_name(int slave_num);

// for the Syncker.Master.MASTER_SETUP_CHANGED type
void callback_function_name(void);

// for the Syncker.Master.SLAVE_SETUP_CHANGED type
void callback_function_name(int slave_num);

Arguments

Return value

Number of the last added callback of the specified type, if the callback was added successfully; otherwise, -1.

bool removeCallback ( CALLBACK_INDEX callback, Variable func ) #

Removes a given callback from the list of callbacks of the specified type. Callback functions can be used to determine actions to be performed when sending or receiving user messages, as well as when changing settings on the Master or a Slave.

Arguments

Return value

true if the position callback with the given ID was removed successfully; otherwise false.
Last update: 2020-06-08
Build: ()