[iortcw] 95/152: All: Controller hot plug support
Simon McVittie
smcv at debian.org
Fri Sep 8 10:40:17 UTC 2017
This is an automated email from the git hooks/post-receive script.
smcv pushed a commit to annotated tag 1.5a
in repository iortcw.
commit 3edfc3e7054746ca7af782a99cc5e30118526013
Author: MAN-AT-ARMS <M4N4T4RMS at gmail.com>
Date: Fri Aug 5 19:31:08 2016 -0400
All: Controller hot plug support
---
MP/code/sdl/sdl_input.c | 21 +++++++++++++--------
SP/code/sdl/sdl_input.c | 21 +++++++++++++--------
2 files changed, 26 insertions(+), 16 deletions(-)
diff --git a/MP/code/sdl/sdl_input.c b/MP/code/sdl/sdl_input.c
index f758de1..4991095 100644
--- a/MP/code/sdl/sdl_input.c
+++ b/MP/code/sdl/sdl_input.c
@@ -434,15 +434,15 @@ static void IN_InitJoystick( void )
stick = NULL;
memset(&stick_state, '\0', sizeof (stick_state));
- if (!SDL_WasInit(SDL_INIT_JOYSTICK))
+ if (!SDL_WasInit(SDL_INIT_GAMECONTROLLER))
{
- Com_DPrintf("Calling SDL_Init(SDL_INIT_JOYSTICK)...\n");
- if (SDL_Init(SDL_INIT_JOYSTICK) != 0)
+ Com_DPrintf("Calling SDL_Init(SDL_INIT_GAMECONTROLLER)...\n");
+ if (SDL_Init(SDL_INIT_GAMECONTROLLER) != 0)
{
- Com_DPrintf("SDL_Init(SDL_INIT_JOYSTICK) failed: %s\n", SDL_GetError());
+ Com_DPrintf("SDL_Init(SDL_INIT_GAMECONTROLLER) failed: %s\n", SDL_GetError());
return;
}
- Com_DPrintf("SDL_Init(SDL_INIT_JOYSTICK) passed.\n");
+ Com_DPrintf("SDL_Init(SDL_INIT_GAMECONTROLLER) passed.\n");
}
total = SDL_NumJoysticks();
@@ -459,7 +459,7 @@ static void IN_InitJoystick( void )
if( !in_joystick->integer ) {
Com_DPrintf( "Joystick is not active.\n" );
- SDL_QuitSubSystem(SDL_INIT_JOYSTICK);
+ SDL_QuitSubSystem(SDL_INIT_GAMECONTROLLER);
return;
}
@@ -494,7 +494,7 @@ IN_ShutdownJoystick
*/
static void IN_ShutdownJoystick( void )
{
- if ( !SDL_WasInit( SDL_INIT_JOYSTICK ) )
+ if ( !SDL_WasInit( SDL_INIT_GAMECONTROLLER ) )
return;
if (stick)
@@ -503,7 +503,7 @@ static void IN_ShutdownJoystick( void )
stick = NULL;
}
- SDL_QuitSubSystem(SDL_INIT_JOYSTICK);
+ SDL_QuitSubSystem(SDL_INIT_GAMECONTROLLER);
}
/*
@@ -870,6 +870,11 @@ static void IN_ProcessEvents( void )
}
break;
+ case SDL_CONTROLLERDEVICEADDED:
+ case SDL_CONTROLLERDEVICEREMOVED:
+ IN_InitJoystick();
+ break;
+
case SDL_QUIT:
Cbuf_ExecuteText(EXEC_NOW, "quit Closed window\n");
break;
diff --git a/SP/code/sdl/sdl_input.c b/SP/code/sdl/sdl_input.c
index f758de1..4991095 100644
--- a/SP/code/sdl/sdl_input.c
+++ b/SP/code/sdl/sdl_input.c
@@ -434,15 +434,15 @@ static void IN_InitJoystick( void )
stick = NULL;
memset(&stick_state, '\0', sizeof (stick_state));
- if (!SDL_WasInit(SDL_INIT_JOYSTICK))
+ if (!SDL_WasInit(SDL_INIT_GAMECONTROLLER))
{
- Com_DPrintf("Calling SDL_Init(SDL_INIT_JOYSTICK)...\n");
- if (SDL_Init(SDL_INIT_JOYSTICK) != 0)
+ Com_DPrintf("Calling SDL_Init(SDL_INIT_GAMECONTROLLER)...\n");
+ if (SDL_Init(SDL_INIT_GAMECONTROLLER) != 0)
{
- Com_DPrintf("SDL_Init(SDL_INIT_JOYSTICK) failed: %s\n", SDL_GetError());
+ Com_DPrintf("SDL_Init(SDL_INIT_GAMECONTROLLER) failed: %s\n", SDL_GetError());
return;
}
- Com_DPrintf("SDL_Init(SDL_INIT_JOYSTICK) passed.\n");
+ Com_DPrintf("SDL_Init(SDL_INIT_GAMECONTROLLER) passed.\n");
}
total = SDL_NumJoysticks();
@@ -459,7 +459,7 @@ static void IN_InitJoystick( void )
if( !in_joystick->integer ) {
Com_DPrintf( "Joystick is not active.\n" );
- SDL_QuitSubSystem(SDL_INIT_JOYSTICK);
+ SDL_QuitSubSystem(SDL_INIT_GAMECONTROLLER);
return;
}
@@ -494,7 +494,7 @@ IN_ShutdownJoystick
*/
static void IN_ShutdownJoystick( void )
{
- if ( !SDL_WasInit( SDL_INIT_JOYSTICK ) )
+ if ( !SDL_WasInit( SDL_INIT_GAMECONTROLLER ) )
return;
if (stick)
@@ -503,7 +503,7 @@ static void IN_ShutdownJoystick( void )
stick = NULL;
}
- SDL_QuitSubSystem(SDL_INIT_JOYSTICK);
+ SDL_QuitSubSystem(SDL_INIT_GAMECONTROLLER);
}
/*
@@ -870,6 +870,11 @@ static void IN_ProcessEvents( void )
}
break;
+ case SDL_CONTROLLERDEVICEADDED:
+ case SDL_CONTROLLERDEVICEREMOVED:
+ IN_InitJoystick();
+ break;
+
case SDL_QUIT:
Cbuf_ExecuteText(EXEC_NOW, "quit Closed window\n");
break;
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-games/iortcw.git
More information about the Pkg-games-commits
mailing list