WOWCube Docs logo
WOWCube Docs
Mission Control
Section Shortcuts
APIExamplesSourceWOWConnectChangelog
Filters
SDK and language defaults persist in cookies.
SDK version
Navigation Tree
Collapsed by default, focused on the active path.
Made byMcKay Seamons
GitHub
  1. Home
  2. Docs
  3. API
  4. Data Structures
Mission NodeSDK 6.1C++API Reference

Data Structures

Data Structures AppVersion t Description Fields: full full version value encoded in one 32 bit integer major major version value minor minor version value pa...

API / SDK 6.1 / C++ / API Reference

Data Structures

AppVersion_t

Description

Fields:

  • full - full version value encoded in one 32 bit integer
  • major - major version value
  • minor - minor version value
  • patch - patch/build version value

Synopsis

Data Structures
CPP
1union __attribute__((packed)) AppVersion_t {
2 uint32_t full;
3 struct {
4 uint16_t patch : 16;
5 uint8_t minor : 4;
6 uint8_t major : 4;
7 uint8_t reserved: 8;
8 };
9};
10
Wrapped for easier reading. Turn wrap off to inspect exact line lengths.

GFX_Particle_t

Description

Fields:

  • ttl - a particles lifetime in ms
  • vx, vy - an initial particles velocity in px/ms
  • ax, ay - a particles acceleration in px/ms^2
  • explosion - an explosion emulation flag
  • velocity - an explosion velocity

Synopsis

Data Structures
CPP
1struct GFX_Particle_t {
2 int32_t ttl;
3 int32_t vx;
4 int32_t vy;
5 int32_t ax;
6 int32_t ay;
7 int32_t explosion;
8 int32_t velocity;
9 int32_t duration;
10 int32_t frequency;
11 int32_t max;
12 int32_t loop;
13 uint32_t time;
14 };
15
Wrapped for easier reading. Turn wrap off to inspect exact line lengths.

LB_info_t

Description

Fields:

  • leadCount - number of best results available to display
  • selfPosition - place which current user holds
  • selfScore - current user`s score
  • wholeUserListCount - total number of users

Synopsis

Data Structures
CPP
1struct LB_info_t {
2 int32_t boardCount;
3 int32_t selfPosition;
4 int32_t selfScore;
5 int32_t wholeUserListCount;
6 };
7
Wrapped for easier reading. Turn wrap off to inspect exact line lengths.

TOPOLOGY_faceletInfo_t

Description

Fields:

  • module - an ID of the module on which the facelet is located
  • screen - a number of the module screen which corresponds to the facelet
  • connected - connection status, depends on the context

Synopsis

Data Structures
CPP
1struct TOPOLOGY_faceletInfo_t {
2 int32_t module;
3 int32_t screen;
4 int32_t connected;
5 };
6
Wrapped for easier reading. Turn wrap off to inspect exact line lengths.

TOPOLOGY_place_t

Fields:

  • face - a face number on which screen is located
  • position - a position on the face on which screen is located

Synopsis

Data Structures
CPP
1struct TOPOLOGY_place_t {
2 int32_t face;
3 int32_t position;
4 };
5
Wrapped for easier reading. Turn wrap off to inspect exact line lengths.

TOPOLOGY_twistInfo_t

Description

Fields:

  • screen - a number of the screen around which a twist was detected
  • count - how many twists happened from the application start
  • direction - a twist direction

Synopsis

Data Structures
CPP
1struct TOPOLOGY_twistInfo_t {
2 int32_t screen;
3 int32_t count;
4 int32_t direction;
5 };
6
Wrapped for easier reading. Turn wrap off to inspect exact line lengths.

Jump Grid

On This Page

AppVersion tGFX Particle tLB info tTOPOLOGY faceletInfo tTOPOLOGY place tTOPOLOGY twistInfo t
Context Rail

Related nodes

Global Defines
API / SDK 6.1 / C++ / API Reference
Enumerated Types
API / SDK 6.1 / C++ / API Reference
Application
API / SDK 6.1 / C++ / API Reference
Graphics
API / SDK 6.1 / C++ / API Reference
Previous Node
Global Defines
API / SDK 6.1 / C++ / API Reference
Next Node
Enumerated Types
API / SDK 6.1 / C++ / API Reference