• Which the release of FS2020 we see an explosition of activity on the forun and of course we are very happy to see this. But having all questions about FS2020 in one forum becomes a bit messy. So therefore we would like to ask you all to use the following guidelines when posting your questions:

    • Tag FS2020 specific questions with the MSFS2020 tag.
    • Questions about making 3D assets can be posted in the 3D asset design forum. Either post them in the subforum of the modelling tool you use or in the general forum if they are general.
    • Questions about aircraft design can be posted in the Aircraft design forum
    • Questions about airport design can be posted in the FS2020 airport design forum. Once airport development tools have been updated for FS2020 you can post tool speciifc questions in the subforums of those tools as well of course.
    • Questions about terrain design can be posted in the FS2020 terrain design forum.
    • Questions about SimConnect can be posted in the SimConnect forum.

    Any other question that is not specific to an aspect of development or tool can be posted in the General chat forum.

    By following these guidelines we make sure that the forums remain easy to read for everybody and also that the right people can find your post to answer it.

Disable a joystick axis using Simconnect

Messages
95
Country
malta
Hi all,

Any ideas? I tried the joystick input sample but what that does is disable the info to be displayed rather than blocking it from doing further input to the aircraft.

Hope you can help me.

Regards
 
OK, looks like I am close. Now I have a slight problem.

I want to convert an integer, evt->dwData to a float and, I partially succeeded except that, negative values are really a pain. They are confusing and numbers that aren't making sense at all.

Any help would be appreciated, thanks a lot
 
Am I missing something? dwData is presumably a DWORD which is an unsigned 32-bit integer (0-4,294,967,295) and shouldn't be negative.
 
How is negative an issue? To convert from an integer joystick axis value to a float (I'm assuming you want a -1 to 1 value range) you just use:

float scalar = (float)(int)evt->dwData / 16384.0f;

or if you want double instead of float:

double scalar = (double)(int)evt->dwData / 16384.0;

The (int) cast says to treat as a signed int instead of a DWORD, the (float) or (double) cast says to convert to a floating point value, which at this point will range from -16384.0 to 16384.0. Dividing by 16384.0 just converts to a -1 to 1 scalar value.

16384 is generally the range for joystick axis events, but other events can have different ranges, so check the SDK docs event list for the event(s) you are receiving.


dwData being a DWORD is just a placeholder item in the return structure, you generally need to cast it to an appropriate type depending on who sent the data (in this case, which event was sent). In the case of RequestDataOnXxx return structures, you actually cast the address of dwData to a pointer to the data type you requested.
 
Back
Top