Click here to Skip to main content
6,635,160 members and growing! (13,971 online)
Email Password   helpLost your password?
Multimedia » DirectX » General     Intermediate

Interfacing with a Joystick using C#

By M Harris

An article on how to use a game controller/joystick with C# and Managed DirectX.
C# 2.0.NET 2.0, Win2K, WinXP, Win2003, VistaVS2005, Dev
Posted:8 Dec 2006
Views:94,825
Bookmarked:47 times
Announcements
Loading...
 
Search    
Advanced Search
Add to IE Search
printPrint   add Share
      Discuss Discuss   Broken Article?Report  
29 votes for this article.
Popularity: 6.71 Rating: 4.59 out of 5

1
1 vote, 3.4%
2
1 vote, 3.4%
3
5 votes, 17.2%
4
22 votes, 75.9%
5
Sample Image - joystick.jpg

Introduction

When trying to find some code to use my joystick through C#, I found a sad lack of articles. There were a few posts on forums with bits and pieces of code, but no solid code on how you can use it. The scenario of a 6-axis, 20+ buttoned joystick does not seem to have occured in any C# articles before - much less on CodeProject. I intend to demonstrate how to acquire and use a full 6-axis joystick, plus all the buttons availiable.

Managed DirectX

As Managed DirectX (MDX) 2.0 is not yet released and will be included in XNA, this article uses Managed DirectX 1.1, which is fully compatible with .NET 2.0. However, you will need to change a setting within Visual Studio 2005 or a Loader Lock exception will be thrown as soon as you attempt to get a device list. The setting you need to change in VS 2005 is under the Debug menu, in Exceptions. In Managed Debugging Asssitants, uncheck "Thrown" on Loader Lock. This will allow you to debug your application. Once you have downloaded and installed the SDK, you can add a reference to Microsoft.DirectX.DirectInput to your project. To use Managed DirectX, you will have to download the DirectX Software Developers Kit. At the time of writing, the October 2006 SDK is the latest version availiable. You can download the SDK at the DirectX SDK website. It is about 500 MB, so if you are not on a fast connection, it could take some time.

Finding Your Device

To locate a joystick, a list of all game controllers that are attached to the system needs to be obtained; the DeviceList method does this. Once a list of devices has been found, the first controller in the list will be acquired. You could display a list of controllers to the user and allow for them to select the correct one if you wished.

The variable joystickDevice is a Device object declared as a private member of the class, this will be required in other methods later on.

// Find all the GameControl devices that are attached.

DeviceList gameControllerList = Manager.GetDevices(DeviceClass.GameControl,
    EnumDevicesFlags.AttachedOnly);
// check that we have at least one device.

if (gameControllerList.Count > 0)
{
    // Move to the first device

    gameControllerList.MoveNext();
    DeviceInstance deviceInstance = (DeviceInstance)
        gameControllerList.Current;
    
    // create a device from this controller.

    joystickDevice = new Device(deviceInstance.InstanceGuid);
    joystickDevice.SetCooperativeLevel(this,
        CooperativeLevelFlags.Background |
        CooperativeLevelFlags.NonExclusive);
} 
    
// Tell DirectX that this is a Joystick.

joystickDevice.SetDataFormat(DeviceDataFormat.Joystick); 
// Finally, acquire the device.

joystickDevice.Acquire();

The joystickDevice variable should now be usable.

What is the Joystick Capable of?

This device can now be queried to find out what it is capable of. The DeviceCaps class is able to find out how many axes, buttons and points of view hats the joystick has.

// Find the capabilities of the joystick

DeviceCaps cps = joystickDevice.Caps;
// number of Axes

Debug.WriteLine("Joystick Axis: " + cps.NumberAxes);
// number of Buttons

Debug.WriteLine("Joystick Buttons: " + cps.NumberButtons);
// number of PoV hats

Debug.WriteLine("Joystick PoV hats: " + cps.NumberPointOfViews);

These numbers will probably play an important role when writing an application implementing the joystick.

Getting Device Input

Each time the current state of the joystick is required, the Poll method needs to be called to update the joystickDevice object. Once this is done, the joystick state is updated, allowing current axis positions and button states to be found. The following private method will poll the joystick and update the state. This method updates a JoystickState object called state, which is a private field in the class.

private void Poll ( )
{
    try
    {
        // poll the joystick

        joystickDevice.Poll();
        // update the joystick state field

        state = joystickDevice.CurrentJoystickState;
    }
    catch (Exception err)
    {
        // we probably lost connection to the joystick

        // was it unplugged or locked by another application?

        Debug.WriteLine(err.Message);
    }
}

The exception should probably be dealt with a little smarter, but at the moment, it doesn't matter. This method will need to be called each time we want to retrieve anything from the joystick.

Once the device has been polled for its current state, the axes positions and button state can be retrieved from the state object. The state object only has properties for four axes. The next section demonstrates retrieving the final two that are availiable if a six-axis joystick is in use. An axis' value is between 0 and 65535.

int axisA = state.Rz;
int axisB = state.Rx;
int axisC = state.X;
int axisD = state.Y;

The GetButtons() method on the state object returns a byte array for each of the buttons. When the value is 128, the button has been pressed. A button is read as follows:

bool buttonA = buttons[0] >= 128;

You can do this for each of your joystick's buttons. Additionally, PoV hats also show up in the buttons collection.

Finding Additional Inputs

If the joystick has additional axes that are not availiable as properties on the state object, you can use the GetSliders method to obtain an additional two axes. The GetSliders method returns an array of two ints; just like the other axis, these are values from 0 to 65535.

int[] extraAxis = state.GetSlider();
int axisE = extraAxis[0];
int axisF = extraAxis[1];

Conclusion

Hopefully, this information will be useful to you and you'll be able to use your joystick without any issues. This article only covers the basics and you may wish to implement Force Feedback or PoV hats or other technologies that are availiable.

History

  • Friday, 8 December 2006 - First version

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here

About the Author

M Harris


Member
Mark spends his spare time working on his radio control planes, helicopters and trucks. He devises new ways to make them crash faster and easier than ever before. Mark has progressed this joy of destroying nice toys into build UAV's - which can crash themselves with, or without user input.

Mark enjoys all aspects of C#, specifically windows programming and regular expressions.
Occupation: Software Developer
Location: Australia Australia

Other popular DirectX articles:

Article Top
You must Sign In to use this message board.
FAQ FAQ 
 
Noise Tolerance  Layout  Per page   
 Msgs 1 to 25 of 72 (Total in Forum: 72) (Refresh)FirstPrevNext
QuestionProblem with Thrustmaster F430 PinmemberEarlybird842:52 6 Nov '09  
QuestionInterfacing With Multiple Joysticks PinmemberJordon Griffiths4:02 27 Oct '09  
GeneralInteracting with the POV hats Pinmemberdriving10:50 2 Sep '09  
GeneralRe: Interacting with the POV hats Pinmembernewtom2:29 25 Sep '09  
GeneralNot working if the screen isn`t the main one Pinmemberskauttech0:34 24 Jul '09  
GeneralAwesome work Pinmembercyper_14:21 21 Jul '09  
GeneralNot quite sure how to interface with your code. PinmemberMember 437529722:22 16 Jun '09  
GeneralError.... Pinmemberyodady1417:27 29 Mar '09  
GeneralThanks & a quick note PinmemberMart7610:53 13 Feb '09  
Generalplease help Pinmemberkhaste_00712:47 12 Jan '09  
QuestionDisabling "pushed" status Pinmemberpmorata21:29 9 Nov '08  
GeneralBlank Forms Window Pinmemberpabsel20:47 30 Oct '08  
GeneralNew joystick support Pinmembertlhintoq2:27 25 Jul '08  
AnswerRe: New joystick support PinmemberTimJoseph17:08 8 Oct '08  
GeneralRe: New joystick support Pinmembertlhintoq17:16 8 Oct '08  
GeneralJoystick Axis Problem Pinmembercvoss4220:52 18 Jun '08  
GeneralJoystick connected via USB Pinmembercblazer0:05 3 Jun '08  
GeneralRe: Joystick connected via USB Pinmembercblazer4:39 4 Jun '08  
GeneralDoes anybody know how to fix the problem with .NET 3.5 and DX 10 ? PinmemberKrimi23:15 24 May '08  
AnswerFix: Disable Managed Debugging Assistants PinmemberSolution Alchemist12:28 16 Aug '08  
GeneralSlider controls Pinmemberecain19:26 7 May '08  
GeneralRe: Slider controls Pinmemberecain20:25 7 May '08  
GeneralThanks Pinmemberjibesh22:03 5 May '08  
GeneralSample cannot be debugged with .NET 3.5 and DirectX 10 Pinmembersignat9:05 1 May '08  
AnswerFix:: Disable Managed Debugging Assistants PinmemberSolution Alchemist12:22 16 Aug '08  

General General    News News    Question Question    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

PermaLink | Privacy | Terms of Use
Last Updated: 8 Dec 2006
Editor: Genevieve Sovereign
Copyright 2006 by M Harris
Everything else Copyright © CodeProject, 1999-2009
Web18 | Advertise on the Code Project