Skip to content
This repository has been archived by the owner on Feb 11, 2021. It is now read-only.

Latest commit

 

History

History
1284 lines (1072 loc) · 35.1 KB

SDL_syshaptic.c

File metadata and controls

1284 lines (1072 loc) · 35.1 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
26
27
28
29
/*
SDL - Simple DirectMedia Layer
Copyright (C) 2008 Edgar Simo
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) any later version.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with this library; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
Sam Lantinga
slouken@libsdl.org
*/
#include "SDL_config.h"
#ifdef SDL_HAPTIC_IOKIT
#include "SDL_haptic.h"
#include "../SDL_syshaptic.h"
#include "SDL_joystick.h"
#include "../../joystick/SDL_sysjoystick.h" /* For the real SDL_Joystick */
Aug 6, 2008
Aug 6, 2008
30
#include "../../joystick/darwin/SDL_sysjoystick_c.h" /* For joystick hwdata */
Jul 15, 2008
Jul 15, 2008
32
33
#include <IOKit/IOKitLib.h>
#include <IOKit/hid/IOHIDKeys.h>
34
35
36
37
38
39
40
41
42
43
44
45
#include <ForceFeedback/ForceFeedback.h>
#include <ForceFeedback/ForceFeedbackConstants.h>
#define MAX_HAPTICS 32
/*
* List of available haptic devices.
*/
static struct
{
Aug 11, 2008
Aug 11, 2008
46
47
48
49
50
51
52
53
char name[256]; /* Name of the device. */
io_service_t dev; /* Node we use to create the device. */
SDL_Haptic *haptic; /* Haptic currently assosciated with it. */
/* Usage pages for determining if it's a mouse or not. */
long usage;
long usagePage;
54
55
56
57
58
59
60
61
62
} SDL_hapticlist[MAX_HAPTICS];
/*
* Haptic system hardware data.
*/
struct haptic_hwdata
{
FFDeviceObjectReference device; /* Hardware device. */
Aug 6, 2008
Aug 6, 2008
63
UInt8 axes[3];
64
65
66
67
68
69
70
71
72
73
74
75
};
/*
* Haptic system effect data.
*/
struct haptic_hweffect
{
FFEffectObjectReference ref; /* Reference. */
struct FFEFFECT effect; /* Hardware effect. */
};
Jul 18, 2008
Jul 18, 2008
76
77
78
/*
* Prototypes.
*/
Jul 19, 2008
Jul 19, 2008
79
80
static void SDL_SYS_HapticFreeFFEFFECT(FFEFFECT * effect, int type);
static int HIDGetDeviceProduct(io_service_t dev, char * name);
Jul 18, 2008
Jul 18, 2008
81
Jul 20, 2008
Jul 20, 2008
83
84
85
86
87
88
89
90
91
/*
* Like strerror but for force feedback errors.
*/
static const char *
FFStrError(HRESULT err)
{
switch (err) {
case FFERR_DEVICEFULL:
return "device full";
Aug 5, 2008
Aug 5, 2008
92
/* This should be valid, but for some reason isn't defined... */
Jul 20, 2008
Jul 20, 2008
93
94
/*case FFERR_DEVICENOTREG:
return "device not registered";*/
Jul 20, 2008
Jul 20, 2008
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
case FFERR_DEVICEPAUSED:
return "device paused";
case FFERR_DEVICERELEASED:
return "device released";
case FFERR_EFFECTPLAYING:
return "effect playing";
case FFERR_EFFECTTYPEMISMATCH:
return "effect type mismatch";
case FFERR_EFFECTTYPENOTSUPPORTED:
return "effect type not supported";
case FFERR_GENERIC:
return "undetermined error";
case FFERR_HASEFFECTS:
return "device has effects";
case FFERR_INCOMPLETEEFFECT:
return "incomplete effect";
case FFERR_INTERNAL:
return "internal fault";
case FFERR_INVALIDDOWNLOADID:
return "invalid download id";
case FFERR_INVALIDPARAM:
return "invalid parameter";
case FFERR_MOREDATA:
return "more data";
case FFERR_NOINTERFACE:
return "interface not supported";
case FFERR_NOTDOWNLOADED:
return "effect is not downloaded";
case FFERR_NOTINITIALIZED:
return "object has not been initialized";
case FFERR_OUTOFMEMORY:
return "out of memory";
case FFERR_UNPLUGGED:
return "device is unplugged";
case FFERR_UNSUPPORTED:
return "function call unsupported";
case FFERR_UNSUPPORTEDAXIS:
return "axis unsupported";
default:
return "unknown error";
}
}
140
141
142
143
144
145
146
147
148
149
/*
* Initializes the haptic subsystem.
*/
int
SDL_SYS_HapticInit(void)
{
int numhaptics;
IOReturn result;
io_iterator_t iter;
CFDictionaryRef match;
Jul 15, 2008
Jul 15, 2008
150
io_service_t device;
Aug 11, 2008
Aug 11, 2008
151
152
CFMutableDictionaryRef hidProperties;
CFTypeRef refCF;
Jul 19, 2008
Jul 19, 2008
154
155
156
/* Clear all the memory. */
SDL_memset(SDL_hapticlist, 0, sizeof(SDL_hapticlist));
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
/* Get HID devices. */
match = IOServiceMatching(kIOHIDDeviceKey);
if (match == NULL) {
SDL_SetError("Haptic: Failed to get IOServiceMatching.");
return -1;
}
/* Now search I/O Registry for matching devices. */
result = IOServiceGetMatchingServices(kIOMasterPortDefault, match, &iter);
if (result != kIOReturnSuccess) {
SDL_SetError("Haptic: Couldn't create a HID object iterator.");
return -1;
}
/* IOServiceGetMatchingServices consumes dictionary. */
Aug 11, 2008
Aug 11, 2008
172
if (!IOIteratorIsValid(iter)) { /* No iterator. */
Aug 10, 2008
Aug 10, 2008
173
174
175
176
numhaptics = 0;
return 0;
}
177
178
179
180
181
numhaptics = 0;
while ((device = IOIteratorNext(iter)) != IO_OBJECT_NULL) {
/* Check for force feedback. */
if (FFIsForceFeedback(device) == FF_OK) {
Aug 11, 2008
Aug 11, 2008
182
183
/* Set basic device data. */
Jul 19, 2008
Jul 19, 2008
184
HIDGetDeviceProduct(device, SDL_hapticlist[numhaptics].name);
185
186
SDL_hapticlist[numhaptics].dev = device;
SDL_hapticlist[numhaptics].haptic = NULL;
Aug 11, 2008
Aug 11, 2008
187
188
189
190
191
192
193
194
195
196
197
/* Set usage pages. */
hidProperties = 0;
refCF = 0;
result = IORegistryEntryCreateCFProperties(device,
&hidProperties, kCFAllocatorDefault, kNilOptions);
if ((result == KERN_SUCCESS) && hidProperties) {
refCF = CFDictionaryGetValue(hidProperties, CFSTR(kIOHIDPrimaryUsagePageKey));
if (refCF) {
if (!CFNumberGetValue(refCF, kCFNumberLongType,
&SDL_hapticlist[numhaptics].usagePage))
Aug 11, 2008
Aug 11, 2008
198
SDL_SetError("Haptic: Recieving device's usage page.");
Aug 11, 2008
Aug 11, 2008
199
200
201
202
refCF = CFDictionaryGetValue(hidProperties, CFSTR(kIOHIDPrimaryUsageKey));
if (refCF) {
if (!CFNumberGetValue(refCF, kCFNumberLongType,
&SDL_hapticlist[numhaptics].usage))
Aug 11, 2008
Aug 11, 2008
203
SDL_SetError("Haptic: Recieving device's usage.");
Aug 11, 2008
Aug 11, 2008
204
205
206
207
208
209
}
}
CFRelease(hidProperties);
}
/* Device has been added. */
210
211
numhaptics++;
}
Jul 19, 2008
Jul 19, 2008
212
213
214
else { /* Free the unused device. */
IOObjectRelease(device);
}
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
/* Reached haptic limit. */
if (numhaptics >= MAX_HAPTICS)
break;
}
IOObjectRelease(iter);
return numhaptics;
}
/*
* Return the name of a haptic device, does not need to be opened.
*/
const char *
SDL_SYS_HapticName(int index)
{
Jul 19, 2008
Jul 19, 2008
232
233
234
235
236
237
238
239
240
241
242
return SDL_hapticlist[index].name;
}
/*
* Gets the device's product name.
*/
static int
HIDGetDeviceProduct(io_service_t dev, char *name)
{
CFMutableDictionaryRef hidProperties, usbProperties;
io_registry_entry_t parent1, parent2;
Jul 22, 2008
Jul 22, 2008
243
kern_return_t ret;
Jul 19, 2008
Jul 19, 2008
244
245
246
hidProperties = usbProperties = 0;
Jul 22, 2008
Jul 22, 2008
247
ret = IORegistryEntryCreateCFProperties(dev, &hidProperties,
Jul 22, 2008
Jul 22, 2008
248
249
250
251
252
253
254
kCFAllocatorDefault,
kNilOptions);
if ((ret != KERN_SUCCESS) || !hidProperties) {
SDL_SetError("Haptic: Unable to create CFProperties.");
return -1;
}
Jul 19, 2008
Jul 19, 2008
255
256
257
258
259
260
261
262
263
/* Mac OS X currently is not mirroring all USB properties to HID page so need to look at USB device page also
* get dictionary for usb properties: step up two levels and get CF dictionary for USB properties
*/
if ((KERN_SUCCESS ==
IORegistryEntryGetParentEntry(dev, kIOServicePlane, &parent1))
&& (KERN_SUCCESS ==
IORegistryEntryGetParentEntry(parent1, kIOServicePlane, &parent2))
&& (KERN_SUCCESS ==
IORegistryEntryCreateCFProperties(parent2, &usbProperties,
Jul 22, 2008
Jul 22, 2008
264
265
kCFAllocatorDefault,
kNilOptions))) {
Jul 19, 2008
Jul 19, 2008
266
267
268
269
270
271
272
273
if (usbProperties) {
CFTypeRef refCF = 0;
/* get device info
* try hid dictionary first, if fail then go to usb dictionary
*/
/* Get product name */
Jul 22, 2008
Jul 22, 2008
274
refCF = CFDictionaryGetValue(hidProperties, CFSTR(kIOHIDProductKey));
Jul 19, 2008
Jul 19, 2008
275
276
277
278
279
280
if (!refCF)
refCF =
CFDictionaryGetValue(usbProperties, CFSTR("USB Product Name"));
if (refCF) {
if (!CFStringGetCString(refCF, name, 256,
CFStringGetSystemEncoding())) {
Aug 11, 2008
Aug 11, 2008
281
SDL_SetError("Haptic: CFStringGetCString error retrieving pDevice->product.");
Jul 19, 2008
Jul 19, 2008
282
283
284
285
286
287
288
return -1;
}
}
CFRelease(usbProperties);
}
else {
Aug 11, 2008
Aug 11, 2008
289
SDL_SetError("Haptic: IORegistryEntryCreateCFProperties failed to create usbProperties.");
Jul 19, 2008
Jul 19, 2008
290
291
292
293
294
return -1;
}
/* Release stuff. */
if (kIOReturnSuccess != IOObjectRelease(parent2)) {
Aug 11, 2008
Aug 11, 2008
295
SDL_SetError("Haptic: IOObjectRelease error with parent2.");
Jul 19, 2008
Jul 19, 2008
296
297
}
if (kIOReturnSuccess != IOObjectRelease(parent1)) {
Aug 11, 2008
Aug 11, 2008
298
SDL_SetError("Haptic: IOObjectRelease error with parent1.");
Jul 19, 2008
Jul 19, 2008
299
300
}
}
Jul 22, 2008
Jul 22, 2008
301
302
303
304
305
else {
SDL_SetError("Haptic: Error getting registry entries.");
return -1;
}
Jul 19, 2008
Jul 19, 2008
306
return 0;
307
308
309
310
}
#define FF_TEST(ff, s) \
Aug 5, 2008
Aug 5, 2008
311
if (features.supportedEffects & (ff)) supported |= (s)
312
313
314
315
/*
* Gets supported features.
*/
static unsigned int
Aug 6, 2008
Aug 6, 2008
316
GetSupportedFeatures(SDL_Haptic* haptic)
317
318
{
HRESULT ret;
Aug 6, 2008
Aug 6, 2008
319
FFDeviceObjectReference device;
320
321
322
323
FFCAPABILITIES features;
unsigned int supported;
Uint32 val;
Aug 6, 2008
Aug 6, 2008
324
325
device = haptic->hwdata->device;
326
327
328
ret = FFDeviceGetForceFeedbackCapabilities(device, &features);
if (ret != FF_OK) {
SDL_SetError("Haptic: Unable to get device's supported features.");
Aug 6, 2008
Aug 6, 2008
329
return -1;
330
331
332
333
334
}
supported = 0;
/* Get maximum effects. */
Aug 6, 2008
Aug 6, 2008
335
336
haptic->neffects = features.storageCapacity;
haptic->nplaying = features.playbackCapacity;
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
/* Test for effects. */
FF_TEST(FFCAP_ET_CONSTANTFORCE, SDL_HAPTIC_CONSTANT);
FF_TEST(FFCAP_ET_RAMPFORCE, SDL_HAPTIC_RAMP);
FF_TEST(FFCAP_ET_SQUARE, SDL_HAPTIC_SQUARE);
FF_TEST(FFCAP_ET_SINE, SDL_HAPTIC_SINE);
FF_TEST(FFCAP_ET_TRIANGLE, SDL_HAPTIC_TRIANGLE);
FF_TEST(FFCAP_ET_SAWTOOTHUP, SDL_HAPTIC_SAWTOOTHUP);
FF_TEST(FFCAP_ET_SAWTOOTHDOWN, SDL_HAPTIC_SAWTOOTHDOWN);
FF_TEST(FFCAP_ET_SPRING, SDL_HAPTIC_SPRING);
FF_TEST(FFCAP_ET_DAMPER, SDL_HAPTIC_DAMPER);
FF_TEST(FFCAP_ET_INERTIA, SDL_HAPTIC_INERTIA);
FF_TEST(FFCAP_ET_FRICTION, SDL_HAPTIC_FRICTION);
FF_TEST(FFCAP_ET_CUSTOMFORCE, SDL_HAPTIC_CUSTOM);
/* Check if supports gain. */
Jul 30, 2008
Jul 30, 2008
353
354
ret = FFDeviceGetForceFeedbackProperty( device, FFPROP_FFGAIN,
&val, sizeof(val));
355
356
if (ret == FF_OK) supported |= SDL_HAPTIC_GAIN;
else if (ret != FFERR_UNSUPPORTED) {
Jul 20, 2008
Jul 20, 2008
357
SDL_SetError("Haptic: Unable to get if device supports gain: %s.",
Jul 20, 2008
Jul 20, 2008
358
FFStrError(ret));
Aug 6, 2008
Aug 6, 2008
359
return -1;
360
361
362
}
/* Checks if supports autocenter. */
Jul 15, 2008
Jul 15, 2008
363
ret = FFDeviceGetForceFeedbackProperty(device, FFPROP_AUTOCENTER,
Jul 15, 2008
Jul 15, 2008
364
&val, sizeof(val));
365
366
if (ret == FF_OK) supported |= SDL_HAPTIC_AUTOCENTER;
else if (ret != FFERR_UNSUPPORTED) {
Jul 20, 2008
Jul 20, 2008
367
368
SDL_SetError("Haptic: Unable to get if device supports autocenter: %s.",
FFStrError(ret));
Aug 6, 2008
Aug 6, 2008
369
return -1;
Jul 18, 2008
Jul 18, 2008
372
/* Check for axes, we have an artificial limit on axes */
Aug 6, 2008
Aug 6, 2008
373
haptic->naxes = ((features.numFfAxes) > 3) ?
Jul 18, 2008
Jul 18, 2008
374
3 : features.numFfAxes;
Aug 6, 2008
Aug 6, 2008
375
376
/* Actually store the axes we want to use */
SDL_memcpy( haptic->hwdata->axes, features.ffAxes, haptic->naxes * sizeof(Uint8));
Jul 18, 2008
Jul 18, 2008
377
378
/* Always supported features. */
Aug 24, 2008
Aug 24, 2008
379
supported |= SDL_HAPTIC_STATUS | SDL_HAPTIC_PAUSE;
Aug 6, 2008
Aug 6, 2008
380
381
382
haptic->supported = supported;
return 0;;
383
384
385
386
387
388
389
390
391
}
/*
* Opens the haptic device from the file descriptor.
*/
static int
SDL_SYS_HapticOpenFromService(SDL_Haptic * haptic, io_service_t service)
{
Jul 20, 2008
Jul 20, 2008
392
HRESULT ret;
Aug 6, 2008
Aug 6, 2008
393
int ret2;
Jul 20, 2008
Jul 20, 2008
394
395
396
397
398
399
400
401
402
403
404
/* Allocate the hwdata */
haptic->hwdata = (struct haptic_hwdata *)
SDL_malloc(sizeof(*haptic->hwdata));
if (haptic->hwdata == NULL) {
SDL_OutOfMemory();
goto creat_err;
}
SDL_memset(haptic->hwdata, 0, sizeof(*haptic->hwdata));
/* Open the device */
Jul 20, 2008
Jul 20, 2008
405
406
407
408
ret = FFCreateDevice( service, &haptic->hwdata->device);
if (ret != FF_OK) {
SDL_SetError("Haptic: Unable to create device from service: %s.",
FFStrError(ret));
409
410
411
412
goto creat_err;
}
/* Get supported features. */
Aug 6, 2008
Aug 6, 2008
413
414
ret2 = GetSupportedFeatures( haptic );
if (haptic->supported < 0) {
415
416
goto open_err;
}
Jul 30, 2008
Jul 30, 2008
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
/* Reset and then enable actuators. */
ret = FFDeviceSendForceFeedbackCommand( haptic->hwdata->device,
FFSFFC_RESET );
if (ret != FF_OK) {
SDL_SetError("Haptic: Unable to reset device: %s.", FFStrError(ret));
goto open_err;
}
ret = FFDeviceSendForceFeedbackCommand( haptic->hwdata->device,
FFSFFC_SETACTUATORSON );
if (ret != FF_OK) {
SDL_SetError("Haptic: Unable to enable actuators: %s.", FFStrError(ret));
goto open_err;
}
/* Allocate effects memory. */
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
haptic->effects = (struct haptic_effect *)
SDL_malloc(sizeof(struct haptic_effect) * haptic->neffects);
if (haptic->effects == NULL) {
SDL_OutOfMemory();
goto open_err;
}
/* Clear the memory */
SDL_memset(haptic->effects, 0,
sizeof(struct haptic_effect) * haptic->neffects);
return 0;
/* Error handling */
open_err:
FFReleaseDevice(haptic->hwdata->device);
creat_err:
if (haptic->hwdata != NULL) {
free(haptic->hwdata);
haptic->hwdata = NULL;
}
return -1;
}
/*
* Opens a haptic device for usage.
*/
int
SDL_SYS_HapticOpen(SDL_Haptic * haptic)
{
return SDL_SYS_HapticOpenFromService(haptic,
Jul 15, 2008
Jul 15, 2008
467
SDL_hapticlist[haptic->index].dev);
468
469
470
471
472
473
474
475
476
}
/*
* Opens a haptic device from first mouse it finds for usage.
*/
int
SDL_SYS_HapticMouse(void)
{
Aug 11, 2008
Aug 11, 2008
477
478
479
480
481
482
483
484
int i;
for (i=0; i<SDL_numhaptics; i++) {
if ((SDL_hapticlist[i].usagePage == kHIDPage_GenericDesktop) &&
(SDL_hapticlist[i].usage == kHIDUsage_GD_Mouse))
return i;
}
485
486
487
488
489
490
491
492
493
494
return -1;
}
/*
* Checks to see if a joystick has haptic features.
*/
int
SDL_SYS_JoystickIsHaptic(SDL_Joystick * joystick)
{
Aug 10, 2008
Aug 10, 2008
495
496
if (joystick->hwdata->ffservice != 0)
return SDL_TRUE;
497
498
499
500
501
502
503
504
505
506
return SDL_FALSE;
}
/*
* Checks to see if the haptic device and joystick and in reality the same.
*/
int
SDL_SYS_JoystickSameHaptic(SDL_Haptic * haptic, SDL_Joystick * joystick)
{
Aug 10, 2008
Aug 10, 2008
507
508
if (IOObjectIsEqualTo((io_object_t) haptic->hwdata->device,
joystick->hwdata->ffservice))
Aug 10, 2008
Aug 10, 2008
509
return 1;
510
511
512
513
514
515
516
517
518
519
return 0;
}
/*
* Opens a SDL_Haptic from a SDL_Joystick.
*/
int
SDL_SYS_HapticOpenFromJoystick(SDL_Haptic * haptic, SDL_Joystick * joystick)
{
Aug 10, 2008
Aug 10, 2008
520
521
return SDL_SYS_HapticOpenFromService(haptic,
joystick->hwdata->ffservice);
522
523
524
525
526
527
528
529
530
531
532
}
/*
* Closes the haptic device.
*/
void
SDL_SYS_HapticClose(SDL_Haptic * haptic)
{
if (haptic->hwdata) {
Jul 31, 2008
Jul 31, 2008
533
/* Free Effects. */
Jul 18, 2008
Jul 18, 2008
534
SDL_free(haptic->effects);
Jul 31, 2008
Jul 31, 2008
535
haptic->effects = NULL;
Jul 18, 2008
Jul 18, 2008
536
537
haptic->neffects = 0;
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
/* Clean up */
FFReleaseDevice(haptic->hwdata->device);
/* Free */
SDL_free(haptic->hwdata);
haptic->hwdata = NULL;
}
}
/*
* Clean up after system specific haptic stuff
*/
void
SDL_SYS_HapticQuit(void)
{
int i;
for (i=0; i < SDL_numhaptics; i++) {
Jul 18, 2008
Jul 18, 2008
557
558
559
560
/* Opened and not closed haptics are leaked, this is on purpose.
* Close your haptic devices after usage. */
/* Free the io_service_t */
561
562
563
564
565
IOObjectRelease(SDL_hapticlist[i].dev);
}
}
Jul 30, 2008
Jul 30, 2008
566
567
568
569
570
571
572
573
574
575
/*
* Converts an SDL trigger button to an FFEFFECT trigger button.
*/
static DWORD
FFGetTriggerButton( Uint16 button )
{
DWORD dwTriggerButton;
dwTriggerButton = FFEB_NOTRIGGER;
Jul 30, 2008
Jul 30, 2008
576
if (button != 0) {
Jul 30, 2008
Jul 30, 2008
577
dwTriggerButton = FFJOFS_BUTTON(button - 1);
Jul 30, 2008
Jul 30, 2008
578
}
Jul 30, 2008
Jul 30, 2008
579
580
581
582
583
return dwTriggerButton;
}
584
585
586
587
/*
* Sets the direction.
*/
static int
Jul 18, 2008
Jul 18, 2008
588
SDL_SYS_SetDirection( FFEFFECT * effect, SDL_HapticDirection *dir, int naxes )
Jul 15, 2008
Jul 15, 2008
590
LONG *rglDir;
Jul 18, 2008
Jul 18, 2008
591
592
/* Handle no axes a part. */
Jul 18, 2008
Jul 18, 2008
593
if (naxes == 0) {
Jul 30, 2008
Jul 30, 2008
594
effect->dwFlags |= FFEFF_SPHERICAL; /* Set as default. */
Jul 18, 2008
Jul 18, 2008
595
596
597
598
599
effect->rglDirection = NULL;
return 0;
}
/* Has axes. */
Jul 18, 2008
Jul 18, 2008
600
rglDir = SDL_malloc( sizeof(LONG) * naxes );
Jul 18, 2008
Jul 18, 2008
601
if (rglDir == NULL) {
602
603
604
SDL_OutOfMemory();
return -1;
}
Jul 18, 2008
Jul 18, 2008
605
SDL_memset( rglDir, 0, sizeof(LONG) * naxes );
Jul 15, 2008
Jul 15, 2008
606
effect->rglDirection = rglDir;
607
608
609
610
switch (dir->type) {
case SDL_HAPTIC_POLAR:
effect->dwFlags |= FFEFF_POLAR;
Jul 15, 2008
Jul 15, 2008
611
rglDir[0] = dir->dir[0];
612
613
return 0;
case SDL_HAPTIC_CARTESIAN:
Jul 15, 2008
Jul 15, 2008
614
effect->dwFlags |= FFEFF_CARTESIAN;
Jul 15, 2008
Jul 15, 2008
615
rglDir[0] = dir->dir[0];
Aug 5, 2008
Aug 5, 2008
616
617
618
619
if (naxes > 1)
rglDir[1] = dir->dir[1];
if (naxes > 2)
rglDir[2] = dir->dir[2];
Jul 15, 2008
Jul 15, 2008
621
case SDL_HAPTIC_SPHERICAL:
Jul 15, 2008
Jul 15, 2008
622
effect->dwFlags |= FFEFF_SPHERICAL;
Jul 15, 2008
Jul 15, 2008
623
rglDir[0] = dir->dir[0];
Aug 5, 2008
Aug 5, 2008
624
625
626
627
if (naxes > 1)
rglDir[1] = dir->dir[1];
if (naxes > 2)
rglDir[2] = dir->dir[2];
628
629
630
631
632
633
634
635
return 0;
default:
SDL_SetError("Haptic: Unknown direction type.");
return -1;
}
}
Aug 6, 2008
Aug 6, 2008
636
637
638
639
640
/* Clamps and converts. */
#define CCONVERT(x) (((x) > 0x7FFF) ? 10000 : ((x)*10000) / 0x7FFF)
/* Just converts. */
#define CONVERT(x) (((x)*10000) / 0x7FFF)
Jul 18, 2008
Jul 18, 2008
642
* Creates the FFEFFECT from a SDL_HapticEffect.
643
644
*/
static int
Jul 18, 2008
Jul 18, 2008
645
SDL_SYS_ToFFEFFECT( SDL_Haptic * haptic, FFEFFECT * dest, SDL_HapticEffect * src )
Jul 18, 2008
Jul 18, 2008
647
int i;
648
649
FFCONSTANTFORCE *constant;
FFPERIODIC *periodic;
Jul 18, 2008
Jul 18, 2008
650
FFCONDITION *condition; /* Actually an array of conditions - one per axis. */
651
652
FFRAMPFORCE *ramp;
FFCUSTOMFORCE *custom;
Jul 15, 2008
Jul 15, 2008
653
FFENVELOPE *envelope;
654
SDL_HapticConstant *hap_constant;
Jul 15, 2008
Jul 15, 2008
655
SDL_HapticPeriodic *hap_periodic;
656
657
SDL_HapticCondition *hap_condition;
SDL_HapticRamp *hap_ramp;
Jul 19, 2008
Jul 19, 2008
658
SDL_HapticCustom *hap_custom;
Jul 18, 2008
Jul 18, 2008
659
DWORD *axes;
660
661
662
663
664
665
/* Set global stuff. */
SDL_memset(dest, 0, sizeof(FFEFFECT));
dest->dwSize = sizeof(FFEFFECT); /* Set the structure size. */
dest->dwSamplePeriod = 0; /* Not used by us. */
dest->dwGain = 10000; /* Gain is set globally, not locally. */
Aug 5, 2008
Aug 5, 2008
666
dest->dwFlags = FFEFF_OBJECTOFFSETS; /* Seems obligatory. */
Jul 15, 2008
Jul 15, 2008
667
668
669
670
671
672
673
674
675
676
/* Envelope. */
envelope = SDL_malloc( sizeof(FFENVELOPE) );
if (envelope == NULL) {
SDL_OutOfMemory();
return -1;
}
SDL_memset(envelope, 0, sizeof(FFENVELOPE));
dest->lpEnvelope = envelope;
envelope->dwSize = sizeof(FFENVELOPE); /* Always should be this. */
Jul 18, 2008
Jul 18, 2008
678
679
680
681
682
683
684
685
/* Axes. */
dest->cAxes = haptic->naxes;
if (dest->cAxes > 0) {
axes = SDL_malloc(sizeof(DWORD) * dest->cAxes);
if (axes == NULL) {
SDL_OutOfMemory();
return -1;
}
Aug 6, 2008
Aug 6, 2008
686
axes[0] = haptic->hwdata->axes[0]; /* Always at least one axis. */
Jul 18, 2008
Jul 18, 2008
687
if (dest->cAxes > 1) {
Aug 6, 2008
Aug 6, 2008
688
axes[1] = haptic->hwdata->axes[1];
Jul 18, 2008
Jul 18, 2008
689
690
}
if (dest->cAxes > 2) {
Aug 6, 2008
Aug 6, 2008
691
axes[2] = haptic->hwdata->axes[2];
Jul 18, 2008
Jul 18, 2008
692
693
694
695
696
}
dest->rgdwAxes = axes;
}
Jul 18, 2008
Jul 18, 2008
697
/* The big type handling switch, even bigger then linux's version. */
698
699
700
701
switch (src->type) {
case SDL_HAPTIC_CONSTANT:
hap_constant = &src->constant;
constant = SDL_malloc( sizeof(FFCONSTANTFORCE) );
Jul 18, 2008
Jul 18, 2008
702
703
704
705
if (constant == NULL) {
SDL_OutOfMemory();
return -1;
}
Jul 19, 2008
Jul 19, 2008
706
SDL_memset(constant, 0, sizeof(FFCONSTANTFORCE));
707
708
709
710
711
712
713
/* Specifics */
constant->lMagnitude = CONVERT(hap_constant->level);
dest->cbTypeSpecificParams = sizeof(FFCONSTANTFORCE);
dest->lpvTypeSpecificParams = constant;
/* Generics */
Jul 15, 2008
Jul 15, 2008
714
dest->dwDuration = hap_constant->length * 1000; /* In microseconds. */
Jul 30, 2008
Jul 30, 2008
715
dest->dwTriggerButton = FFGetTriggerButton(hap_constant->button);
716
dest->dwTriggerRepeatInterval = hap_constant->interval;
Jul 15, 2008
Jul 15, 2008
717
dest->dwStartDelay = hap_constant->delay * 1000; /* In microseconds. */
718
719
/* Direction. */
Jul 15, 2008
Jul 15, 2008
720
if (SDL_SYS_SetDirection(dest, &hap_constant->direction, dest->cAxes) < 0) {
721
722
723
724
return -1;
}
/* Envelope */
Jul 31, 2008
Jul 31, 2008
725
if ((hap_constant->attack_length==0) && (hap_constant->fade_length==0)) {
Jul 31, 2008
Jul 31, 2008
726
727
SDL_free(envelope);
dest->lpEnvelope = NULL;
Jul 30, 2008
Jul 30, 2008
728
729
}
else {
Aug 6, 2008
Aug 6, 2008
730
envelope->dwAttackLevel = CCONVERT(hap_constant->attack_level);
Jul 30, 2008
Jul 30, 2008
731
envelope->dwAttackTime = hap_constant->attack_length * 1000;
Aug 6, 2008
Aug 6, 2008
732
envelope->dwFadeLevel = CCONVERT(hap_constant->fade_level);
Jul 30, 2008
Jul 30, 2008
733
734
envelope->dwFadeTime = hap_constant->fade_length * 1000;
}
735
736
737
738
739
740
741
742
break;
case SDL_HAPTIC_SINE:
case SDL_HAPTIC_SQUARE:
case SDL_HAPTIC_TRIANGLE:
case SDL_HAPTIC_SAWTOOTHUP:
case SDL_HAPTIC_SAWTOOTHDOWN:
Jul 15, 2008
Jul 15, 2008
743
hap_periodic = &src->periodic;
Jul 18, 2008
Jul 18, 2008
744
745
746
747
748
periodic = SDL_malloc(sizeof(FFPERIODIC));
if (periodic == NULL) {
SDL_OutOfMemory();
return -1;
}
Jul 19, 2008
Jul 19, 2008
749
SDL_memset(periodic, 0, sizeof(FFPERIODIC));
Jul 18, 2008
Jul 18, 2008
750
751
752
753
754
755
756
757
758
759
760
/* Specifics */
periodic->dwMagnitude = CONVERT(hap_periodic->magnitude);
periodic->lOffset = CONVERT(hap_periodic->offset);
periodic->dwPhase = hap_periodic->phase;
periodic->dwPeriod = hap_periodic->period * 1000;
dest->cbTypeSpecificParams = sizeof(FFPERIODIC);
dest->lpvTypeSpecificParams = periodic;
/* Generics */
dest->dwDuration = hap_periodic->length * 1000; /* In microseconds. */
Jul 30, 2008
Jul 30, 2008
761
dest->dwTriggerButton = FFGetTriggerButton(hap_periodic->button);
Jul 18, 2008
Jul 18, 2008
762
763
764
765
766
767
768
769
770
dest->dwTriggerRepeatInterval = hap_periodic->interval;
dest->dwStartDelay = hap_periodic->delay * 1000; /* In microseconds. */
/* Direction. */
if (SDL_SYS_SetDirection(dest, &hap_periodic->direction, dest->cAxes) < 0) {
return -1;
}
/* Envelope */
Jul 31, 2008
Jul 31, 2008
771
if ((hap_periodic->attack_length==0) && (hap_periodic->fade_length==0)) {
Jul 31, 2008
Jul 31, 2008
772
773
SDL_free(envelope);
dest->lpEnvelope = NULL;
Jul 30, 2008
Jul 30, 2008
774
775
}
else {
Aug 6, 2008
Aug 6, 2008
776
envelope->dwAttackLevel = CCONVERT(hap_periodic->attack_level);
Jul 30, 2008
Jul 30, 2008
777
envelope->dwAttackTime = hap_periodic->attack_length * 1000;
Aug 6, 2008
Aug 6, 2008
778
envelope->dwFadeLevel = CCONVERT(hap_periodic->fade_level);
Jul 30, 2008
Jul 30, 2008
779
780
envelope->dwFadeTime = hap_periodic->fade_length * 1000;
}
781
782
783
784
785
786
787
break;
case SDL_HAPTIC_SPRING:
case SDL_HAPTIC_DAMPER:
case SDL_HAPTIC_INERTIA:
case SDL_HAPTIC_FRICTION:
Jul 15, 2008
Jul 15, 2008
788
hap_condition = &src->condition;
Jul 18, 2008
Jul 18, 2008
789
790
791
792
793
condition = SDL_malloc(sizeof(FFCONDITION) * dest->cAxes);
if (condition == NULL) {
SDL_OutOfMemory();
return -1;
}
Jul 19, 2008
Jul 19, 2008
794
SDL_memset(condition, 0, sizeof(FFCONDITION));
Jul 18, 2008
Jul 18, 2008
795
796
797
/* Specifics */
for (i=0; i<dest->cAxes; i++) {
Jul 18, 2008
Jul 18, 2008
798
799
800
condition[i].lOffset = CONVERT(hap_condition->center[i]);
condition[i].lPositiveCoefficient = CONVERT(hap_condition->right_coeff[i]);
condition[i].lNegativeCoefficient = CONVERT(hap_condition->left_coeff[i]);
Aug 6, 2008
Aug 6, 2008
801
802
803
condition[i].dwPositiveSaturation = CCONVERT(hap_condition->right_sat[i]);
condition[i].dwNegativeSaturation = CCONVERT(hap_condition->left_sat[i]);
condition[i].lDeadBand = CCONVERT(hap_condition->deadband[i]);
Jul 18, 2008
Jul 18, 2008
804
805
806
807
808
}
dest->cbTypeSpecificParams = sizeof(FFCONDITION) * dest->cAxes;
dest->lpvTypeSpecificParams = condition;
/* Generics */
Jul 18, 2008
Jul 18, 2008
809
dest->dwDuration = hap_condition->length * 1000; /* In microseconds. */
Jul 30, 2008
Jul 30, 2008
810
dest->dwTriggerButton = FFGetTriggerButton(hap_condition->button);
Jul 18, 2008
Jul 18, 2008
811
812
dest->dwTriggerRepeatInterval = hap_condition->interval;
dest->dwStartDelay = hap_condition->delay * 1000; /* In microseconds. */
Jul 18, 2008
Jul 18, 2008
813
814
/* Direction. */
Jul 18, 2008
Jul 18, 2008
815
if (SDL_SYS_SetDirection(dest, &hap_condition->direction, dest->cAxes) < 0) {
Jul 18, 2008
Jul 18, 2008
816
817
818
return -1;
}
Aug 6, 2008
Aug 6, 2008
819
/* Envelope - Not actually supported by most CONDITION implementations. */
Jul 30, 2008
Jul 30, 2008
820
821
SDL_free(dest->lpEnvelope);
dest->lpEnvelope = NULL;
822
823
824
825
break;
case SDL_HAPTIC_RAMP:
Jul 15, 2008
Jul 15, 2008
826
hap_ramp = &src->ramp;
Jul 18, 2008
Jul 18, 2008
827
828
829
830
831
ramp = SDL_malloc(sizeof(FFRAMPFORCE));
if (ramp == NULL) {
SDL_OutOfMemory();
return -1;
}
Jul 19, 2008
Jul 19, 2008
832
SDL_memset(ramp, 0, sizeof(FFRAMPFORCE));
Jul 18, 2008
Jul 18, 2008
833
834
/* Specifics */
Jul 18, 2008
Jul 18, 2008
835
ramp->lStart = CONVERT(hap_ramp->start);
Jul 18, 2008
Jul 18, 2008
836
ramp->lEnd = CONVERT(hap_ramp->end);
Jul 19, 2008
Jul 19, 2008
837
838
dest->cbTypeSpecificParams = sizeof(FFRAMPFORCE);
dest->lpvTypeSpecificParams = ramp;
Jul 18, 2008
Jul 18, 2008
839
840
841
/* Generics */
dest->dwDuration = hap_ramp->length * 1000; /* In microseconds. */
Jul 30, 2008
Jul 30, 2008
842
dest->dwTriggerButton = FFGetTriggerButton(hap_ramp->button);
Jul 18, 2008
Jul 18, 2008
843
844
845
846
847
848
849
850
851
dest->dwTriggerRepeatInterval = hap_ramp->interval;
dest->dwStartDelay = hap_ramp->delay * 1000; /* In microseconds. */
/* Direction. */
if (SDL_SYS_SetDirection(dest, &hap_ramp->direction, dest->cAxes) < 0) {
return -1;
}
/* Envelope */
Jul 31, 2008
Jul 31, 2008
852
if ((hap_ramp->attack_length==0) && (hap_ramp->fade_length==0)) {
Jul 31, 2008
Jul 31, 2008
853
854
SDL_free(envelope);
dest->lpEnvelope = NULL;
Jul 31, 2008
Jul 31, 2008
855
}
Jul 30, 2008
Jul 30, 2008
856
else {
Aug 6, 2008
Aug 6, 2008
857
envelope->dwAttackLevel = CCONVERT(hap_ramp->attack_level);
Jul 30, 2008
Jul 30, 2008
858
envelope->dwAttackTime = hap_ramp->attack_length * 1000;
Aug 6, 2008
Aug 6, 2008
859
envelope->dwFadeLevel = CCONVERT(hap_ramp->fade_level);
Jul 30, 2008
Jul 30, 2008
860
861
envelope->dwFadeTime = hap_ramp->fade_length * 1000;
}
862
863
864
break;
Jul 19, 2008
Jul 19, 2008
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
case SDL_HAPTIC_CUSTOM:
hap_custom = &src->custom;
custom = SDL_malloc(sizeof(FFCUSTOMFORCE));
if (custom == NULL) {
SDL_OutOfMemory();
return -1;
}
SDL_memset(custom, 0, sizeof(FFCUSTOMFORCE));
/* Specifics */
custom->cChannels = hap_custom->channels;
custom->dwSamplePeriod = hap_custom->period * 1000;
custom->cSamples = hap_custom->samples;
custom->rglForceData = SDL_malloc(sizeof(LONG)*custom->cSamples*custom->cChannels);
for (i=0; i<hap_custom->samples*hap_custom->channels; i++) { /* Copy data. */
Aug 6, 2008
Aug 6, 2008
880
custom->rglForceData[i] = CCONVERT(hap_custom->data[i]);
Jul 19, 2008
Jul 19, 2008
881
882
883
884
885
886
}
dest->cbTypeSpecificParams = sizeof(FFCUSTOMFORCE);
dest->lpvTypeSpecificParams = custom;
/* Generics */
dest->dwDuration = hap_custom->length * 1000; /* In microseconds. */
Jul 30, 2008
Jul 30, 2008
887
dest->dwTriggerButton = FFGetTriggerButton(hap_custom->button);
Jul 19, 2008
Jul 19, 2008
888
889
890
891
892
893
894
895
896
dest->dwTriggerRepeatInterval = hap_custom->interval;
dest->dwStartDelay = hap_custom->delay * 1000; /* In microseconds. */
/* Direction. */
if (SDL_SYS_SetDirection(dest, &hap_custom->direction, dest->cAxes) < 0) {
return -1;
}
/* Envelope */
Jul 31, 2008
Jul 31, 2008
897
if ((hap_custom->attack_length==0) && (hap_custom->fade_length==0)) {
Jul 31, 2008
Jul 31, 2008
898
899
SDL_free(envelope);
dest->lpEnvelope = NULL;
Jul 30, 2008
Jul 30, 2008
900
901
}
else {
Aug 6, 2008
Aug 6, 2008
902
envelope->dwAttackLevel = CCONVERT(hap_custom->attack_level);
Jul 30, 2008
Jul 30, 2008
903
envelope->dwAttackTime = hap_custom->attack_length * 1000;
Aug 6, 2008
Aug 6, 2008
904
envelope->dwFadeLevel = CCONVERT(hap_custom->fade_level);
Jul 30, 2008
Jul 30, 2008
905
906
envelope->dwFadeTime = hap_custom->fade_length * 1000;
}
Jul 19, 2008
Jul 19, 2008
907
908
909
break;
910
911
912
913
914
915
916
917
918
919
default:
SDL_SetError("Haptic: Unknown effect type.");
return -1;
}
return 0;
}
Jul 18, 2008
Jul 18, 2008
920
921
922
/*
* Frees an FFEFFECT allocated by SDL_SYS_ToFFEFFECT.
*/
Jul 18, 2008
Jul 18, 2008
923
static void
Jul 19, 2008
Jul 19, 2008
924
SDL_SYS_HapticFreeFFEFFECT( FFEFFECT * effect, int type )
Jul 18, 2008
Jul 18, 2008
925
{
Jul 19, 2008
Jul 19, 2008
926
927
FFCUSTOMFORCE *custom;
Jul 18, 2008
Jul 18, 2008
928
929
930
931
932
933
934
935
936
if (effect->lpEnvelope != NULL) {
SDL_free(effect->lpEnvelope);
effect->lpEnvelope = NULL;
}
if (effect->rgdwAxes != NULL) {
SDL_free(effect->rgdwAxes);
effect->rgdwAxes = NULL;
}
if (effect->lpvTypeSpecificParams != NULL) {
Jul 19, 2008
Jul 19, 2008
937
938
939
940
941
if (type == SDL_HAPTIC_CUSTOM) { /* Must free the custom data. */
custom = (FFCUSTOMFORCE*) effect->lpvTypeSpecificParams;
SDL_free(custom->rglForceData);
custom->rglForceData = NULL;
}
Jul 18, 2008
Jul 18, 2008
942
943
944
945
946
947
948
949
950
951
SDL_free(effect->lpvTypeSpecificParams);
effect->lpvTypeSpecificParams = NULL;
}
if (effect->rglDirection != NULL) {
SDL_free(effect->rglDirection);
effect->rglDirection = NULL;
}
}
952
953
954
/*
* Gets the effect type from the generic SDL haptic effect wrapper.
*/
Jul 18, 2008
Jul 18, 2008
955
CFUUIDRef
Jul 30, 2008
Jul 30, 2008
956
SDL_SYS_HapticEffectType( Uint16 type )
Jul 30, 2008
Jul 30, 2008
958
switch (type) {
959
960
961
962
963
964
965
966
967
968
969
970
case SDL_HAPTIC_CONSTANT:
return kFFEffectType_ConstantForce_ID;
case SDL_HAPTIC_RAMP:
return kFFEffectType_RampForce_ID;
case SDL_HAPTIC_SQUARE:
return kFFEffectType_Square_ID;
case SDL_HAPTIC_SINE:
return kFFEffectType_Sine_ID;
Jul 15, 2008
Jul 15, 2008
971
case SDL_HAPTIC_TRIANGLE:
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
return kFFEffectType_Triangle_ID;
case SDL_HAPTIC_SAWTOOTHUP:
return kFFEffectType_SawtoothUp_ID;
case SDL_HAPTIC_SAWTOOTHDOWN:
return kFFEffectType_SawtoothDown_ID;
case SDL_HAPTIC_SPRING:
return kFFEffectType_Spring_ID;
case SDL_HAPTIC_DAMPER:
return kFFEffectType_Damper_ID;
case SDL_HAPTIC_INERTIA:
return kFFEffectType_Inertia_ID;
case SDL_HAPTIC_FRICTION:
return kFFEffectType_Friction_ID;
case SDL_HAPTIC_CUSTOM:
return kFFEffectType_CustomForce_ID;
default:
SDL_SetError("Haptic: Unknown effect type.");
return NULL;
}
}