distribution/packages/emulators/tools/control-gen/control-gen.cpp

34 lines
1.2 KiB
C++
Raw Normal View History

2022-12-22 22:09:57 +00:00
// SPDX-License-Identifier: GPL-2.0-or-later
// Copyright (C) 2022-present BrooksyTech (https://github.com/brooksytech)
#include <stdio.h>
#include <SDL.h>
#include <cstdlib>
2022-12-22 22:09:57 +00:00
int main()
{
SDL_Init(SDL_INIT_JOYSTICK);
atexit(SDL_Quit);
2022-12-22 22:09:57 +00:00
int num_joysticks = SDL_NumJoysticks();
int i;
for(i = 0; i < num_joysticks; ++i)
{
SDL_Joystick* js = SDL_JoystickOpen(i);
if (js)
{
SDL_JoystickGUID guid = SDL_JoystickGetGUID(js);
char guid_str[1024];
SDL_JoystickGetGUIDString(guid, guid_str, sizeof(guid_str));
const char* name = SDL_JoystickName(js);
2022-12-22 22:09:57 +00:00
printf("controlfolder=\"/storage/.config/gptokeyb\"\nESUDO=\"sudo\"\nESUDOKILL=\"-sudokill\"\nexport SDL_GAMECONTROLLERCONFIG_FILE=\"$controlfolder/gamecontrollerdb.txt\"\nSDLDBFILE=\"${SDL_GAMECONTROLLERCONFIG_FILE}\"\n[ -z \"${SDLDBFILE}\" ] && SDLDBFILE=\"${controlfolder}/gamecontrollerdb.txt\"\nSDLDBUSERFILE=\"/storage/.config/SDL-GameControllerDB/gamecontrollerdb.txt\"\nget_controls() {\nANALOGSTICKS=\"2\"\nDEVICE=\"%s\"\nparam_device=\"%s\"\n}\nGPTOKEYB=\"$controlfolder/gptokeyb $ESUDOKILL\"",
guid_str, name);
2022-12-22 22:09:57 +00:00
SDL_JoystickClose(js);
}
}
2022-12-22 22:09:57 +00:00
return 0;
}