C++C++17Game DevelopmentLanguage FeatureLearn C++

How To Use A Game Pad Or Joystick Controller In C++ On Windows

C++ is one of the most powerful programming languages that we use for all sorts of purposes, from regular applications, games, business, industrial infrastructure, robotics, and in the control of IoT devices. The most well-known controllers for those areas where human and computer interaction are important and stretches beyond simple keyboard input are joysticks or gamepads. One of the simplest examples to use them on Windows is using the venerable XInput library which has been around for quite a long time but can still be easily used with the latest C++ Compiler. In this post, we explain how you can use a gamepad or joystick controller in C++ with Xinput library.

Is there a component for the gamepad or joystick in C++ On Windows?

If you are looking for a ready-to-use component library, there are Delphi and C++ Builder-compatible components built on the XInput library. For example, the Controller library is a Delphi and C++ Builder component that allows applications to receive input from an Xbox Controller. The main features of this library are,

  • Uses Windows XInput API.
  • Available for Delphi/C++ Builder 6 – 11 and Lazarus 2.0.12.
  • Source code included in the registered version.
  • Royalty free distribution.

You can download the trial version of the XInput library or you can buy a professional edition from Winsoft.sk.

How To Use A Game Pad Or Joystick Controller In C++ On Windows a game controller

How can I control a gamepad or joystick in C++ with the Xinput Library?

The XInput library is deprecated but it still supported by Microsoft. They recommend moving towards the GameInput library or Windows.Game.Input for Windows applications.

If we look at these kinds of libraries (i.e GamePad.h library), like MS’ own DirectXTK, we can see that the toolkit allows one to define USING_XINPUT vs. USING_GAMEINPUT vs. USING_WINDOWS_GAMING_INPUT to pick which underlying library is used.

If we compare  XInput compared to GameInput:

  1. XInput library is fairly old and easy to implement Windows applications.
  2. XInput library is limited to 4 controllers.
  3. XInput library has no uniform interface to other inputs (like mouse/keyboard).
  4. XInput library input occurs with higher latency.
  5. XInput library is not friendly with other controllers. i.e. no support for Xbox One Rumble Motors.

So, briefly, DirectInput is a better long-term choice than XInput. If you still want to use XInput, you can read more about https://learn.microsoft.com/en-us/windows/win32/xinput/getting-started-with-xinput

XINPUT_GAMEPAD structure (declared in <xinput.h>) is explained here : https://learn.microsoft.com/en-us/windows/win32/api/xinput/ns-xinput-xinput_gamepad

As in there, this structure has these members: wButtons, bLeftTrigger, bRightTrigger, sThumbLX, sThumbLY, sThumbRX, sThumbRY. Here wButtons member is used as a bitmask of the device digital buttons, it can be used as below,

wButtons
Device digital button flags
Gamepad
Bitmask
XINPUT_GAMEPAD_DPAD_UP0x0001
XINPUT_GAMEPAD_DPAD_DOWN0x0002
XINPUT_GAMEPAD_DPAD_LEFT0x0004
XINPUT_GAMEPAD_DPAD_RIGHT0x0008
XINPUT_GAMEPAD_START0x0010
XINPUT_GAMEPAD_BACK0x0020
XINPUT_GAMEPAD_LEFT_THUMB0x0040
XINPUT_GAMEPAD_RIGHT_THUMB0x0080
XINPUT_GAMEPAD_LEFT_SHOULDER0x0100
XINPUT_GAMEPAD_RIGHT_SHOULDER0x0200
XINPUT_GAMEPAD_A0x1000
XINPUT_GAMEPAD_B0x2000
XINPUT_GAMEPAD_X0x4000
XINPUT_GAMEPAD_Y0x8000

How to use a gamepad or joystick in C++?

If you wonder how XInput library works, you can create a simple example as in given steps below.

First, we need <XInput.h> library header to use XInput library. This is how you can use XInput library in C++.

Now, lets create a TController class that have n for the controller number and state for it. Here is an example.

Then we need to add some methods for this class, first lets set our private controller number n in construction like so:

now let’s get XINPUT_STATE with a method as below.

We should check if this controller is connected in our loop, so we can create this check as shown below.

Vibration in gamepads is good to measure feedback, if you have a device that has vibration you can set left and right motor speeds as below.

as a result, if we sum up all, the first part of our code will be we have shown below.

I think this is the simplest and most useful controller C++ class that can be used with the XInput library. Now, let’s see how we can use this in the second part of our code.

In this while loop we can check the Gamepad button. For example, we can use XINPUT_GAMEPAD_A for the A button of most generic gamepads. Here is an example below, that prints “A.” and vibrates the left motor of a controller as below,

Is there a full example of to use gamepad or joystick in C++?

The example above works well with my son’s Logitech F710 Wireless on Windows Console application in C++ Builder. This controller class works with FMX app and VCL apps too. I think, this example is compatible with XBOX series too. If you do test this on an XBOX, please let us know in the comments how you got on. Here is a full example that uses the XInput library to communicate with a game controller or joystick in C++.

How To Use A Game Pad Or Joystick Controller In C++ On Windows C++ Builder logo

C++ Builder is the easiest and fastest C and C++ IDE for building simple or professional applications on the Windows, MacOS, iOS & Android operating systems. It is also easy for beginners to learn with its wide range of samples, tutorials, help files, and LSP support for code. RAD Studio’s C++ Builder version comes with the award-winning VCL framework for high-performance native Windows apps and the powerful FireMonkey (FMX) framework for cross-platform UIs.

There is a free C++ Builder Community Edition for students, beginners, and startups; it can be downloaded from here. For professional developers, there are Professional, Architect, or Enterprise version.

Oh hi there 👋
It’s nice to meet you.

Sign up to receive awesome C++ content in your inbox, every day.

We don’t spam! Read our privacy policy for more info.


Reduce development time and get to market faster with RAD Studio, Delphi, or C++Builder.
Design. Code. Compile. Deploy.
Start Free Trial

Free C++Builder Community Edition

About author

Dr. Yilmaz Yoru has 35+ years of coding with more than 30+ programming languages, mostly C++ on Windows, Android, Mac-OS, iOS, Linux, and some other operating systems. He graduated and received his MSc and PhD degrees from the Department of Mechanical Engineering of Eskisehir Osmangazi University. He is the founder and CEO of ESENJA LLC Company. His interests are Programming, Thermodynamics, Fluid Mechanics, Artificial Intelligence, 2D & 3D Designs, and high-end innovations.
Related posts
C++C++11C++14C++17C++20Learn C++

What Is The Priority Queue (std::priority_queue) In Modern C++?

C++C++11C++14C++17C++20

What Is The Stack (std::stack) In Modern C++?

C++C++11C++14C++17C++20Learn C++

What Is The Queue (std::queue) In Modern C++?

C++C++11C++14C++17Learn C++SyntaxTemplates

What Are The Logical Operation Metafunctions In Modern C++?