Ultra Engine Player Input Features
There are three new features in the upcoming Ultra Engine (Leadwerks 5) that will make game input better than ever before.
High Precision Mouse Input
Raw mouse input measures the actual movement of the mouse device, and has nothing to do with a cursor on the screen. Windows provides an interface to capture the raw mouse input so your game can use mouse movement with greater precision than the screen pixels. The code to implement this is rather complicated, but in the end it just boils down to one simple command expose to the end user:
Vec2 Window::MouseMovement(const int dpi = 1000);
What's really hilarious about this feature is it actually makes mouse control code a lot simpler. For first-person controls, you just take the mouse movement value, and that is your camera rotation value. There's no need to calculate the center of the window or move the mouse pointer back to the middle. (You can if you want to, but it has no effect on the raw mouse input this command measures.)
The MousePosition() command is still available, but will return the integer coordinates the Windows mouse cursor system uses.
High Frequency Mouse Look
To enable ultra high-precision mouse look controls, I have added a new command:
void Camera::SetFreeLookMode(const bool mode, const float speed = 0.1f, const int smoothing = 0)
When this setting is enabled, the mouse movement will be queried in the rendering thread and applied to the camera rotation. That means real-time mouse looking at 1000 FPS is supported, even as the game thread is running at a slower frequency of 60 Hz. This was not possible in Leadwerks 4, as mouse looking would become erratic if it wasn't measured over a slower interval due to the limited precision of integer coordinates.
XBox Controller Input
I'm happy to say we will also have native built-in support for XBox controllers (both 360 and One versions). Here are the commands:
bool GamePadConnected(const int controller = 0) bool GamePadButtonDown(const GamePadButton button, const int controller = 0) bool GamePadButtonHit(const GamePadButton button, const int controller = 0) Vec2 GamePadAxisPosition(const GamePadAxis axis, const int controller = 0) void GamePadRumble(const float left, const float right, const int controller = 0)
To specify a button you use a button code:
GAMEPADBUTTON_DPADUP
GAMEPADBUTTON_DPADDOWN
GAMEPADBUTTON_DPADLEFT
GAMEPADBUTTON_DPADRIGHT
GAMEPADBUTTON_START
GAMEPADBUTTON_BACK
GAMEPADBUTTON_LTHUMB
GAMEPADBUTTON_RTHUMB
GAMEPADBUTTON_LSHOULDER
GAMEPADBUTTON_RSHOULDER
GAMEPADBUTTON_A
GAMEPADBUTTON_B
GAMEPADBUTTON_X
GAMEPADBUTTON_Y
GAMEPADBUTTON_RTRIGGER
GAMEPADBUTTON_LTRIGGER
And axes are specified with these codes:
GAMEPADAXIS_RTRIGGER
GAMEPADAXIS_LTRIGGER
GAMEPADAXIS_RSTICK
GAMEPADAXIS_LSTICK
These features will give your games new player options and a refined sense of movement and control.
- 1
10 Comments
Recommended Comments