Writing Joystick Code: Part 4

From FlightGear wiki
Revision as of 04:31, 15 October 2012 by Macnab (talk | contribs)
Jump to navigation Jump to search
WIP.png Work in progress
This article or section will be worked on in the upcoming hours or days.
See history for the latest developments.

Axis Numbering

Until now we have got our joysticks working in our system by defining each axis with the following format

 <axis n="0">
   <desc>Aileron</desc>
   <binding>
   ...
 </axis>


This fine if you are using the joystick on your system. But imagine that you have worked out a brilliant button assignment scheme, using modifiers, so that the joystick is a joy to use. You want to post your code in the forum so everyone can use it.

There's a problem though. Different operating systems assign different numbers to the axes. Let's say that with joystick, Windows says that the Aileron axis is number 0, and Macs and Linux say it is axis 2. We have to change our format of the axis definition to

 <axis>
   <win>0</win>
   <mac>2</mac>
   <unix>2</unix>
   <desc>Aileron</desc>
   <binding>
   ...
 </axis>


Now the joystick will work with all operating systems.


The reason we write <unix> is because Linux is a variant of Unix.


Unfortunately, there is no fixed relationship between axis numbering in the operating systems, and the information must be garnered form experience. Fortunately, the button numbering doesn't change.


Here is a list of axis numbers for various joysticks. The list will be expanded as and when I get the required information. If you have axis numbers for a joystick not listed, please post the information here.



 Logitech WingMan Extreme Digital 3D (USB)
 
 Ailerons   win 0   unix 0   mac 0
 Elevator   win 1   unix 1   mac 1
 Throttle   win 2   unix 3   mac 3   # Slider
 Rudder     win 3   unix 2   mac 2   # Twist
 Hat        win 6   unix 4   mac 4   # Left/right
 Hat        win 7   unix 5   mac 5   # Up/down

 Saitek X52 Pro Flight Control System
 Aileron                       win ?   unix 0   mac 0
 Elevator                      win ?   unix 1   mac 1
 Rudder                        win ?   unix 5   mac 2
 Throttle                      win ?   unix 2   mac 3
 Throttle Top Rotary Dial      win ?   unix 4   mac 4
 Throttle Bottom Rotary Dial   win ?   unix 3   mac 5
 Throttle Slider               win ?   unix 6   mac 6
 Bottom Stick Hat              win ?   unix 7   mac 7
 Top Stick Hat                 win ?   unix 8   mac 8

 I have listed this because the mac axis numbers are newly available'
 As you can see, win numbers still missing. The ones I have are just a guess.






Go back to Writing Joystick Code: Part 3




Any complaints/suggestions/questions/kudos can be posted here.