Skip to content

Latest commit

 

History

History
159 lines (140 loc) · 5.37 KB

testhotplug.c

File metadata and controls

159 lines (140 loc) · 5.37 KB
 
Feb 6, 2014
Feb 6, 2014
2
Copyright (C) 1997-2014 Sam Lantinga <slouken@libsdl.org>
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
This software is provided 'as-is', without any express or implied
warranty. In no event will the authors be held liable for any damages
arising from the use of this software.
Permission is granted to anyone to use this software for any purpose,
including commercial applications, and to alter it and redistribute it
freely.
*/
/* Simple program to test the SDL joystick hotplugging */
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "SDL.h"
#include "SDL_haptic.h"
Feb 7, 2014
Feb 7, 2014
22
#if !defined SDL_JOYSTICK_DISABLED && !defined SDL_HAPTIC_DISABLED
23
24
25
26
27
28
29
30
int
main(int argc, char *argv[])
{
SDL_Joystick *joystick = NULL;
SDL_Haptic *haptic = NULL;
SDL_JoystickID instance = -1;
SDL_bool keepGoing = SDL_TRUE;
Feb 7, 2014
Feb 7, 2014
31
32
33
34
35
36
37
38
39
int i;
SDL_bool enable_haptic = SDL_TRUE;
Uint32 init_subsystems = SDL_INIT_VIDEO | SDL_INIT_JOYSTICK;
for (i = 1; i < argc; ++i) {
if (SDL_strcasecmp(argv[i], "--nohaptic") == 0) {
enable_haptic = SDL_FALSE;
}
}
Feb 7, 2014
Feb 7, 2014
41
42
43
44
if(enable_haptic) {
init_subsystems |= SDL_INIT_HAPTIC;
}
45
46
47
48
49
50
/* Enable standard application logging */
SDL_LogSetPriority(SDL_LOG_CATEGORY_APPLICATION, SDL_LOG_PRIORITY_INFO);
SDL_SetHint(SDL_HINT_JOYSTICK_ALLOW_BACKGROUND_EVENTS, "1");
/* Initialize SDL (Note: video is required to start event loop) */
Feb 7, 2014
Feb 7, 2014
51
if (SDL_Init(init_subsystems) < 0) {
52
53
54
55
56
57
58
SDL_LogError(SDL_LOG_CATEGORY_APPLICATION, "Couldn't initialize SDL: %s\n", SDL_GetError());
exit(1);
}
//SDL_CreateWindow("Dummy", SDL_WINDOWPOS_CENTERED, SDL_WINDOWPOS_CENTERED, 128, 128, 0);
SDL_Log("There are %d joysticks at startup\n", SDL_NumJoysticks());
Feb 7, 2014
Feb 7, 2014
59
60
if (enable_haptic)
SDL_Log("There are %d haptic devices at startup\n", SDL_NumHaptics());
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
while(keepGoing)
{
SDL_Event event;
while(SDL_PollEvent(&event))
{
switch(event.type)
{
case SDL_QUIT:
keepGoing = SDL_FALSE;
break;
case SDL_JOYDEVICEADDED:
if (joystick != NULL)
{
SDL_Log("Only one joystick supported by this test\n");
}
else
{
joystick = SDL_JoystickOpen(event.jdevice.which);
instance = SDL_JoystickInstanceID(joystick);
SDL_Log("Joy Added : %d : %s\n", event.jdevice.which, SDL_JoystickName(joystick));
Feb 7, 2014
Feb 7, 2014
82
if (enable_haptic)
Feb 7, 2014
Feb 7, 2014
84
if (SDL_JoystickIsHaptic(joystick))
Feb 7, 2014
Feb 7, 2014
86
87
haptic = SDL_HapticOpenFromJoystick(joystick);
if (haptic)
Feb 7, 2014
Feb 7, 2014
89
90
91
92
93
94
95
96
97
SDL_Log("Joy Haptic Opened\n");
if (SDL_HapticRumbleInit( haptic ) != 0)
{
SDL_Log("Could not init Rumble!: %s\n", SDL_GetError());
SDL_HapticClose(haptic);
haptic = NULL;
}
} else {
SDL_Log("Joy haptic open FAILED!: %s\n", SDL_GetError());
Feb 7, 2014
Feb 7, 2014
100
101
102
103
else
{
SDL_Log("No haptic found\n");
}
Feb 4, 2014
Feb 4, 2014
104
}
105
106
107
108
109
110
111
}
break;
case SDL_JOYDEVICEREMOVED:
if (instance == event.jdevice.which)
{
SDL_Log("Joy Removed: %d\n", event.jdevice.which);
instance = -1;
Feb 7, 2014
Feb 7, 2014
112
if(enable_haptic && haptic)
113
114
{
SDL_HapticClose(haptic);
Feb 4, 2014
Feb 4, 2014
115
haptic = NULL;
116
117
118
119
120
121
122
123
124
}
SDL_JoystickClose(joystick);
joystick = NULL;
} else {
SDL_Log("Unknown joystick diconnected\n");
}
break;
case SDL_JOYAXISMOTION:
// SDL_Log("Axis Move: %d\n", event.jaxis.axis);
Feb 7, 2014
Feb 7, 2014
125
126
if (enable_haptic)
SDL_HapticRumblePlay(haptic, 0.25, 250);
127
128
129
break;
case SDL_JOYBUTTONDOWN:
SDL_Log("Button Press: %d\n", event.jbutton.button);
Feb 7, 2014
Feb 7, 2014
130
if(enable_haptic && haptic)
Feb 7, 2014
Feb 7, 2014
132
SDL_HapticRumblePlay(haptic, 0.25, 250);
Feb 4, 2014
Feb 4, 2014
134
135
136
137
if (event.jbutton.button == 0) {
SDL_Log("Exiting due to button press of button 0\n");
keepGoing = SDL_FALSE;
}
138
139
140
141
142
143
144
145
break;
case SDL_JOYBUTTONUP:
SDL_Log("Button Release: %d\n", event.jbutton.button);
break;
}
}
}
Feb 7, 2014
Feb 7, 2014
146
SDL_Quit();
Feb 6, 2014
Feb 6, 2014
147
148
return 0;
149
150
151
152
153
154
}
#else
int
main(int argc, char *argv[])
{
Feb 7, 2014
Feb 7, 2014
155
SDL_LogError(SDL_LOG_CATEGORY_APPLICATION, "SDL compiled without Joystick and haptic support.\n");
Feb 6, 2014
Feb 6, 2014
156
return 1;