Переглянути джерело

Add GetGamepadGUID for PLATFORM_DESKTOP_GLFW

pull/4733/head
asdqwe 2 місяці тому
джерело
коміт
730371aafb
8 змінених файлів з 51 додано та 2 видалено
  1. +7
    -0
      src/platforms/rcore_android.c
  2. +6
    -0
      src/platforms/rcore_desktop_glfw.c
  3. +7
    -0
      src/platforms/rcore_desktop_rgfw.c
  4. +7
    -0
      src/platforms/rcore_desktop_sdl.c
  5. +7
    -0
      src/platforms/rcore_drm.c
  6. +7
    -0
      src/platforms/rcore_template.c
  7. +9
    -2
      src/platforms/rcore_web.c
  8. +1
    -0
      src/raylib.h

+ 7
- 0
src/platforms/rcore_android.c Переглянути файл

@ -624,6 +624,13 @@ int SetGamepadMappings(const char *mappings)
return 0;
}
// Get gamepad GUID
const char *GetGamepadGUID(int gamepad)
{
TRACELOG(LOG_WARNING, "GetGamepadGUID() not implemented on target platform");
return "";
}
// Set gamepad vibration
void SetGamepadVibration(int gamepad, float leftMotor, float rightMotor, float duration)
{

+ 6
- 0
src/platforms/rcore_desktop_glfw.c Переглянути файл

@ -1084,6 +1084,12 @@ int SetGamepadMappings(const char *mappings)
return glfwUpdateGamepadMappings(mappings);
}
// Get gamepad GUID
const char *GetGamepadGUID(int gamepad)
{
return glfwGetJoystickGUID(gamepad);
}
// Set gamepad vibration
void SetGamepadVibration(int gamepad, float leftMotor, float rightMotor, float duration)
{

+ 7
- 0
src/platforms/rcore_desktop_rgfw.c Переглянути файл

@ -789,6 +789,13 @@ int SetGamepadMappings(const char *mappings)
return 0;
}
// Get gamepad GUID
const char *GetGamepadGUID(int gamepad)
{
TRACELOG(LOG_WARNING, "GetGamepadGUID() not implemented on target platform");
return "";
}
// Set gamepad vibration
void SetGamepadVibration(int gamepad, float leftMotor, float rightMotor, float duration)
{

+ 7
- 0
src/platforms/rcore_desktop_sdl.c Переглянути файл

@ -1236,6 +1236,13 @@ int SetGamepadMappings(const char *mappings)
return SDL_GameControllerAddMapping(mappings);
}
// Get gamepad GUID
const char *GetGamepadGUID(int gamepad)
{
TRACELOG(LOG_WARNING, "GetGamepadGUID() not implemented on target platform");
return "";
}
// Set gamepad vibration
void SetGamepadVibration(int gamepad, float leftMotor, float rightMotor, float duration)
{

+ 7
- 0
src/platforms/rcore_drm.c Переглянути файл

@ -619,6 +619,13 @@ int SetGamepadMappings(const char *mappings)
return 0;
}
// Get gamepad GUID
const char *GetGamepadGUID(int gamepad)
{
TRACELOG(LOG_WARNING, "GetGamepadGUID() not implemented on target platform");
return "";
}
// Set gamepad vibration
void SetGamepadVibration(int gamepad, float leftMotor, float rightMotor, float duration)
{

+ 7
- 0
src/platforms/rcore_template.c Переглянути файл

@ -381,6 +381,13 @@ int SetGamepadMappings(const char *mappings)
return 0;
}
// Get gamepad GUID
const char *GetGamepadGUID(int gamepad)
{
TRACELOG(LOG_WARNING, "GetGamepadGUID() not implemented on target platform");
return "";
}
// Set gamepad vibration
void SetGamepadVibration(int gamepad, float leftMotor, float rightMotor, float duration)
{

+ 9
- 2
src/platforms/rcore_web.c Переглянути файл

@ -162,13 +162,13 @@ bool WindowShouldClose(void)
// REF: https://emscripten.org/docs/porting/asyncify.html
// WindowShouldClose() is not called on a web-ready raylib application if using emscripten_set_main_loop()
// and encapsulating one frame execution on a UpdateDrawFrame() function,
// and encapsulating one frame execution on a UpdateDrawFrame() function,
// allowing the browser to manage execution asynchronously
// Optionally we can manage the time we give-control-back-to-browser if required,
// but it seems below line could generate stuttering on some browsers
emscripten_sleep(12);
return false;
}
@ -914,6 +914,13 @@ int SetGamepadMappings(const char *mappings)
return 0;
}
// Get gamepad GUID
const char *GetGamepadGUID(int gamepad)
{
TRACELOG(LOG_WARNING, "GetGamepadGUID() not implemented on target platform");
return "";
}
// Set gamepad vibration
void SetGamepadVibration(int gamepad, float leftMotor, float rightMotor, float duration)
{

+ 1
- 0
src/raylib.h Переглянути файл

@ -1195,6 +1195,7 @@ RLAPI int GetGamepadButtonPressed(void); // Get the last ga
RLAPI int GetGamepadAxisCount(int gamepad); // Get gamepad axis count for a gamepad
RLAPI float GetGamepadAxisMovement(int gamepad, int axis); // Get axis movement value for a gamepad axis
RLAPI int SetGamepadMappings(const char *mappings); // Set internal gamepad mappings (SDL_GameControllerDB)
RLAPI const char *GetGamepadGUID(int gamepad); // Get gamepad GUID
RLAPI void SetGamepadVibration(int gamepad, float leftMotor, float rightMotor, float duration); // Set gamepad vibration for both motors (duration in seconds)
// Input-related functions: mouse

Завантаження…
Відмінити
Зберегти