This page has been translated automatically.
视频教程
界面
要领
高级
实用建议
UnigineEditor
界面概述
资产工作流程
设置和首选项
项目开发
调整节点参数
Setting Up Materials
Setting Up Properties
照明
Landscape Tool
Sandworm (Experimental)
使用编辑器工具执行特定任务
Extending Editor Functionality
嵌入式节点类型
Nodes
Objects
Effects
Decals
Light Sources
Geodetics
World Objects
Sound Objects
Pathfinding Objects
Players
编程
基本原理
搭建开发环境
Usage Examples
UnigineScript
C++
C#
UUSL (Unified UNIGINE Shader Language)
File Formats
Rebuilding the Engine Tools
GUI
双精度坐标
应用程序接口
Containers
Common Functionality
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
注意! 这个版本的文档是过时的,因为它描述了一个较老的SDK版本!请切换到最新SDK版本的文档。
注意! 这个版本的文档描述了一个不再受支持的旧SDK版本!请升级到最新的SDK版本。

Unigine.ControlsJoystick Class

Inherits: Controls

This class handles joystick input. Unlike XBox 360 controllers, generic joysticks cannot be hot-plugged. Therefore, a joystick should be already plugged before you create an instance of this class.

The ControlsJoystick class provides access to the following controller input:

  • Axes detect movement along X and Y axes (if a joystick is two-axis, which is the most typical case) and along Z axis (if it is three-axis one). Two-axis joysticks are configured in such a way that left-to-right movement of the stick is mapped to the movement along the X axis, while movement from backward to forward (down-up) indicates movement along the Y axis. In case of 3D joystick, twisting the stick to the left (counter-clockwise) or to the right (clockwise) corresponds to movement along the Z axis.
    Axes are quired for their states via getAxis(). To provide smooth interpolation between frames and avoid jerks, axis values can be filtered viasetFilter().
  • Buttons correspond to the each button on the controller and can be either pressed or unpressed. Just in case with mouse/keyboard controls, they can be mapped to the specific controls states to bind input events and programmed actions.
    You can either bind buttons in the code via setStateButton() or let the user assign the button for a control state via getStateEvent().
  • POV (Point-Of-View) hat switches indicate the direction of view and support a number of positions such as left, right, up and down (similar to a D-pad).

A joystick should update the physical state of all its input controls (i.e. check whether the user has pressed the button, for example) each frame using updateEvents().

See also#

A UnigineScript API sample <UnigineSDK>/data/samples/controls/joystick_00

ControlsJoystick Class

Properties

int NumButtons#

The number of buttons supported by the joystick.

int NumPovs#

The number of POV hat switches supported by the joystick.

int NumAxes#

The number of axes supported by the joystick.

float Filter#

A filter value used to correct the current state of the joystick axis relative to the previous one:
  • Filter value of 0 means there is no interpolation and the current value is not corrected.
  • Filter value of 1 means the previous state is used instead of the current one.
set
Sets a filter value used to correct the current state of the joystick axis relative to the previous one.
set value - Filter value for interpolation between axis states. The provided value is clamped to a range [0;1].
  • Filter value of 0 means there is no interpolation and the current value is not corrected.
  • Filter value of 1 means the previous state is used instead of the current one.

string Name#

The name of the joystick.

bool IsAvailable#

Checks if the joystick is available.

int Number#

The joystick number.

string GuidInstance#

GUID of the joystick device. This can be very useful in case your application uses non-standard custom input devices to ensure proper configuration (dead zones, inverse flags, correction curves, etc.).

string GuidProduct#

GUID supplied by the device's manufacturer. This can be very useful in case your application uses non-standard custom input devices to ensure proper configuration (dead zones, inverse flags, correction curves, etc.).

Members


static ControlsJoystick ( int num ) #

Constructor. Creates a new joystick.

Arguments

  • int num - Joystick number.

float GetAxis ( int axis ) #

Returns a state value of a given axis. It includes position of the joystick along the following axes: X, Y (two-axis joystick) and Z (three-axis joystick). When a joystick is in the center position, X and Y axes values are zero. Negative values indicate left or down; positive values indicate right or up.

Arguments

  • int axis - Axis number.

Return value

Value in range [-1; 1].

string GetAxisName ( int axis ) #

Returns the name of a given axis.

Arguments

  • int axis - Axis number.

Return value

Axis name.

int GetButton ( int button ) #

Returns a button state (pressed or not pressed).

Arguments

  • int button - Button number.

Return value

1 if the button is pressed; otherwise, 0.

string GetButtonName ( int button ) #

Returns the name of a given button.

Arguments

  • int button - Button number.

Return value

Button name.

string GetGuidProduct ( ) #

Returns the GUID supplied by the device's manufacturer. This can be very useful in case your application uses non-standard custom input devices to ensure proper configuration (dead zones, inverse flags, correction curves, etc.).

Return value

GUID supplied by the device's manufacturer.

string GetGuidInstance ( ) #

Returns the GUID of the joystick device. This can be very useful in case your application uses non-standard custom input devices to ensure proper configuration (dead zones, inverse flags, correction curves, etc.).

Return value

GUID of the joystick device.

int GetPov ( int pov ) #

Returns a POV hat switch state. POV hats support the following positions: left, right, up and down.

Arguments

  • int pov - POV pad number.

Return value

One of the following:
  • -1  — not pressed
  • 0  — pressed "up"
  • 4500  — pressed "up" and "right"
  • 9000  — pressed "right"
  • 13500  — pressed "down" and "right"
  • 18000  — pressed "down"
  • 22500  — pressed "down" and "left"
  • 27000  — pressed "left"
  • 31500  — pressed "up" and "left"

string GetPovName ( int pov ) #

Returns the name of a given POV hat switch.

Arguments

  • int pov - POV hat number.

Return value

POV hat name.

void SetStateButton ( int state, int button ) #

Sets a joystick button that switches a given state on or off.

Arguments

  • int state - State (one of the CONTROLS_STATE_* variables).
  • int button - Button number.

int GetStateButton ( int state ) #

Returns a game pad button that switches a given state on and off.

Arguments

Return value

Button that switches the given state.

void GetStateEvent ( int state ) #

Lets the user assign a joystick button to a given state.

Arguments

  • int state - State (one of the CONTROLS_STATE_* variables), to which a button is going to be assigned.

int IsStateEvent ( ) #

Returns a value indicating if a joystick button is successfully assigned to a state.

Return value

1 if a button is already assigned; otherwise, 0.

string GetStateName ( int state ) #

Returns the name of a given state, that was assigned to one of controls.

Arguments

Return value

State name.

int ClearButton ( int button ) #

Returns a button state and clears it to 0 (not pressed).

Arguments

  • int button - Button number.

Return value

1 if the button is pressed, and this function was not called previously in the current frame; otherwise, 0.

int RestoreState ( Stream stream ) #

Restores ControlsJoystick settings from the stream.

Arguments

  • Stream stream - The stream to save controls data.

Return value

1 if the ControlsJoystick settings are restored successfully; otherwise, 0.

int SaveState ( Stream stream ) #

Saves ControlsJoystick settings into the stream.

Arguments

  • Stream stream - The stream to save controls data.

Return value

1 if the ControlsJoystick settings are saved successfully; otherwise, 0.

int UpdateEvents ( ) #

Scans the joystick controls (synchronizes joystick button states with the controller itself). Should be called each frame.
Notice
On Windows, in case a joystick is not connected, this function can substantially increase per-frame update time. (This happens due to calling IDirectInput8::EnumDevices() method.)

Return value

0 if a joystick is not found or updateEvents() already has been called for the frame; otherwise 1.
Last update: 2020-11-24
Build: ()