Skip to content

Latest commit

 

History

History
204 lines (168 loc) · 6.08 KB

SDL_sysjoystick.m

File metadata and controls

204 lines (168 loc) · 6.08 KB
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
/*
Simple DirectMedia Layer
Copyright (C) 1997-2014 Sam Lantinga <slouken@libsdl.org>
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, subject to the following restrictions:
1. The origin of this software must not be misrepresented; you must not
claim that you wrote the original software. If you use this software
in a product, an acknowledgment in the product documentation would be
appreciated but is not required.
2. Altered source versions must be plainly marked as such, and must not be
misrepresented as being the original software.
3. This notice may not be removed or altered from any source distribution.
*/
#include "../../SDL_internal.h"
/* This is the iOS implementation of the SDL joystick API */
#include "SDL_joystick.h"
Jul 15, 2014
Jul 15, 2014
26
#include "SDL_hints.h"
Jun 25, 2014
Jun 25, 2014
27
#include "SDL_stdinc.h"
28
29
30
#include "../SDL_sysjoystick.h"
#include "../SDL_joystick_c.h"
Jun 25, 2014
Jun 25, 2014
31
32
33
34
35
#import <CoreMotion/CoreMotion.h>
/* needed for SDL_IPHONE_MAX_GFORCE macro */
#import "SDL_config_iphoneos.h"
Jul 15, 2014
Jul 15, 2014
36
const char *accelerometerName = "iOS Accelerometer";
Jun 25, 2014
Jun 25, 2014
37
38
static CMMotionManager *motionManager = nil;
Jul 15, 2014
Jul 15, 2014
39
static int numjoysticks = 0;
40
41
/* Function to scan the system for joysticks.
Jan 16, 2015
Jan 16, 2015
42
* Joystick 0 should be the system default joystick.
43
44
45
46
47
* It should return 0, or -1 on an unrecoverable fatal error.
*/
int
SDL_SYS_JoystickInit(void)
{
Jul 15, 2014
Jul 15, 2014
48
49
50
const char *hint = SDL_GetHint(SDL_HINT_ACCELEROMETER_AS_JOYSTICK);
if (!hint || SDL_atoi(hint)) {
/* Default behavior, accelerometer as joystick */
Jul 15, 2014
Jul 15, 2014
51
numjoysticks = 1;
Jul 15, 2014
Jul 15, 2014
52
53
54
}
return numjoysticks;
55
56
57
58
}
int SDL_SYS_NumJoysticks()
{
Jul 15, 2014
Jul 15, 2014
59
return numjoysticks;
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
}
void SDL_SYS_JoystickDetect()
{
}
/* Function to get the device-dependent name of a joystick */
const char *
SDL_SYS_JoystickNameForDeviceIndex(int device_index)
{
return accelerometerName;
}
/* Function to perform the mapping from device index to the instance id for this index */
SDL_JoystickID SDL_SYS_GetInstanceIdOfDeviceIndex(int device_index)
{
return device_index;
}
/* Function to open a joystick for use.
The joystick to open is specified by the index field of the joystick.
This should fill the nbuttons and naxes fields of the joystick structure.
It returns 0, or -1 if there is an error.
*/
int
SDL_SYS_JoystickOpen(SDL_Joystick * joystick, int device_index)
{
joystick->naxes = 3;
joystick->nhats = 0;
joystick->nballs = 0;
joystick->nbuttons = 0;
Jun 25, 2014
Jun 25, 2014
91
Jul 29, 2014
Jul 29, 2014
92
93
94
95
96
97
98
99
@autoreleasepool {
if (motionManager == nil) {
motionManager = [[CMMotionManager alloc] init];
}
/* Shorter times between updates can significantly increase CPU usage. */
motionManager.accelerometerUpdateInterval = 0.1;
[motionManager startAccelerometerUpdates];
Jun 25, 2014
Jun 25, 2014
100
101
}
102
103
104
105
106
107
108
109
110
return 0;
}
/* Function to determine is this joystick is attached to the system right now */
SDL_bool SDL_SYS_JoystickAttached(SDL_Joystick *joystick)
{
return SDL_TRUE;
}
Jun 25, 2014
Jun 25, 2014
111
112
113
114
115
116
static void SDL_SYS_AccelerometerUpdate(SDL_Joystick * joystick)
{
const float maxgforce = SDL_IPHONE_MAX_GFORCE;
const SInt16 maxsint16 = 0x7FFF;
CMAcceleration accel;
Jul 29, 2014
Jul 29, 2014
117
118
119
120
@autoreleasepool {
if (!motionManager.accelerometerActive) {
return;
}
Jun 25, 2014
Jun 25, 2014
121
Jul 29, 2014
Jul 29, 2014
122
123
accel = motionManager.accelerometerData.acceleration;
}
Jun 25, 2014
Jun 25, 2014
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
/*
Convert accelerometer data from floating point to Sint16, which is what
the joystick system expects.
To do the conversion, the data is first clamped onto the interval
[-SDL_IPHONE_MAX_G_FORCE, SDL_IPHONE_MAX_G_FORCE], then the data is multiplied
by MAX_SINT16 so that it is mapped to the full range of an Sint16.
You can customize the clamped range of this function by modifying the
SDL_IPHONE_MAX_GFORCE macro in SDL_config_iphoneos.h.
Once converted to Sint16, the accelerometer data no longer has coherent
units. You can convert the data back to units of g-force by multiplying
it in your application's code by SDL_IPHONE_MAX_GFORCE / 0x7FFF.
*/
/* clamp the data */
accel.x = SDL_min(SDL_max(accel.x, -maxgforce), maxgforce);
accel.y = SDL_min(SDL_max(accel.y, -maxgforce), maxgforce);
accel.z = SDL_min(SDL_max(accel.z, -maxgforce), maxgforce);
/* pass in data mapped to range of SInt16 */
SDL_PrivateJoystickAxis(joystick, 0, (accel.x / maxgforce) * maxsint16);
SDL_PrivateJoystickAxis(joystick, 1, -(accel.y / maxgforce) * maxsint16);
SDL_PrivateJoystickAxis(joystick, 2, (accel.z / maxgforce) * maxsint16);
}
152
153
154
155
156
157
158
159
/* Function to update the state of a joystick - called as a device poll.
* This function shouldn't update the joystick structure directly,
* but instead should call SDL_PrivateJoystick*() to deliver events
* and update joystick device state.
*/
void
SDL_SYS_JoystickUpdate(SDL_Joystick * joystick)
{
Jun 25, 2014
Jun 25, 2014
160
SDL_SYS_AccelerometerUpdate(joystick);
161
162
163
164
165
166
}
/* Function to close a joystick after use */
void
SDL_SYS_JoystickClose(SDL_Joystick * joystick)
{
Jul 29, 2014
Jul 29, 2014
167
168
169
@autoreleasepool {
[motionManager stopAccelerometerUpdates];
}
Jun 25, 2014
Jun 25, 2014
170
joystick->closed = 1;
171
172
173
174
175
176
}
/* Function to perform any system-specific joystick related cleanup */
void
SDL_SYS_JoystickQuit(void)
{
Jul 29, 2014
Jul 29, 2014
177
@autoreleasepool {
Aug 6, 2014
Aug 6, 2014
178
motionManager = nil;
Jun 25, 2014
Jun 25, 2014
179
}
Jul 15, 2014
Jul 15, 2014
180
181
numjoysticks = 0;
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
}
SDL_JoystickGUID SDL_SYS_JoystickGetDeviceGUID( int device_index )
{
SDL_JoystickGUID guid;
/* the GUID is just the first 16 chars of the name for now */
const char *name = SDL_SYS_JoystickNameForDeviceIndex( device_index );
SDL_zero( guid );
SDL_memcpy( &guid, name, SDL_min( sizeof(guid), SDL_strlen( name ) ) );
return guid;
}
SDL_JoystickGUID SDL_SYS_JoystickGetGUID(SDL_Joystick * joystick)
{
SDL_JoystickGUID guid;
/* the GUID is just the first 16 chars of the name for now */
const char *name = joystick->name;
SDL_zero( guid );
SDL_memcpy( &guid, name, SDL_min( sizeof(guid), SDL_strlen( name ) ) );
return guid;
}
/* vi: set ts=4 sw=4 expandtab: */