• 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.

C variables in SimConnect_MapClientEventToSimEvent()

Messages
28
Country
france
Hi All,

I would like to map 0,1,..9 keystroke in a Simconnect application. Although the following code works :

Code:
hr = SimConnect_MapClientEventToSimEvent(NewSimConnect, EVENT_0);
hr = SimConnect_MapInputEventToClientEvent(NewSimConnect, INPUT_NUM, "0", EVENT_0);
hr = SimConnect_AddClientEventToNotificationGroup(NewSimConnect, GROUP_NUM, EVENT_0);
//
hr = SimConnect_MapClientEventToSimEvent(NewSimConnect, EVENT_1);
hr = SimConnect_MapInputEventToClientEvent(NewSimConnect, INPUT_NUM, "1", EVENT_1);
hr = SimConnect_AddClientEventToNotificationGroup(NewSimConnect, GROUP_NUM, EVENT_1);
//
and so on...

I was thinking to do something more concise in the following way :

Code:
char* num = (char*)malloc(4 * sizeof(char));
char* eve = (char*)malloc(8 * sizeof(char));
for(int n=0; n<=9; n++) {
	sprintf(num, "\"%1d\"", n);
	sprintf(eve, "EVENT_%1d", n);

        hr = SimConnect_MapClientEventToSimEvent(NewSimConnect, eve);
        hr = SimConnect_MapInputEventToClientEvent(NewSimConnect, INPUT_NUM, num, eve);
        hr = SimConnect_AddClientEventToNotificationGroup(NewSimConnect, GROUP_NUM, eve);
	}
where num and eve will be the string "0", EVENT_O ; "1", EVENT_1 ; and so on...

However it doesn't work because num and eve are not replace by there values in the SimConnect arguments....

Does anybody know if it's possible to do it the way I was thinking ?

Thanks.
 
The event code has to be an int, not a string, so the code for the eve var is incorrect. Instead you would want something like:

int eve_code = (int)EVENT_0 + n;
 
Hi Tim,

Thanks it works (with the additional change sprintf(num, "%1d", n) because num is already a string no need of the \").
 
Back
Top