This page has been translated automatically.
编程
Fundamentals
Setting Up Development Environment
UnigineScript
High-Level Systems
C++
C#
UUSL (Unified UNIGINE Shader Language)
File Formats
Rebuilding the Engine and Tools
GUI
Double Precision Coordinates
应用程序接口
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
注意! 这个版本的文档是过时的,因为它描述了一个较老的SDK版本!请切换到最新SDK版本的文档。
注意! 这个版本的文档描述了一个不再受支持的旧SDK版本!请升级到最新的SDK版本。

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: ()