This page has been translated automatically.
Programming
Fundamentals
Setting Up Development Environment
Usage Examples
UnigineScript
High-Level Systems
C++
C#
UUSL (Unified UNIGINE Shader Language)
File Formats
Rebuilding the Engine and 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
Networking Functionality
Pathfinding-Related Classes
Physics-Related Classes
Plugins-Related Classes
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.

cigi_client_00

This article describes the data/samples/plugins/cigi_client_00.cpp sample.

The cigi_client_00 sample demonstrates how to:

  • Initialize connection via the CIGI protocol in the script
  • Respond to packets received from the CIGI host
Notice
Start the CIGI Host before running the sample.

It is required to change values of the following variables in the cigi_client_00.cpp file before running the sample:

  • host should contain an IP address of the CIGI Host (by default it is 192.168.0.20)
  • recv should contain a port, which is used by the CIGI Host for sending packets over the network (default value is 33333)
  • send should contain a port, which is used by the CIGI Host for getting a response from the master (default value is 44444)

The variables listed above are specified in the cigi_client_00.cpp as follows:

Source code (UnigineScript)
#include <samples/plugins/common/plugins.h>
#include <samples/common/info.h>

#ifdef HAS_CIGI_CLIENT

/*
 */
string host = "192.168.0.20";
int send = 33333;
int recv = 44444;
int size = 1472;

/*
 */
Info info;

/*
 */
string reflect_packet(CigiHostPacket packet) {
...

Data sent by the CIGI host to the image generator should appear as follows:

See Also

Last update: 2017-07-03
Build: ()