annotate src/haptic/darwin/SDL_syshaptic.c @ 2639:668fee3b268a gsoc2008_force_feedback

Casting for warnings. Fixed possible segfault.
author Edgar Simo <bobbens@gmail.com>
date Sun, 10 Aug 2008 19:53:58 +0000
parents 2f826c229d77
children e1e1be935178
rev   line source
2520
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
1 /*
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
2 SDL - Simple DirectMedia Layer
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
3 Copyright (C) 2008 Edgar Simo
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
4
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
5 This library is free software; you can redistribute it and/or
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
6 modify it under the terms of the GNU Lesser General Public
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
7 License as published by the Free Software Foundation; either
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
8 version 2.1 of the License, or (at your option) any later version.
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
9
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
10 This library is distributed in the hope that it will be useful,
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
13 Lesser General Public License for more details.
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
14
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
15 You should have received a copy of the GNU Lesser General Public
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
16 License along with this library; if not, write to the Free Software
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
17 Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
18
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
19 Sam Lantinga
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
20 slouken@libsdl.org
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
21 */
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
22 #include "SDL_config.h"
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
23
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
24 #ifdef SDL_HAPTIC_IOKIT
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
25
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
26 #include "SDL_haptic.h"
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
27 #include "../SDL_syshaptic.h"
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
28 #include "SDL_joystick.h"
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
29 #include "../../joystick/SDL_sysjoystick.h" /* For the real SDL_Joystick */
2633
6b0d1f494c10 Fixed typo.
Edgar Simo <bobbens@gmail.com>
parents: 2632
diff changeset
30 #include "../../joystick/darwin/SDL_sysjoystick_c.h" /* For joystick hwdata */
2520
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
31
2522
0877146be013 Now compiles cleanly (has yet to work though).
Edgar Simo <bobbens@gmail.com>
parents: 2521
diff changeset
32 #include <IOKit/IOKitLib.h>
0877146be013 Now compiles cleanly (has yet to work though).
Edgar Simo <bobbens@gmail.com>
parents: 2521
diff changeset
33 #include <IOKit/hid/IOHIDKeys.h>
2520
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
34 #include <ForceFeedback/ForceFeedback.h>
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
35 #include <ForceFeedback/ForceFeedbackConstants.h>
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
36
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
37
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
38 #define MAX_HAPTICS 32
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
39
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
40
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
41 /*
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
42 * List of available haptic devices.
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
43 */
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
44 static struct
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
45 {
2537
8d92ec01f92f Support for SDL_HapticName in darwin.
Edgar Simo <bobbens@gmail.com>
parents: 2535
diff changeset
46 char name[256];
2520
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
47 io_service_t dev;
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
48 SDL_Haptic *haptic;
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
49 } SDL_hapticlist[MAX_HAPTICS];
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
50
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
51
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
52 /*
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
53 * Haptic system hardware data.
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
54 */
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
55 struct haptic_hwdata
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
56 {
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
57 FFDeviceObjectReference device; /* Hardware device. */
2627
265ced2079bd Proper axes support for darwin haptic.
Edgar Simo <bobbens@gmail.com>
parents: 2610
diff changeset
58 UInt8 axes[3];
2520
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
59 };
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
60
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
61
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
62 /*
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
63 * Haptic system effect data.
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
64 */
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
65 struct haptic_hweffect
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
66 {
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
67 FFEffectObjectReference ref; /* Reference. */
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
68 struct FFEFFECT effect; /* Hardware effect. */
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
69 };
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
70
2531
7f2a4c387292 Fixed some inconsistancies in coding style.
Edgar Simo <bobbens@gmail.com>
parents: 2530
diff changeset
71 /*
7f2a4c387292 Fixed some inconsistancies in coding style.
Edgar Simo <bobbens@gmail.com>
parents: 2530
diff changeset
72 * Prototypes.
7f2a4c387292 Fixed some inconsistancies in coding style.
Edgar Simo <bobbens@gmail.com>
parents: 2530
diff changeset
73 */
2537
8d92ec01f92f Support for SDL_HapticName in darwin.
Edgar Simo <bobbens@gmail.com>
parents: 2535
diff changeset
74 static void SDL_SYS_HapticFreeFFEFFECT(FFEFFECT * effect, int type);
8d92ec01f92f Support for SDL_HapticName in darwin.
Edgar Simo <bobbens@gmail.com>
parents: 2535
diff changeset
75 static int HIDGetDeviceProduct(io_service_t dev, char * name);
2531
7f2a4c387292 Fixed some inconsistancies in coding style.
Edgar Simo <bobbens@gmail.com>
parents: 2530
diff changeset
76
2520
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
77
2541
f2649eaa552e More verbose errors.
Edgar Simo <bobbens@gmail.com>
parents: 2538
diff changeset
78 /*
f2649eaa552e More verbose errors.
Edgar Simo <bobbens@gmail.com>
parents: 2538
diff changeset
79 * Like strerror but for force feedback errors.
f2649eaa552e More verbose errors.
Edgar Simo <bobbens@gmail.com>
parents: 2538
diff changeset
80 */
f2649eaa552e More verbose errors.
Edgar Simo <bobbens@gmail.com>
parents: 2538
diff changeset
81 static const char *
f2649eaa552e More verbose errors.
Edgar Simo <bobbens@gmail.com>
parents: 2538
diff changeset
82 FFStrError(HRESULT err)
f2649eaa552e More verbose errors.
Edgar Simo <bobbens@gmail.com>
parents: 2538
diff changeset
83 {
f2649eaa552e More verbose errors.
Edgar Simo <bobbens@gmail.com>
parents: 2538
diff changeset
84 switch (err) {
f2649eaa552e More verbose errors.
Edgar Simo <bobbens@gmail.com>
parents: 2538
diff changeset
85 case FFERR_DEVICEFULL:
f2649eaa552e More verbose errors.
Edgar Simo <bobbens@gmail.com>
parents: 2538
diff changeset
86 return "device full";
2608
7c7a63f22afa Using same syntax as the windows port for updating effects.
Edgar Simo <bobbens@gmail.com>
parents: 2604
diff changeset
87 /* This should be valid, but for some reason isn't defined... */
2543
3544a632064c Commented out a bit until definition is found.
Edgar Simo <bobbens@gmail.com>
parents: 2542
diff changeset
88 /*case FFERR_DEVICENOTREG:
3544a632064c Commented out a bit until definition is found.
Edgar Simo <bobbens@gmail.com>
parents: 2542
diff changeset
89 return "device not registered";*/
2541
f2649eaa552e More verbose errors.
Edgar Simo <bobbens@gmail.com>
parents: 2538
diff changeset
90 case FFERR_DEVICEPAUSED:
f2649eaa552e More verbose errors.
Edgar Simo <bobbens@gmail.com>
parents: 2538
diff changeset
91 return "device paused";
f2649eaa552e More verbose errors.
Edgar Simo <bobbens@gmail.com>
parents: 2538
diff changeset
92 case FFERR_DEVICERELEASED:
f2649eaa552e More verbose errors.
Edgar Simo <bobbens@gmail.com>
parents: 2538
diff changeset
93 return "device released";
f2649eaa552e More verbose errors.
Edgar Simo <bobbens@gmail.com>
parents: 2538
diff changeset
94 case FFERR_EFFECTPLAYING:
f2649eaa552e More verbose errors.
Edgar Simo <bobbens@gmail.com>
parents: 2538
diff changeset
95 return "effect playing";
f2649eaa552e More verbose errors.
Edgar Simo <bobbens@gmail.com>
parents: 2538
diff changeset
96 case FFERR_EFFECTTYPEMISMATCH:
f2649eaa552e More verbose errors.
Edgar Simo <bobbens@gmail.com>
parents: 2538
diff changeset
97 return "effect type mismatch";
f2649eaa552e More verbose errors.
Edgar Simo <bobbens@gmail.com>
parents: 2538
diff changeset
98 case FFERR_EFFECTTYPENOTSUPPORTED:
f2649eaa552e More verbose errors.
Edgar Simo <bobbens@gmail.com>
parents: 2538
diff changeset
99 return "effect type not supported";
f2649eaa552e More verbose errors.
Edgar Simo <bobbens@gmail.com>
parents: 2538
diff changeset
100 case FFERR_GENERIC:
f2649eaa552e More verbose errors.
Edgar Simo <bobbens@gmail.com>
parents: 2538
diff changeset
101 return "undetermined error";
f2649eaa552e More verbose errors.
Edgar Simo <bobbens@gmail.com>
parents: 2538
diff changeset
102 case FFERR_HASEFFECTS:
f2649eaa552e More verbose errors.
Edgar Simo <bobbens@gmail.com>
parents: 2538
diff changeset
103 return "device has effects";
f2649eaa552e More verbose errors.
Edgar Simo <bobbens@gmail.com>
parents: 2538
diff changeset
104 case FFERR_INCOMPLETEEFFECT:
f2649eaa552e More verbose errors.
Edgar Simo <bobbens@gmail.com>
parents: 2538
diff changeset
105 return "incomplete effect";
f2649eaa552e More verbose errors.
Edgar Simo <bobbens@gmail.com>
parents: 2538
diff changeset
106 case FFERR_INTERNAL:
f2649eaa552e More verbose errors.
Edgar Simo <bobbens@gmail.com>
parents: 2538
diff changeset
107 return "internal fault";
f2649eaa552e More verbose errors.
Edgar Simo <bobbens@gmail.com>
parents: 2538
diff changeset
108 case FFERR_INVALIDDOWNLOADID:
f2649eaa552e More verbose errors.
Edgar Simo <bobbens@gmail.com>
parents: 2538
diff changeset
109 return "invalid download id";
f2649eaa552e More verbose errors.
Edgar Simo <bobbens@gmail.com>
parents: 2538
diff changeset
110 case FFERR_INVALIDPARAM:
f2649eaa552e More verbose errors.
Edgar Simo <bobbens@gmail.com>
parents: 2538
diff changeset
111 return "invalid parameter";
f2649eaa552e More verbose errors.
Edgar Simo <bobbens@gmail.com>
parents: 2538
diff changeset
112 case FFERR_MOREDATA:
f2649eaa552e More verbose errors.
Edgar Simo <bobbens@gmail.com>
parents: 2538
diff changeset
113 return "more data";
f2649eaa552e More verbose errors.
Edgar Simo <bobbens@gmail.com>
parents: 2538
diff changeset
114 case FFERR_NOINTERFACE:
f2649eaa552e More verbose errors.
Edgar Simo <bobbens@gmail.com>
parents: 2538
diff changeset
115 return "interface not supported";
f2649eaa552e More verbose errors.
Edgar Simo <bobbens@gmail.com>
parents: 2538
diff changeset
116 case FFERR_NOTDOWNLOADED:
f2649eaa552e More verbose errors.
Edgar Simo <bobbens@gmail.com>
parents: 2538
diff changeset
117 return "effect is not downloaded";
f2649eaa552e More verbose errors.
Edgar Simo <bobbens@gmail.com>
parents: 2538
diff changeset
118 case FFERR_NOTINITIALIZED:
f2649eaa552e More verbose errors.
Edgar Simo <bobbens@gmail.com>
parents: 2538
diff changeset
119 return "object has not been initialized";
f2649eaa552e More verbose errors.
Edgar Simo <bobbens@gmail.com>
parents: 2538
diff changeset
120 case FFERR_OUTOFMEMORY:
f2649eaa552e More verbose errors.
Edgar Simo <bobbens@gmail.com>
parents: 2538
diff changeset
121 return "out of memory";
f2649eaa552e More verbose errors.
Edgar Simo <bobbens@gmail.com>
parents: 2538
diff changeset
122 case FFERR_UNPLUGGED:
f2649eaa552e More verbose errors.
Edgar Simo <bobbens@gmail.com>
parents: 2538
diff changeset
123 return "device is unplugged";
f2649eaa552e More verbose errors.
Edgar Simo <bobbens@gmail.com>
parents: 2538
diff changeset
124 case FFERR_UNSUPPORTED:
f2649eaa552e More verbose errors.
Edgar Simo <bobbens@gmail.com>
parents: 2538
diff changeset
125 return "function call unsupported";
f2649eaa552e More verbose errors.
Edgar Simo <bobbens@gmail.com>
parents: 2538
diff changeset
126 case FFERR_UNSUPPORTEDAXIS:
f2649eaa552e More verbose errors.
Edgar Simo <bobbens@gmail.com>
parents: 2538
diff changeset
127 return "axis unsupported";
f2649eaa552e More verbose errors.
Edgar Simo <bobbens@gmail.com>
parents: 2538
diff changeset
128
f2649eaa552e More verbose errors.
Edgar Simo <bobbens@gmail.com>
parents: 2538
diff changeset
129 default:
f2649eaa552e More verbose errors.
Edgar Simo <bobbens@gmail.com>
parents: 2538
diff changeset
130 return "unknown error";
f2649eaa552e More verbose errors.
Edgar Simo <bobbens@gmail.com>
parents: 2538
diff changeset
131 }
f2649eaa552e More verbose errors.
Edgar Simo <bobbens@gmail.com>
parents: 2538
diff changeset
132 }
f2649eaa552e More verbose errors.
Edgar Simo <bobbens@gmail.com>
parents: 2538
diff changeset
133
f2649eaa552e More verbose errors.
Edgar Simo <bobbens@gmail.com>
parents: 2538
diff changeset
134
2520
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
135 /*
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
136 * Initializes the haptic subsystem.
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
137 */
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
138 int
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
139 SDL_SYS_HapticInit(void)
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
140 {
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
141 int numhaptics;
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
142 IOReturn result;
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
143 io_iterator_t iter;
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
144 CFDictionaryRef match;
2521
7aa91c21ce5f Many typo and silly mistake fixes.
Edgar Simo <bobbens@gmail.com>
parents: 2520
diff changeset
145 io_service_t device;
2520
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
146
2537
8d92ec01f92f Support for SDL_HapticName in darwin.
Edgar Simo <bobbens@gmail.com>
parents: 2535
diff changeset
147 /* Clear all the memory. */
8d92ec01f92f Support for SDL_HapticName in darwin.
Edgar Simo <bobbens@gmail.com>
parents: 2535
diff changeset
148 SDL_memset(SDL_hapticlist, 0, sizeof(SDL_hapticlist));
8d92ec01f92f Support for SDL_HapticName in darwin.
Edgar Simo <bobbens@gmail.com>
parents: 2535
diff changeset
149
2520
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
150 /* Get HID devices. */
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
151 match = IOServiceMatching(kIOHIDDeviceKey);
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
152 if (match == NULL) {
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
153 SDL_SetError("Haptic: Failed to get IOServiceMatching.");
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
154 return -1;
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
155 }
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
156
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
157 /* Now search I/O Registry for matching devices. */
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
158 result = IOServiceGetMatchingServices(kIOMasterPortDefault, match, &iter);
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
159 if (result != kIOReturnSuccess) {
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
160 SDL_SetError("Haptic: Couldn't create a HID object iterator.");
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
161 return -1;
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
162 }
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
163 /* IOServiceGetMatchingServices consumes dictionary. */
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
164
2639
668fee3b268a Casting for warnings.
Edgar Simo <bobbens@gmail.com>
parents: 2637
diff changeset
165 if (!iter) { /* No iterator. */
668fee3b268a Casting for warnings.
Edgar Simo <bobbens@gmail.com>
parents: 2637
diff changeset
166 numhaptics = 0;
668fee3b268a Casting for warnings.
Edgar Simo <bobbens@gmail.com>
parents: 2637
diff changeset
167 return 0;
668fee3b268a Casting for warnings.
Edgar Simo <bobbens@gmail.com>
parents: 2637
diff changeset
168 }
668fee3b268a Casting for warnings.
Edgar Simo <bobbens@gmail.com>
parents: 2637
diff changeset
169
2520
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
170 numhaptics = 0;
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
171 while ((device = IOIteratorNext(iter)) != IO_OBJECT_NULL) {
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
172
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
173 /* Check for force feedback. */
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
174 if (FFIsForceFeedback(device) == FF_OK) {
2537
8d92ec01f92f Support for SDL_HapticName in darwin.
Edgar Simo <bobbens@gmail.com>
parents: 2535
diff changeset
175 HIDGetDeviceProduct(device, SDL_hapticlist[numhaptics].name);
2520
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
176 SDL_hapticlist[numhaptics].dev = device;
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
177 SDL_hapticlist[numhaptics].haptic = NULL;
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
178 numhaptics++;
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
179 }
2537
8d92ec01f92f Support for SDL_HapticName in darwin.
Edgar Simo <bobbens@gmail.com>
parents: 2535
diff changeset
180 else { /* Free the unused device. */
8d92ec01f92f Support for SDL_HapticName in darwin.
Edgar Simo <bobbens@gmail.com>
parents: 2535
diff changeset
181 IOObjectRelease(device);
8d92ec01f92f Support for SDL_HapticName in darwin.
Edgar Simo <bobbens@gmail.com>
parents: 2535
diff changeset
182 }
2520
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
183
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
184 /* Reached haptic limit. */
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
185 if (numhaptics >= MAX_HAPTICS)
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
186 break;
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
187 }
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
188 IOObjectRelease(iter);
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
189
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
190 return numhaptics;
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
191 }
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
192
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
193
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
194 /*
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
195 * Return the name of a haptic device, does not need to be opened.
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
196 */
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
197 const char *
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
198 SDL_SYS_HapticName(int index)
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
199 {
2537
8d92ec01f92f Support for SDL_HapticName in darwin.
Edgar Simo <bobbens@gmail.com>
parents: 2535
diff changeset
200 return SDL_hapticlist[index].name;
8d92ec01f92f Support for SDL_HapticName in darwin.
Edgar Simo <bobbens@gmail.com>
parents: 2535
diff changeset
201 }
8d92ec01f92f Support for SDL_HapticName in darwin.
Edgar Simo <bobbens@gmail.com>
parents: 2535
diff changeset
202
8d92ec01f92f Support for SDL_HapticName in darwin.
Edgar Simo <bobbens@gmail.com>
parents: 2535
diff changeset
203 /*
8d92ec01f92f Support for SDL_HapticName in darwin.
Edgar Simo <bobbens@gmail.com>
parents: 2535
diff changeset
204 * Gets the device's product name.
8d92ec01f92f Support for SDL_HapticName in darwin.
Edgar Simo <bobbens@gmail.com>
parents: 2535
diff changeset
205 */
8d92ec01f92f Support for SDL_HapticName in darwin.
Edgar Simo <bobbens@gmail.com>
parents: 2535
diff changeset
206 static int
8d92ec01f92f Support for SDL_HapticName in darwin.
Edgar Simo <bobbens@gmail.com>
parents: 2535
diff changeset
207 HIDGetDeviceProduct(io_service_t dev, char *name)
8d92ec01f92f Support for SDL_HapticName in darwin.
Edgar Simo <bobbens@gmail.com>
parents: 2535
diff changeset
208 {
8d92ec01f92f Support for SDL_HapticName in darwin.
Edgar Simo <bobbens@gmail.com>
parents: 2535
diff changeset
209 CFMutableDictionaryRef hidProperties, usbProperties;
8d92ec01f92f Support for SDL_HapticName in darwin.
Edgar Simo <bobbens@gmail.com>
parents: 2535
diff changeset
210 io_registry_entry_t parent1, parent2;
2546
daf40497dcd4 Attempt to fix HIDGetDeviceProduct.
Edgar Simo <bobbens@gmail.com>
parents: 2543
diff changeset
211 kern_return_t ret;
2537
8d92ec01f92f Support for SDL_HapticName in darwin.
Edgar Simo <bobbens@gmail.com>
parents: 2535
diff changeset
212
8d92ec01f92f Support for SDL_HapticName in darwin.
Edgar Simo <bobbens@gmail.com>
parents: 2535
diff changeset
213 hidProperties = usbProperties = 0;
8d92ec01f92f Support for SDL_HapticName in darwin.
Edgar Simo <bobbens@gmail.com>
parents: 2535
diff changeset
214
2547
3cfe0ae232c0 Accidently left in hidDevice.
Edgar Simo <bobbens@gmail.com>
parents: 2546
diff changeset
215 ret = IORegistryEntryCreateCFProperties(dev, &hidProperties,
2546
daf40497dcd4 Attempt to fix HIDGetDeviceProduct.
Edgar Simo <bobbens@gmail.com>
parents: 2543
diff changeset
216 kCFAllocatorDefault,
daf40497dcd4 Attempt to fix HIDGetDeviceProduct.
Edgar Simo <bobbens@gmail.com>
parents: 2543
diff changeset
217 kNilOptions);
daf40497dcd4 Attempt to fix HIDGetDeviceProduct.
Edgar Simo <bobbens@gmail.com>
parents: 2543
diff changeset
218 if ((ret != KERN_SUCCESS) || !hidProperties) {
daf40497dcd4 Attempt to fix HIDGetDeviceProduct.
Edgar Simo <bobbens@gmail.com>
parents: 2543
diff changeset
219 SDL_SetError("Haptic: Unable to create CFProperties.");
daf40497dcd4 Attempt to fix HIDGetDeviceProduct.
Edgar Simo <bobbens@gmail.com>
parents: 2543
diff changeset
220 return -1;
daf40497dcd4 Attempt to fix HIDGetDeviceProduct.
Edgar Simo <bobbens@gmail.com>
parents: 2543
diff changeset
221 }
daf40497dcd4 Attempt to fix HIDGetDeviceProduct.
Edgar Simo <bobbens@gmail.com>
parents: 2543
diff changeset
222
2537
8d92ec01f92f Support for SDL_HapticName in darwin.
Edgar Simo <bobbens@gmail.com>
parents: 2535
diff changeset
223 /* Mac OS X currently is not mirroring all USB properties to HID page so need to look at USB device page also
8d92ec01f92f Support for SDL_HapticName in darwin.
Edgar Simo <bobbens@gmail.com>
parents: 2535
diff changeset
224 * get dictionary for usb properties: step up two levels and get CF dictionary for USB properties
8d92ec01f92f Support for SDL_HapticName in darwin.
Edgar Simo <bobbens@gmail.com>
parents: 2535
diff changeset
225 */
8d92ec01f92f Support for SDL_HapticName in darwin.
Edgar Simo <bobbens@gmail.com>
parents: 2535
diff changeset
226 if ((KERN_SUCCESS ==
8d92ec01f92f Support for SDL_HapticName in darwin.
Edgar Simo <bobbens@gmail.com>
parents: 2535
diff changeset
227 IORegistryEntryGetParentEntry(dev, kIOServicePlane, &parent1))
8d92ec01f92f Support for SDL_HapticName in darwin.
Edgar Simo <bobbens@gmail.com>
parents: 2535
diff changeset
228 && (KERN_SUCCESS ==
8d92ec01f92f Support for SDL_HapticName in darwin.
Edgar Simo <bobbens@gmail.com>
parents: 2535
diff changeset
229 IORegistryEntryGetParentEntry(parent1, kIOServicePlane, &parent2))
8d92ec01f92f Support for SDL_HapticName in darwin.
Edgar Simo <bobbens@gmail.com>
parents: 2535
diff changeset
230 && (KERN_SUCCESS ==
8d92ec01f92f Support for SDL_HapticName in darwin.
Edgar Simo <bobbens@gmail.com>
parents: 2535
diff changeset
231 IORegistryEntryCreateCFProperties(parent2, &usbProperties,
2546
daf40497dcd4 Attempt to fix HIDGetDeviceProduct.
Edgar Simo <bobbens@gmail.com>
parents: 2543
diff changeset
232 kCFAllocatorDefault,
daf40497dcd4 Attempt to fix HIDGetDeviceProduct.
Edgar Simo <bobbens@gmail.com>
parents: 2543
diff changeset
233 kNilOptions))) {
2537
8d92ec01f92f Support for SDL_HapticName in darwin.
Edgar Simo <bobbens@gmail.com>
parents: 2535
diff changeset
234 if (usbProperties) {
8d92ec01f92f Support for SDL_HapticName in darwin.
Edgar Simo <bobbens@gmail.com>
parents: 2535
diff changeset
235 CFTypeRef refCF = 0;
8d92ec01f92f Support for SDL_HapticName in darwin.
Edgar Simo <bobbens@gmail.com>
parents: 2535
diff changeset
236 /* get device info
8d92ec01f92f Support for SDL_HapticName in darwin.
Edgar Simo <bobbens@gmail.com>
parents: 2535
diff changeset
237 * try hid dictionary first, if fail then go to usb dictionary
8d92ec01f92f Support for SDL_HapticName in darwin.
Edgar Simo <bobbens@gmail.com>
parents: 2535
diff changeset
238 */
8d92ec01f92f Support for SDL_HapticName in darwin.
Edgar Simo <bobbens@gmail.com>
parents: 2535
diff changeset
239
8d92ec01f92f Support for SDL_HapticName in darwin.
Edgar Simo <bobbens@gmail.com>
parents: 2535
diff changeset
240
8d92ec01f92f Support for SDL_HapticName in darwin.
Edgar Simo <bobbens@gmail.com>
parents: 2535
diff changeset
241 /* Get product name */
2546
daf40497dcd4 Attempt to fix HIDGetDeviceProduct.
Edgar Simo <bobbens@gmail.com>
parents: 2543
diff changeset
242 refCF = CFDictionaryGetValue(hidProperties, CFSTR(kIOHIDProductKey));
2537
8d92ec01f92f Support for SDL_HapticName in darwin.
Edgar Simo <bobbens@gmail.com>
parents: 2535
diff changeset
243 if (!refCF)
8d92ec01f92f Support for SDL_HapticName in darwin.
Edgar Simo <bobbens@gmail.com>
parents: 2535
diff changeset
244 refCF =
8d92ec01f92f Support for SDL_HapticName in darwin.
Edgar Simo <bobbens@gmail.com>
parents: 2535
diff changeset
245 CFDictionaryGetValue(usbProperties, CFSTR("USB Product Name"));
8d92ec01f92f Support for SDL_HapticName in darwin.
Edgar Simo <bobbens@gmail.com>
parents: 2535
diff changeset
246 if (refCF) {
8d92ec01f92f Support for SDL_HapticName in darwin.
Edgar Simo <bobbens@gmail.com>
parents: 2535
diff changeset
247 if (!CFStringGetCString(refCF, name, 256,
8d92ec01f92f Support for SDL_HapticName in darwin.
Edgar Simo <bobbens@gmail.com>
parents: 2535
diff changeset
248 CFStringGetSystemEncoding())) {
8d92ec01f92f Support for SDL_HapticName in darwin.
Edgar Simo <bobbens@gmail.com>
parents: 2535
diff changeset
249 SDL_SetError("CFStringGetCString error retrieving pDevice->product.");
8d92ec01f92f Support for SDL_HapticName in darwin.
Edgar Simo <bobbens@gmail.com>
parents: 2535
diff changeset
250 return -1;
8d92ec01f92f Support for SDL_HapticName in darwin.
Edgar Simo <bobbens@gmail.com>
parents: 2535
diff changeset
251 }
8d92ec01f92f Support for SDL_HapticName in darwin.
Edgar Simo <bobbens@gmail.com>
parents: 2535
diff changeset
252 }
8d92ec01f92f Support for SDL_HapticName in darwin.
Edgar Simo <bobbens@gmail.com>
parents: 2535
diff changeset
253
8d92ec01f92f Support for SDL_HapticName in darwin.
Edgar Simo <bobbens@gmail.com>
parents: 2535
diff changeset
254 CFRelease(usbProperties);
8d92ec01f92f Support for SDL_HapticName in darwin.
Edgar Simo <bobbens@gmail.com>
parents: 2535
diff changeset
255 }
8d92ec01f92f Support for SDL_HapticName in darwin.
Edgar Simo <bobbens@gmail.com>
parents: 2535
diff changeset
256 else {
8d92ec01f92f Support for SDL_HapticName in darwin.
Edgar Simo <bobbens@gmail.com>
parents: 2535
diff changeset
257 SDL_SetError("IORegistryEntryCreateCFProperties failed to create usbProperties.");
8d92ec01f92f Support for SDL_HapticName in darwin.
Edgar Simo <bobbens@gmail.com>
parents: 2535
diff changeset
258 return -1;
8d92ec01f92f Support for SDL_HapticName in darwin.
Edgar Simo <bobbens@gmail.com>
parents: 2535
diff changeset
259 }
8d92ec01f92f Support for SDL_HapticName in darwin.
Edgar Simo <bobbens@gmail.com>
parents: 2535
diff changeset
260
8d92ec01f92f Support for SDL_HapticName in darwin.
Edgar Simo <bobbens@gmail.com>
parents: 2535
diff changeset
261 /* Release stuff. */
8d92ec01f92f Support for SDL_HapticName in darwin.
Edgar Simo <bobbens@gmail.com>
parents: 2535
diff changeset
262 if (kIOReturnSuccess != IOObjectRelease(parent2)) {
8d92ec01f92f Support for SDL_HapticName in darwin.
Edgar Simo <bobbens@gmail.com>
parents: 2535
diff changeset
263 SDL_SetError("IOObjectRelease error with parent2.");
8d92ec01f92f Support for SDL_HapticName in darwin.
Edgar Simo <bobbens@gmail.com>
parents: 2535
diff changeset
264 }
8d92ec01f92f Support for SDL_HapticName in darwin.
Edgar Simo <bobbens@gmail.com>
parents: 2535
diff changeset
265 if (kIOReturnSuccess != IOObjectRelease(parent1)) {
8d92ec01f92f Support for SDL_HapticName in darwin.
Edgar Simo <bobbens@gmail.com>
parents: 2535
diff changeset
266 SDL_SetError("IOObjectRelease error with parent1.");
8d92ec01f92f Support for SDL_HapticName in darwin.
Edgar Simo <bobbens@gmail.com>
parents: 2535
diff changeset
267 }
8d92ec01f92f Support for SDL_HapticName in darwin.
Edgar Simo <bobbens@gmail.com>
parents: 2535
diff changeset
268 }
2546
daf40497dcd4 Attempt to fix HIDGetDeviceProduct.
Edgar Simo <bobbens@gmail.com>
parents: 2543
diff changeset
269 else {
daf40497dcd4 Attempt to fix HIDGetDeviceProduct.
Edgar Simo <bobbens@gmail.com>
parents: 2543
diff changeset
270 SDL_SetError("Haptic: Error getting registry entries.");
daf40497dcd4 Attempt to fix HIDGetDeviceProduct.
Edgar Simo <bobbens@gmail.com>
parents: 2543
diff changeset
271 return -1;
daf40497dcd4 Attempt to fix HIDGetDeviceProduct.
Edgar Simo <bobbens@gmail.com>
parents: 2543
diff changeset
272 }
daf40497dcd4 Attempt to fix HIDGetDeviceProduct.
Edgar Simo <bobbens@gmail.com>
parents: 2543
diff changeset
273
2537
8d92ec01f92f Support for SDL_HapticName in darwin.
Edgar Simo <bobbens@gmail.com>
parents: 2535
diff changeset
274 return 0;
2520
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
275 }
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
276
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
277
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
278 #define FF_TEST(ff, s) \
2608
7c7a63f22afa Using same syntax as the windows port for updating effects.
Edgar Simo <bobbens@gmail.com>
parents: 2604
diff changeset
279 if (features.supportedEffects & (ff)) supported |= (s)
2520
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
280 /*
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
281 * Gets supported features.
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
282 */
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
283 static unsigned int
2627
265ced2079bd Proper axes support for darwin haptic.
Edgar Simo <bobbens@gmail.com>
parents: 2610
diff changeset
284 GetSupportedFeatures(SDL_Haptic* haptic)
2520
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
285 {
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
286 HRESULT ret;
2627
265ced2079bd Proper axes support for darwin haptic.
Edgar Simo <bobbens@gmail.com>
parents: 2610
diff changeset
287 FFDeviceObjectReference device;
2520
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
288 FFCAPABILITIES features;
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
289 unsigned int supported;
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
290 Uint32 val;
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
291
2627
265ced2079bd Proper axes support for darwin haptic.
Edgar Simo <bobbens@gmail.com>
parents: 2610
diff changeset
292 device = haptic->hwdata->device;
265ced2079bd Proper axes support for darwin haptic.
Edgar Simo <bobbens@gmail.com>
parents: 2610
diff changeset
293
2520
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
294 ret = FFDeviceGetForceFeedbackCapabilities(device, &features);
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
295 if (ret != FF_OK) {
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
296 SDL_SetError("Haptic: Unable to get device's supported features.");
2627
265ced2079bd Proper axes support for darwin haptic.
Edgar Simo <bobbens@gmail.com>
parents: 2610
diff changeset
297 return -1;
2520
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
298 }
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
299
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
300 supported = 0;
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
301
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
302 /* Get maximum effects. */
2627
265ced2079bd Proper axes support for darwin haptic.
Edgar Simo <bobbens@gmail.com>
parents: 2610
diff changeset
303 haptic->neffects = features.storageCapacity;
265ced2079bd Proper axes support for darwin haptic.
Edgar Simo <bobbens@gmail.com>
parents: 2610
diff changeset
304 haptic->nplaying = features.playbackCapacity;
2520
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
305
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
306 /* Test for effects. */
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
307 FF_TEST(FFCAP_ET_CONSTANTFORCE, SDL_HAPTIC_CONSTANT);
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
308 FF_TEST(FFCAP_ET_RAMPFORCE, SDL_HAPTIC_RAMP);
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
309 FF_TEST(FFCAP_ET_SQUARE, SDL_HAPTIC_SQUARE);
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
310 FF_TEST(FFCAP_ET_SINE, SDL_HAPTIC_SINE);
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
311 FF_TEST(FFCAP_ET_TRIANGLE, SDL_HAPTIC_TRIANGLE);
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
312 FF_TEST(FFCAP_ET_SAWTOOTHUP, SDL_HAPTIC_SAWTOOTHUP);
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
313 FF_TEST(FFCAP_ET_SAWTOOTHDOWN, SDL_HAPTIC_SAWTOOTHDOWN);
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
314 FF_TEST(FFCAP_ET_SPRING, SDL_HAPTIC_SPRING);
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
315 FF_TEST(FFCAP_ET_DAMPER, SDL_HAPTIC_DAMPER);
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
316 FF_TEST(FFCAP_ET_INERTIA, SDL_HAPTIC_INERTIA);
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
317 FF_TEST(FFCAP_ET_FRICTION, SDL_HAPTIC_FRICTION);
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
318 FF_TEST(FFCAP_ET_CUSTOMFORCE, SDL_HAPTIC_CUSTOM);
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
319
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
320 /* Check if supports gain. */
2554
2681a04c2d3d Warn about using button triggers.
Edgar Simo <bobbens@gmail.com>
parents: 2553
diff changeset
321 ret = FFDeviceGetForceFeedbackProperty( device, FFPROP_FFGAIN,
2681a04c2d3d Warn about using button triggers.
Edgar Simo <bobbens@gmail.com>
parents: 2553
diff changeset
322 &val, sizeof(val));
2520
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
323 if (ret == FF_OK) supported |= SDL_HAPTIC_GAIN;
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
324 else if (ret != FFERR_UNSUPPORTED) {
2541
f2649eaa552e More verbose errors.
Edgar Simo <bobbens@gmail.com>
parents: 2538
diff changeset
325 SDL_SetError("Haptic: Unable to get if device supports gain: %s.",
2542
4e055fa7acb9 Fixed some stupid mistakes.
Edgar Simo <bobbens@gmail.com>
parents: 2541
diff changeset
326 FFStrError(ret));
2627
265ced2079bd Proper axes support for darwin haptic.
Edgar Simo <bobbens@gmail.com>
parents: 2610
diff changeset
327 return -1;
2520
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
328 }
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
329
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
330 /* Checks if supports autocenter. */
2521
7aa91c21ce5f Many typo and silly mistake fixes.
Edgar Simo <bobbens@gmail.com>
parents: 2520
diff changeset
331 ret = FFDeviceGetForceFeedbackProperty(device, FFPROP_AUTOCENTER,
2522
0877146be013 Now compiles cleanly (has yet to work though).
Edgar Simo <bobbens@gmail.com>
parents: 2521
diff changeset
332 &val, sizeof(val));
2520
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
333 if (ret == FF_OK) supported |= SDL_HAPTIC_AUTOCENTER;
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
334 else if (ret != FFERR_UNSUPPORTED) {
2541
f2649eaa552e More verbose errors.
Edgar Simo <bobbens@gmail.com>
parents: 2538
diff changeset
335 SDL_SetError("Haptic: Unable to get if device supports autocenter: %s.",
f2649eaa552e More verbose errors.
Edgar Simo <bobbens@gmail.com>
parents: 2538
diff changeset
336 FFStrError(ret));
2627
265ced2079bd Proper axes support for darwin haptic.
Edgar Simo <bobbens@gmail.com>
parents: 2610
diff changeset
337 return -1;
2520
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
338 }
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
339
2527
924a32719b6f Handle axes for darwin now.
Edgar Simo <bobbens@gmail.com>
parents: 2522
diff changeset
340 /* Check for axes, we have an artificial limit on axes */
2627
265ced2079bd Proper axes support for darwin haptic.
Edgar Simo <bobbens@gmail.com>
parents: 2610
diff changeset
341 haptic->naxes = ((features.numFfAxes) > 3) ?
2527
924a32719b6f Handle axes for darwin now.
Edgar Simo <bobbens@gmail.com>
parents: 2522
diff changeset
342 3 : features.numFfAxes;
2627
265ced2079bd Proper axes support for darwin haptic.
Edgar Simo <bobbens@gmail.com>
parents: 2610
diff changeset
343 /* Actually store the axes we want to use */
265ced2079bd Proper axes support for darwin haptic.
Edgar Simo <bobbens@gmail.com>
parents: 2610
diff changeset
344 SDL_memcpy( haptic->hwdata->axes, features.ffAxes, haptic->naxes * sizeof(Uint8));
2527
924a32719b6f Handle axes for darwin now.
Edgar Simo <bobbens@gmail.com>
parents: 2522
diff changeset
345
2520
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
346 /* Always supported features. */
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
347 supported |= SDL_HAPTIC_STATUS;
2627
265ced2079bd Proper axes support for darwin haptic.
Edgar Simo <bobbens@gmail.com>
parents: 2610
diff changeset
348
265ced2079bd Proper axes support for darwin haptic.
Edgar Simo <bobbens@gmail.com>
parents: 2610
diff changeset
349 haptic->supported = supported;
265ced2079bd Proper axes support for darwin haptic.
Edgar Simo <bobbens@gmail.com>
parents: 2610
diff changeset
350 return 0;;
2520
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
351 }
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
352
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
353
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
354 /*
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
355 * Opens the haptic device from the file descriptor.
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
356 */
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
357 static int
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
358 SDL_SYS_HapticOpenFromService(SDL_Haptic * haptic, io_service_t service)
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
359 {
2541
f2649eaa552e More verbose errors.
Edgar Simo <bobbens@gmail.com>
parents: 2538
diff changeset
360 HRESULT ret;
2627
265ced2079bd Proper axes support for darwin haptic.
Edgar Simo <bobbens@gmail.com>
parents: 2610
diff changeset
361 int ret2;
2541
f2649eaa552e More verbose errors.
Edgar Simo <bobbens@gmail.com>
parents: 2538
diff changeset
362
2520
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
363 /* Allocate the hwdata */
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
364 haptic->hwdata = (struct haptic_hwdata *)
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
365 SDL_malloc(sizeof(*haptic->hwdata));
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
366 if (haptic->hwdata == NULL) {
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
367 SDL_OutOfMemory();
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
368 goto creat_err;
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
369 }
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
370 SDL_memset(haptic->hwdata, 0, sizeof(*haptic->hwdata));
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
371
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
372 /* Open the device */
2541
f2649eaa552e More verbose errors.
Edgar Simo <bobbens@gmail.com>
parents: 2538
diff changeset
373 ret = FFCreateDevice( service, &haptic->hwdata->device);
f2649eaa552e More verbose errors.
Edgar Simo <bobbens@gmail.com>
parents: 2538
diff changeset
374 if (ret != FF_OK) {
f2649eaa552e More verbose errors.
Edgar Simo <bobbens@gmail.com>
parents: 2538
diff changeset
375 SDL_SetError("Haptic: Unable to create device from service: %s.",
f2649eaa552e More verbose errors.
Edgar Simo <bobbens@gmail.com>
parents: 2538
diff changeset
376 FFStrError(ret));
2520
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
377 goto creat_err;
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
378 }
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
379
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
380 /* Get supported features. */
2627
265ced2079bd Proper axes support for darwin haptic.
Edgar Simo <bobbens@gmail.com>
parents: 2610
diff changeset
381 ret2 = GetSupportedFeatures( haptic );
265ced2079bd Proper axes support for darwin haptic.
Edgar Simo <bobbens@gmail.com>
parents: 2610
diff changeset
382 if (haptic->supported < 0) {
2520
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
383 goto open_err;
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
384 }
2550
b5b8a7f4a965 Reset device and enable actuators when initializing.
Edgar Simo <bobbens@gmail.com>
parents: 2547
diff changeset
385
b5b8a7f4a965 Reset device and enable actuators when initializing.
Edgar Simo <bobbens@gmail.com>
parents: 2547
diff changeset
386
b5b8a7f4a965 Reset device and enable actuators when initializing.
Edgar Simo <bobbens@gmail.com>
parents: 2547
diff changeset
387 /* Reset and then enable actuators. */
b5b8a7f4a965 Reset device and enable actuators when initializing.
Edgar Simo <bobbens@gmail.com>
parents: 2547
diff changeset
388 ret = FFDeviceSendForceFeedbackCommand( haptic->hwdata->device,
b5b8a7f4a965 Reset device and enable actuators when initializing.
Edgar Simo <bobbens@gmail.com>
parents: 2547
diff changeset
389 FFSFFC_RESET );
b5b8a7f4a965 Reset device and enable actuators when initializing.
Edgar Simo <bobbens@gmail.com>
parents: 2547
diff changeset
390 if (ret != FF_OK) {
b5b8a7f4a965 Reset device and enable actuators when initializing.
Edgar Simo <bobbens@gmail.com>
parents: 2547
diff changeset
391 SDL_SetError("Haptic: Unable to reset device: %s.", FFStrError(ret));
b5b8a7f4a965 Reset device and enable actuators when initializing.
Edgar Simo <bobbens@gmail.com>
parents: 2547
diff changeset
392 goto open_err;
b5b8a7f4a965 Reset device and enable actuators when initializing.
Edgar Simo <bobbens@gmail.com>
parents: 2547
diff changeset
393 }
b5b8a7f4a965 Reset device and enable actuators when initializing.
Edgar Simo <bobbens@gmail.com>
parents: 2547
diff changeset
394 ret = FFDeviceSendForceFeedbackCommand( haptic->hwdata->device,
b5b8a7f4a965 Reset device and enable actuators when initializing.
Edgar Simo <bobbens@gmail.com>
parents: 2547
diff changeset
395 FFSFFC_SETACTUATORSON );
b5b8a7f4a965 Reset device and enable actuators when initializing.
Edgar Simo <bobbens@gmail.com>
parents: 2547
diff changeset
396 if (ret != FF_OK) {
b5b8a7f4a965 Reset device and enable actuators when initializing.
Edgar Simo <bobbens@gmail.com>
parents: 2547
diff changeset
397 SDL_SetError("Haptic: Unable to enable actuators: %s.", FFStrError(ret));
b5b8a7f4a965 Reset device and enable actuators when initializing.
Edgar Simo <bobbens@gmail.com>
parents: 2547
diff changeset
398 goto open_err;
b5b8a7f4a965 Reset device and enable actuators when initializing.
Edgar Simo <bobbens@gmail.com>
parents: 2547
diff changeset
399 }
b5b8a7f4a965 Reset device and enable actuators when initializing.
Edgar Simo <bobbens@gmail.com>
parents: 2547
diff changeset
400
b5b8a7f4a965 Reset device and enable actuators when initializing.
Edgar Simo <bobbens@gmail.com>
parents: 2547
diff changeset
401
b5b8a7f4a965 Reset device and enable actuators when initializing.
Edgar Simo <bobbens@gmail.com>
parents: 2547
diff changeset
402 /* Allocate effects memory. */
2520
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
403 haptic->effects = (struct haptic_effect *)
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
404 SDL_malloc(sizeof(struct haptic_effect) * haptic->neffects);
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
405 if (haptic->effects == NULL) {
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
406 SDL_OutOfMemory();
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
407 goto open_err;
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
408 }
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
409 /* Clear the memory */
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
410 SDL_memset(haptic->effects, 0,
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
411 sizeof(struct haptic_effect) * haptic->neffects);
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
412
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
413 return 0;
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
414
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
415 /* Error handling */
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
416 open_err:
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
417 FFReleaseDevice(haptic->hwdata->device);
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
418 creat_err:
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
419 if (haptic->hwdata != NULL) {
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
420 free(haptic->hwdata);
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
421 haptic->hwdata = NULL;
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
422 }
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
423 return -1;
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
424
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
425 }
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
426
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
427
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
428 /*
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
429 * Opens a haptic device for usage.
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
430 */
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
431 int
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
432 SDL_SYS_HapticOpen(SDL_Haptic * haptic)
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
433 {
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
434 return SDL_SYS_HapticOpenFromService(haptic,
2522
0877146be013 Now compiles cleanly (has yet to work though).
Edgar Simo <bobbens@gmail.com>
parents: 2521
diff changeset
435 SDL_hapticlist[haptic->index].dev);
2520
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
436 }
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
437
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
438
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
439 /*
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
440 * Opens a haptic device from first mouse it finds for usage.
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
441 */
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
442 int
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
443 SDL_SYS_HapticMouse(void)
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
444 {
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
445 return -1;
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
446 }
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
447
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
448
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
449 /*
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
450 * Checks to see if a joystick has haptic features.
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
451 */
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
452 int
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
453 SDL_SYS_JoystickIsHaptic(SDL_Joystick * joystick)
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
454 {
2637
2f826c229d77 First draft of darwin haptic<->joystick stuff.
Edgar Simo <bobbens@gmail.com>
parents: 2633
diff changeset
455 if (joystick->hwdata->ffservice != 0)
2f826c229d77 First draft of darwin haptic<->joystick stuff.
Edgar Simo <bobbens@gmail.com>
parents: 2633
diff changeset
456 return SDL_TRUE;
2520
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
457 return SDL_FALSE;
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
458 }
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
459
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
460
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
461 /*
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
462 * Checks to see if the haptic device and joystick and in reality the same.
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
463 */
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
464 int
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
465 SDL_SYS_JoystickSameHaptic(SDL_Haptic * haptic, SDL_Joystick * joystick)
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
466 {
2639
668fee3b268a Casting for warnings.
Edgar Simo <bobbens@gmail.com>
parents: 2637
diff changeset
467 if (IOObjectIsEqualTo((io_object_t) haptic->hwdata->device,
668fee3b268a Casting for warnings.
Edgar Simo <bobbens@gmail.com>
parents: 2637
diff changeset
468 joystick->hwdata->ffservice))
2637
2f826c229d77 First draft of darwin haptic<->joystick stuff.
Edgar Simo <bobbens@gmail.com>
parents: 2633
diff changeset
469 return 1;
2520
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
470 return 0;
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
471 }
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
472
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
473
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
474 /*
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
475 * Opens a SDL_Haptic from a SDL_Joystick.
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
476 */
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
477 int
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
478 SDL_SYS_HapticOpenFromJoystick(SDL_Haptic * haptic, SDL_Joystick * joystick)
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
479 {
2637
2f826c229d77 First draft of darwin haptic<->joystick stuff.
Edgar Simo <bobbens@gmail.com>
parents: 2633
diff changeset
480 return SDL_SYS_HapticOpenFromService(haptic,
2f826c229d77 First draft of darwin haptic<->joystick stuff.
Edgar Simo <bobbens@gmail.com>
parents: 2633
diff changeset
481 joystick->hwdata->ffservice);
2520
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
482 }
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
483
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
484
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
485 /*
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
486 * Closes the haptic device.
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
487 */
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
488 void
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
489 SDL_SYS_HapticClose(SDL_Haptic * haptic)
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
490 {
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
491 if (haptic->hwdata) {
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
492
2561
3696b9ce8a37 Correctness patch, it's up to the SDL_haptic.c to clean up effects, not SDL_syshaptic.c.
Edgar Simo <bobbens@gmail.com>
parents: 2559
diff changeset
493 /* Free Effects. */
2530
22ce87690b41 More comments.
Edgar Simo <bobbens@gmail.com>
parents: 2529
diff changeset
494 SDL_free(haptic->effects);
2561
3696b9ce8a37 Correctness patch, it's up to the SDL_haptic.c to clean up effects, not SDL_syshaptic.c.
Edgar Simo <bobbens@gmail.com>
parents: 2559
diff changeset
495 haptic->effects = NULL;
2530
22ce87690b41 More comments.
Edgar Simo <bobbens@gmail.com>
parents: 2529
diff changeset
496 haptic->neffects = 0;
22ce87690b41 More comments.
Edgar Simo <bobbens@gmail.com>
parents: 2529
diff changeset
497
2520
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
498 /* Clean up */
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
499 FFReleaseDevice(haptic->hwdata->device);
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
500
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
501 /* Free */
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
502 SDL_free(haptic->hwdata);
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
503 haptic->hwdata = NULL;
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
504 }
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
505 }
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
506
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
507
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
508 /*
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
509 * Clean up after system specific haptic stuff
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
510 */
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
511 void
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
512 SDL_SYS_HapticQuit(void)
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
513 {
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
514 int i;
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
515
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
516 for (i=0; i < SDL_numhaptics; i++) {
2530
22ce87690b41 More comments.
Edgar Simo <bobbens@gmail.com>
parents: 2529
diff changeset
517 /* Opened and not closed haptics are leaked, this is on purpose.
22ce87690b41 More comments.
Edgar Simo <bobbens@gmail.com>
parents: 2529
diff changeset
518 * Close your haptic devices after usage. */
22ce87690b41 More comments.
Edgar Simo <bobbens@gmail.com>
parents: 2529
diff changeset
519
22ce87690b41 More comments.
Edgar Simo <bobbens@gmail.com>
parents: 2529
diff changeset
520 /* Free the io_service_t */
2520
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
521 IOObjectRelease(SDL_hapticlist[i].dev);
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
522 }
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
523 }
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
524
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
525
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
526 /*
2554
2681a04c2d3d Warn about using button triggers.
Edgar Simo <bobbens@gmail.com>
parents: 2553
diff changeset
527 * Converts an SDL trigger button to an FFEFFECT trigger button.
2681a04c2d3d Warn about using button triggers.
Edgar Simo <bobbens@gmail.com>
parents: 2553
diff changeset
528 */
2681a04c2d3d Warn about using button triggers.
Edgar Simo <bobbens@gmail.com>
parents: 2553
diff changeset
529 static DWORD
2681a04c2d3d Warn about using button triggers.
Edgar Simo <bobbens@gmail.com>
parents: 2553
diff changeset
530 FFGetTriggerButton( Uint16 button )
2681a04c2d3d Warn about using button triggers.
Edgar Simo <bobbens@gmail.com>
parents: 2553
diff changeset
531 {
2681a04c2d3d Warn about using button triggers.
Edgar Simo <bobbens@gmail.com>
parents: 2553
diff changeset
532 DWORD dwTriggerButton;
2681a04c2d3d Warn about using button triggers.
Edgar Simo <bobbens@gmail.com>
parents: 2553
diff changeset
533
2681a04c2d3d Warn about using button triggers.
Edgar Simo <bobbens@gmail.com>
parents: 2553
diff changeset
534 dwTriggerButton = FFEB_NOTRIGGER;
2681a04c2d3d Warn about using button triggers.
Edgar Simo <bobbens@gmail.com>
parents: 2553
diff changeset
535
2555
f5bcc926bac4 Not being able to compile locally gets on my nerves.
Edgar Simo <bobbens@gmail.com>
parents: 2554
diff changeset
536 if (button != 0) {
2556
fe346eddd3fb Updated button trigger stuff.
Edgar Simo <bobbens@gmail.com>
parents: 2555
diff changeset
537 dwTriggerButton = FFJOFS_BUTTON(button - 1);
2555
f5bcc926bac4 Not being able to compile locally gets on my nerves.
Edgar Simo <bobbens@gmail.com>
parents: 2554
diff changeset
538 }
2554
2681a04c2d3d Warn about using button triggers.
Edgar Simo <bobbens@gmail.com>
parents: 2553
diff changeset
539
2681a04c2d3d Warn about using button triggers.
Edgar Simo <bobbens@gmail.com>
parents: 2553
diff changeset
540 return dwTriggerButton;
2681a04c2d3d Warn about using button triggers.
Edgar Simo <bobbens@gmail.com>
parents: 2553
diff changeset
541 }
2681a04c2d3d Warn about using button triggers.
Edgar Simo <bobbens@gmail.com>
parents: 2553
diff changeset
542
2681a04c2d3d Warn about using button triggers.
Edgar Simo <bobbens@gmail.com>
parents: 2553
diff changeset
543
2681a04c2d3d Warn about using button triggers.
Edgar Simo <bobbens@gmail.com>
parents: 2553
diff changeset
544 /*
2520
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
545 * Sets the direction.
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
546 */
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
547 static int
2529
e1d5d16e88a8 Can't believe I missed this typo.
Edgar Simo <bobbens@gmail.com>
parents: 2528
diff changeset
548 SDL_SYS_SetDirection( FFEFFECT * effect, SDL_HapticDirection *dir, int naxes )
2520
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
549 {
2521
7aa91c21ce5f Many typo and silly mistake fixes.
Edgar Simo <bobbens@gmail.com>
parents: 2520
diff changeset
550 LONG *rglDir;
2527
924a32719b6f Handle axes for darwin now.
Edgar Simo <bobbens@gmail.com>
parents: 2522
diff changeset
551
924a32719b6f Handle axes for darwin now.
Edgar Simo <bobbens@gmail.com>
parents: 2522
diff changeset
552 /* Handle no axes a part. */
2528
50414589501e Fixed some typos.
Edgar Simo <bobbens@gmail.com>
parents: 2527
diff changeset
553 if (naxes == 0) {
2559
42b682e85546 Allow effects with no axes.
Edgar Simo <bobbens@gmail.com>
parents: 2557
diff changeset
554 effect->dwFlags |= FFEFF_SPHERICAL; /* Set as default. */
2527
924a32719b6f Handle axes for darwin now.
Edgar Simo <bobbens@gmail.com>
parents: 2522
diff changeset
555 effect->rglDirection = NULL;
924a32719b6f Handle axes for darwin now.
Edgar Simo <bobbens@gmail.com>
parents: 2522
diff changeset
556 return 0;
924a32719b6f Handle axes for darwin now.
Edgar Simo <bobbens@gmail.com>
parents: 2522
diff changeset
557 }
924a32719b6f Handle axes for darwin now.
Edgar Simo <bobbens@gmail.com>
parents: 2522
diff changeset
558
924a32719b6f Handle axes for darwin now.
Edgar Simo <bobbens@gmail.com>
parents: 2522
diff changeset
559 /* Has axes. */
2529
e1d5d16e88a8 Can't believe I missed this typo.
Edgar Simo <bobbens@gmail.com>
parents: 2528
diff changeset
560 rglDir = SDL_malloc( sizeof(LONG) * naxes );
2527
924a32719b6f Handle axes for darwin now.
Edgar Simo <bobbens@gmail.com>
parents: 2522
diff changeset
561 if (rglDir == NULL) {
2520
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
562 SDL_OutOfMemory();
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
563 return -1;
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
564 }
2529
e1d5d16e88a8 Can't believe I missed this typo.
Edgar Simo <bobbens@gmail.com>
parents: 2528
diff changeset
565 SDL_memset( rglDir, 0, sizeof(LONG) * naxes );
2521
7aa91c21ce5f Many typo and silly mistake fixes.
Edgar Simo <bobbens@gmail.com>
parents: 2520
diff changeset
566 effect->rglDirection = rglDir;
2520
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
567
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
568 switch (dir->type) {
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
569 case SDL_HAPTIC_POLAR:
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
570 effect->dwFlags |= FFEFF_POLAR;
2521
7aa91c21ce5f Many typo and silly mistake fixes.
Edgar Simo <bobbens@gmail.com>
parents: 2520
diff changeset
571 rglDir[0] = dir->dir[0];
2520
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
572 return 0;
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
573 case SDL_HAPTIC_CARTESIAN:
2522
0877146be013 Now compiles cleanly (has yet to work though).
Edgar Simo <bobbens@gmail.com>
parents: 2521
diff changeset
574 effect->dwFlags |= FFEFF_CARTESIAN;
2521
7aa91c21ce5f Many typo and silly mistake fixes.
Edgar Simo <bobbens@gmail.com>
parents: 2520
diff changeset
575 rglDir[0] = dir->dir[0];
2604
4eee4d565368 Better handling of direction axes.
Edgar Simo <bobbens@gmail.com>
parents: 2603
diff changeset
576 if (naxes > 1)
4eee4d565368 Better handling of direction axes.
Edgar Simo <bobbens@gmail.com>
parents: 2603
diff changeset
577 rglDir[1] = dir->dir[1];
4eee4d565368 Better handling of direction axes.
Edgar Simo <bobbens@gmail.com>
parents: 2603
diff changeset
578 if (naxes > 2)
4eee4d565368 Better handling of direction axes.
Edgar Simo <bobbens@gmail.com>
parents: 2603
diff changeset
579 rglDir[2] = dir->dir[2];
2520
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
580 return 0;
2521
7aa91c21ce5f Many typo and silly mistake fixes.
Edgar Simo <bobbens@gmail.com>
parents: 2520
diff changeset
581 case SDL_HAPTIC_SPHERICAL:
2522
0877146be013 Now compiles cleanly (has yet to work though).
Edgar Simo <bobbens@gmail.com>
parents: 2521
diff changeset
582 effect->dwFlags |= FFEFF_SPHERICAL;
2521
7aa91c21ce5f Many typo and silly mistake fixes.
Edgar Simo <bobbens@gmail.com>
parents: 2520
diff changeset
583 rglDir[0] = dir->dir[0];
2604
4eee4d565368 Better handling of direction axes.
Edgar Simo <bobbens@gmail.com>
parents: 2603
diff changeset
584 if (naxes > 1)
4eee4d565368 Better handling of direction axes.
Edgar Simo <bobbens@gmail.com>
parents: 2603
diff changeset
585 rglDir[1] = dir->dir[1];
4eee4d565368 Better handling of direction axes.
Edgar Simo <bobbens@gmail.com>
parents: 2603
diff changeset
586 if (naxes > 2)
4eee4d565368 Better handling of direction axes.
Edgar Simo <bobbens@gmail.com>
parents: 2603
diff changeset
587 rglDir[2] = dir->dir[2];
2520
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
588 return 0;
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
589
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
590 default:
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
591 SDL_SetError("Haptic: Unknown direction type.");
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
592 return -1;
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
593 }
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
594 }
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
595
2628
bfbda6c656e5 Should remove warnings on compilation.
Edgar Simo <bobbens@gmail.com>
parents: 2627
diff changeset
596
bfbda6c656e5 Should remove warnings on compilation.
Edgar Simo <bobbens@gmail.com>
parents: 2627
diff changeset
597 /* Clamps and converts. */
bfbda6c656e5 Should remove warnings on compilation.
Edgar Simo <bobbens@gmail.com>
parents: 2627
diff changeset
598 #define CCONVERT(x) (((x) > 0x7FFF) ? 10000 : ((x)*10000) / 0x7FFF)
bfbda6c656e5 Should remove warnings on compilation.
Edgar Simo <bobbens@gmail.com>
parents: 2627
diff changeset
599 /* Just converts. */
bfbda6c656e5 Should remove warnings on compilation.
Edgar Simo <bobbens@gmail.com>
parents: 2627
diff changeset
600 #define CONVERT(x) (((x)*10000) / 0x7FFF)
2520
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
601 /*
2527
924a32719b6f Handle axes for darwin now.
Edgar Simo <bobbens@gmail.com>
parents: 2522
diff changeset
602 * Creates the FFEFFECT from a SDL_HapticEffect.
2520
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
603 */
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
604 static int
2527
924a32719b6f Handle axes for darwin now.
Edgar Simo <bobbens@gmail.com>
parents: 2522
diff changeset
605 SDL_SYS_ToFFEFFECT( SDL_Haptic * haptic, FFEFFECT * dest, SDL_HapticEffect * src )
2520
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
606 {
2530
22ce87690b41 More comments.
Edgar Simo <bobbens@gmail.com>
parents: 2529
diff changeset
607 int i;
2520
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
608 FFCONSTANTFORCE *constant;
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
609 FFPERIODIC *periodic;
2530
22ce87690b41 More comments.
Edgar Simo <bobbens@gmail.com>
parents: 2529
diff changeset
610 FFCONDITION *condition; /* Actually an array of conditions - one per axis. */
2520
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
611 FFRAMPFORCE *ramp;
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
612 FFCUSTOMFORCE *custom;
2522
0877146be013 Now compiles cleanly (has yet to work though).
Edgar Simo <bobbens@gmail.com>
parents: 2521
diff changeset
613 FFENVELOPE *envelope;
2520
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
614 SDL_HapticConstant *hap_constant;
2521
7aa91c21ce5f Many typo and silly mistake fixes.
Edgar Simo <bobbens@gmail.com>
parents: 2520
diff changeset
615 SDL_HapticPeriodic *hap_periodic;
2520
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
616 SDL_HapticCondition *hap_condition;
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
617 SDL_HapticRamp *hap_ramp;
2535
f0ed8471497d Added custom effect with support on darwin.
Edgar Simo <bobbens@gmail.com>
parents: 2534
diff changeset
618 SDL_HapticCustom *hap_custom;
2527
924a32719b6f Handle axes for darwin now.
Edgar Simo <bobbens@gmail.com>
parents: 2522
diff changeset
619 DWORD *axes;
2520
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
620
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
621 /* Set global stuff. */
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
622 SDL_memset(dest, 0, sizeof(FFEFFECT));
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
623 dest->dwSize = sizeof(FFEFFECT); /* Set the structure size. */
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
624 dest->dwSamplePeriod = 0; /* Not used by us. */
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
625 dest->dwGain = 10000; /* Gain is set globally, not locally. */
2610
71a835ee438a Added FFEFF_OBJECTOFFSETS to darwin port.
Edgar Simo <bobbens@gmail.com>
parents: 2609
diff changeset
626 dest->dwFlags = FFEFF_OBJECTOFFSETS; /* Seems obligatory. */
2522
0877146be013 Now compiles cleanly (has yet to work though).
Edgar Simo <bobbens@gmail.com>
parents: 2521
diff changeset
627
0877146be013 Now compiles cleanly (has yet to work though).
Edgar Simo <bobbens@gmail.com>
parents: 2521
diff changeset
628 /* Envelope. */
0877146be013 Now compiles cleanly (has yet to work though).
Edgar Simo <bobbens@gmail.com>
parents: 2521
diff changeset
629 envelope = SDL_malloc( sizeof(FFENVELOPE) );
0877146be013 Now compiles cleanly (has yet to work though).
Edgar Simo <bobbens@gmail.com>
parents: 2521
diff changeset
630 if (envelope == NULL) {
0877146be013 Now compiles cleanly (has yet to work though).
Edgar Simo <bobbens@gmail.com>
parents: 2521
diff changeset
631 SDL_OutOfMemory();
0877146be013 Now compiles cleanly (has yet to work though).
Edgar Simo <bobbens@gmail.com>
parents: 2521
diff changeset
632 return -1;
0877146be013 Now compiles cleanly (has yet to work though).
Edgar Simo <bobbens@gmail.com>
parents: 2521
diff changeset
633 }
0877146be013 Now compiles cleanly (has yet to work though).
Edgar Simo <bobbens@gmail.com>
parents: 2521
diff changeset
634 SDL_memset(envelope, 0, sizeof(FFENVELOPE));
0877146be013 Now compiles cleanly (has yet to work though).
Edgar Simo <bobbens@gmail.com>
parents: 2521
diff changeset
635 dest->lpEnvelope = envelope;
0877146be013 Now compiles cleanly (has yet to work though).
Edgar Simo <bobbens@gmail.com>
parents: 2521
diff changeset
636 envelope->dwSize = sizeof(FFENVELOPE); /* Always should be this. */
2520
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
637
2527
924a32719b6f Handle axes for darwin now.
Edgar Simo <bobbens@gmail.com>
parents: 2522
diff changeset
638 /* Axes. */
924a32719b6f Handle axes for darwin now.
Edgar Simo <bobbens@gmail.com>
parents: 2522
diff changeset
639 dest->cAxes = haptic->naxes;
924a32719b6f Handle axes for darwin now.
Edgar Simo <bobbens@gmail.com>
parents: 2522
diff changeset
640 if (dest->cAxes > 0) {
924a32719b6f Handle axes for darwin now.
Edgar Simo <bobbens@gmail.com>
parents: 2522
diff changeset
641 axes = SDL_malloc(sizeof(DWORD) * dest->cAxes);
924a32719b6f Handle axes for darwin now.
Edgar Simo <bobbens@gmail.com>
parents: 2522
diff changeset
642 if (axes == NULL) {
924a32719b6f Handle axes for darwin now.
Edgar Simo <bobbens@gmail.com>
parents: 2522
diff changeset
643 SDL_OutOfMemory();
924a32719b6f Handle axes for darwin now.
Edgar Simo <bobbens@gmail.com>
parents: 2522
diff changeset
644 return -1;
924a32719b6f Handle axes for darwin now.
Edgar Simo <bobbens@gmail.com>
parents: 2522
diff changeset
645 }
2627
265ced2079bd Proper axes support for darwin haptic.
Edgar Simo <bobbens@gmail.com>
parents: 2610
diff changeset
646 axes[0] = haptic->hwdata->axes[0]; /* Always at least one axis. */
2527
924a32719b6f Handle axes for darwin now.
Edgar Simo <bobbens@gmail.com>
parents: 2522
diff changeset
647 if (dest->cAxes > 1) {
2627
265ced2079bd Proper axes support for darwin haptic.
Edgar Simo <bobbens@gmail.com>
parents: 2610
diff changeset
648 axes[1] = haptic->hwdata->axes[1];
2527
924a32719b6f Handle axes for darwin now.
Edgar Simo <bobbens@gmail.com>
parents: 2522
diff changeset
649 }
924a32719b6f Handle axes for darwin now.
Edgar Simo <bobbens@gmail.com>
parents: 2522
diff changeset
650 if (dest->cAxes > 2) {
2627
265ced2079bd Proper axes support for darwin haptic.
Edgar Simo <bobbens@gmail.com>
parents: 2610
diff changeset
651 axes[2] = haptic->hwdata->axes[2];
2527
924a32719b6f Handle axes for darwin now.
Edgar Simo <bobbens@gmail.com>
parents: 2522
diff changeset
652 }
924a32719b6f Handle axes for darwin now.
Edgar Simo <bobbens@gmail.com>
parents: 2522
diff changeset
653 dest->rgdwAxes = axes;
924a32719b6f Handle axes for darwin now.
Edgar Simo <bobbens@gmail.com>
parents: 2522
diff changeset
654 }
924a32719b6f Handle axes for darwin now.
Edgar Simo <bobbens@gmail.com>
parents: 2522
diff changeset
655
924a32719b6f Handle axes for darwin now.
Edgar Simo <bobbens@gmail.com>
parents: 2522
diff changeset
656
2530
22ce87690b41 More comments.
Edgar Simo <bobbens@gmail.com>
parents: 2529
diff changeset
657 /* The big type handling switch, even bigger then linux's version. */
2520
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
658 switch (src->type) {
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
659 case SDL_HAPTIC_CONSTANT:
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
660 hap_constant = &src->constant;
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
661 constant = SDL_malloc( sizeof(FFCONSTANTFORCE) );
2527
924a32719b6f Handle axes for darwin now.
Edgar Simo <bobbens@gmail.com>
parents: 2522
diff changeset
662 if (constant == NULL) {
924a32719b6f Handle axes for darwin now.
Edgar Simo <bobbens@gmail.com>
parents: 2522
diff changeset
663 SDL_OutOfMemory();
924a32719b6f Handle axes for darwin now.
Edgar Simo <bobbens@gmail.com>
parents: 2522
diff changeset
664 return -1;
924a32719b6f Handle axes for darwin now.
Edgar Simo <bobbens@gmail.com>
parents: 2522
diff changeset
665 }
2535
f0ed8471497d Added custom effect with support on darwin.
Edgar Simo <bobbens@gmail.com>
parents: 2534
diff changeset
666 SDL_memset(constant, 0, sizeof(FFCONSTANTFORCE));
2520
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
667
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
668 /* Specifics */
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
669 constant->lMagnitude = CONVERT(hap_constant->level);
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
670 dest->cbTypeSpecificParams = sizeof(FFCONSTANTFORCE);
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
671 dest->lpvTypeSpecificParams = constant;
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
672
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
673 /* Generics */
2521
7aa91c21ce5f Many typo and silly mistake fixes.
Edgar Simo <bobbens@gmail.com>
parents: 2520
diff changeset
674 dest->dwDuration = hap_constant->length * 1000; /* In microseconds. */
2554
2681a04c2d3d Warn about using button triggers.
Edgar Simo <bobbens@gmail.com>
parents: 2553
diff changeset
675 dest->dwTriggerButton = FFGetTriggerButton(hap_constant->button);
2520
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
676 dest->dwTriggerRepeatInterval = hap_constant->interval;
2521
7aa91c21ce5f Many typo and silly mistake fixes.
Edgar Simo <bobbens@gmail.com>
parents: 2520
diff changeset
677 dest->dwStartDelay = hap_constant->delay * 1000; /* In microseconds. */
2520
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
678
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
679 /* Direction. */
2522
0877146be013 Now compiles cleanly (has yet to work though).
Edgar Simo <bobbens@gmail.com>
parents: 2521
diff changeset
680 if (SDL_SYS_SetDirection(dest, &hap_constant->direction, dest->cAxes) < 0) {
2520
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
681 return -1;
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
682 }
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
683
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
684 /* Envelope */
2565
698c776c642f Fixed broken envelopes.
Edgar Simo <bobbens@gmail.com>
parents: 2564
diff changeset
685 if ((hap_constant->attack_length==0) && (hap_constant->fade_length==0)) {
2563
be2ea885d70b More verbose about envelopes.
Edgar Simo <bobbens@gmail.com>
parents: 2562
diff changeset
686 SDL_free(envelope);
be2ea885d70b More verbose about envelopes.
Edgar Simo <bobbens@gmail.com>
parents: 2562
diff changeset
687 dest->lpEnvelope = NULL;
2557
30778d9d8bff Made envelopes behave correctly with length of 0.
Edgar Simo <bobbens@gmail.com>
parents: 2556
diff changeset
688 }
30778d9d8bff Made envelopes behave correctly with length of 0.
Edgar Simo <bobbens@gmail.com>
parents: 2556
diff changeset
689 else {
2628
bfbda6c656e5 Should remove warnings on compilation.
Edgar Simo <bobbens@gmail.com>
parents: 2627
diff changeset
690 envelope->dwAttackLevel = CCONVERT(hap_constant->attack_level);
2557
30778d9d8bff Made envelopes behave correctly with length of 0.
Edgar Simo <bobbens@gmail.com>
parents: 2556
diff changeset
691 envelope->dwAttackTime = hap_constant->attack_length * 1000;
2628
bfbda6c656e5 Should remove warnings on compilation.
Edgar Simo <bobbens@gmail.com>
parents: 2627
diff changeset
692 envelope->dwFadeLevel = CCONVERT(hap_constant->fade_level);
2557
30778d9d8bff Made envelopes behave correctly with length of 0.
Edgar Simo <bobbens@gmail.com>
parents: 2556
diff changeset
693 envelope->dwFadeTime = hap_constant->fade_length * 1000;
30778d9d8bff Made envelopes behave correctly with length of 0.
Edgar Simo <bobbens@gmail.com>
parents: 2556
diff changeset
694 }
2520
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
695
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
696 break;
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
697
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
698 case SDL_HAPTIC_SINE:
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
699 case SDL_HAPTIC_SQUARE:
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
700 case SDL_HAPTIC_TRIANGLE:
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
701 case SDL_HAPTIC_SAWTOOTHUP:
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
702 case SDL_HAPTIC_SAWTOOTHDOWN:
2522
0877146be013 Now compiles cleanly (has yet to work though).
Edgar Simo <bobbens@gmail.com>
parents: 2521
diff changeset
703 hap_periodic = &src->periodic;
2527
924a32719b6f Handle axes for darwin now.
Edgar Simo <bobbens@gmail.com>
parents: 2522
diff changeset
704 periodic = SDL_malloc(sizeof(FFPERIODIC));
924a32719b6f Handle axes for darwin now.
Edgar Simo <bobbens@gmail.com>
parents: 2522
diff changeset
705 if (periodic == NULL) {
924a32719b6f Handle axes for darwin now.
Edgar Simo <bobbens@gmail.com>
parents: 2522
diff changeset
706 SDL_OutOfMemory();
924a32719b6f Handle axes for darwin now.
Edgar Simo <bobbens@gmail.com>
parents: 2522
diff changeset
707 return -1;
924a32719b6f Handle axes for darwin now.
Edgar Simo <bobbens@gmail.com>
parents: 2522
diff changeset
708 }
2535
f0ed8471497d Added custom effect with support on darwin.
Edgar Simo <bobbens@gmail.com>
parents: 2534
diff changeset
709 SDL_memset(periodic, 0, sizeof(FFPERIODIC));
2527
924a32719b6f Handle axes for darwin now.
Edgar Simo <bobbens@gmail.com>
parents: 2522
diff changeset
710
924a32719b6f Handle axes for darwin now.
Edgar Simo <bobbens@gmail.com>
parents: 2522
diff changeset
711 /* Specifics */
924a32719b6f Handle axes for darwin now.
Edgar Simo <bobbens@gmail.com>
parents: 2522
diff changeset
712 periodic->dwMagnitude = CONVERT(hap_periodic->magnitude);
924a32719b6f Handle axes for darwin now.
Edgar Simo <bobbens@gmail.com>
parents: 2522
diff changeset
713 periodic->lOffset = CONVERT(hap_periodic->offset);
924a32719b6f Handle axes for darwin now.
Edgar Simo <bobbens@gmail.com>
parents: 2522
diff changeset
714 periodic->dwPhase = hap_periodic->phase;
924a32719b6f Handle axes for darwin now.
Edgar Simo <bobbens@gmail.com>
parents: 2522
diff changeset
715 periodic->dwPeriod = hap_periodic->period * 1000;
924a32719b6f Handle axes for darwin now.
Edgar Simo <bobbens@gmail.com>
parents: 2522
diff changeset
716 dest->cbTypeSpecificParams = sizeof(FFPERIODIC);
924a32719b6f Handle axes for darwin now.
Edgar Simo <bobbens@gmail.com>
parents: 2522
diff changeset
717 dest->lpvTypeSpecificParams = periodic;
924a32719b6f Handle axes for darwin now.
Edgar Simo <bobbens@gmail.com>
parents: 2522
diff changeset
718
924a32719b6f Handle axes for darwin now.
Edgar Simo <bobbens@gmail.com>
parents: 2522
diff changeset
719 /* Generics */
924a32719b6f Handle axes for darwin now.
Edgar Simo <bobbens@gmail.com>
parents: 2522
diff changeset
720 dest->dwDuration = hap_periodic->length * 1000; /* In microseconds. */
2554
2681a04c2d3d Warn about using button triggers.
Edgar Simo <bobbens@gmail.com>
parents: 2553
diff changeset
721 dest->dwTriggerButton = FFGetTriggerButton(hap_periodic->button);
2527
924a32719b6f Handle axes for darwin now.
Edgar Simo <bobbens@gmail.com>
parents: 2522
diff changeset
722 dest->dwTriggerRepeatInterval = hap_periodic->interval;
924a32719b6f Handle axes for darwin now.
Edgar Simo <bobbens@gmail.com>
parents: 2522
diff changeset
723 dest->dwStartDelay = hap_periodic->delay * 1000; /* In microseconds. */
924a32719b6f Handle axes for darwin now.
Edgar Simo <bobbens@gmail.com>
parents: 2522
diff changeset
724
924a32719b6f Handle axes for darwin now.
Edgar Simo <bobbens@gmail.com>
parents: 2522
diff changeset
725 /* Direction. */
924a32719b6f Handle axes for darwin now.
Edgar Simo <bobbens@gmail.com>
parents: 2522
diff changeset
726 if (SDL_SYS_SetDirection(dest, &hap_periodic->direction, dest->cAxes) < 0) {
924a32719b6f Handle axes for darwin now.
Edgar Simo <bobbens@gmail.com>
parents: 2522
diff changeset
727 return -1;
924a32719b6f Handle axes for darwin now.
Edgar Simo <bobbens@gmail.com>
parents: 2522
diff changeset
728 }
924a32719b6f Handle axes for darwin now.
Edgar Simo <bobbens@gmail.com>
parents: 2522
diff changeset
729
924a32719b6f Handle axes for darwin now.
Edgar Simo <bobbens@gmail.com>
parents: 2522
diff changeset
730 /* Envelope */
2565
698c776c642f Fixed broken envelopes.
Edgar Simo <bobbens@gmail.com>
parents: 2564
diff changeset
731 if ((hap_periodic->attack_length==0) && (hap_periodic->fade_length==0)) {
2563
be2ea885d70b More verbose about envelopes.
Edgar Simo <bobbens@gmail.com>
parents: 2562
diff changeset
732 SDL_free(envelope);
be2ea885d70b More verbose about envelopes.
Edgar Simo <bobbens@gmail.com>
parents: 2562
diff changeset
733 dest->lpEnvelope = NULL;
2557
30778d9d8bff Made envelopes behave correctly with length of 0.
Edgar Simo <bobbens@gmail.com>
parents: 2556
diff changeset
734 }
30778d9d8bff Made envelopes behave correctly with length of 0.
Edgar Simo <bobbens@gmail.com>
parents: 2556
diff changeset
735 else {
2628
bfbda6c656e5 Should remove warnings on compilation.
Edgar Simo <bobbens@gmail.com>
parents: 2627
diff changeset
736 envelope->dwAttackLevel = CCONVERT(hap_periodic->attack_level);
2557
30778d9d8bff Made envelopes behave correctly with length of 0.
Edgar Simo <bobbens@gmail.com>
parents: 2556
diff changeset
737 envelope->dwAttackTime = hap_periodic->attack_length * 1000;
2628
bfbda6c656e5 Should remove warnings on compilation.
Edgar Simo <bobbens@gmail.com>
parents: 2627
diff changeset
738 envelope->dwFadeLevel = CCONVERT(hap_periodic->fade_level);
2557
30778d9d8bff Made envelopes behave correctly with length of 0.
Edgar Simo <bobbens@gmail.com>
parents: 2556
diff changeset
739 envelope->dwFadeTime = hap_periodic->fade_length * 1000;
30778d9d8bff Made envelopes behave correctly with length of 0.
Edgar Simo <bobbens@gmail.com>
parents: 2556
diff changeset
740 }
2520
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
741
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
742 break;
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
743
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
744 case SDL_HAPTIC_SPRING:
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
745 case SDL_HAPTIC_DAMPER:
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
746 case SDL_HAPTIC_INERTIA:
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
747 case SDL_HAPTIC_FRICTION:
2522
0877146be013 Now compiles cleanly (has yet to work though).
Edgar Simo <bobbens@gmail.com>
parents: 2521
diff changeset
748 hap_condition = &src->condition;
2530
22ce87690b41 More comments.
Edgar Simo <bobbens@gmail.com>
parents: 2529
diff changeset
749 condition = SDL_malloc(sizeof(FFCONDITION) * dest->cAxes);
22ce87690b41 More comments.
Edgar Simo <bobbens@gmail.com>
parents: 2529
diff changeset
750 if (condition == NULL) {
22ce87690b41 More comments.
Edgar Simo <bobbens@gmail.com>
parents: 2529
diff changeset
751 SDL_OutOfMemory();
22ce87690b41 More comments.
Edgar Simo <bobbens@gmail.com>
parents: 2529
diff changeset
752 return -1;
22ce87690b41 More comments.
Edgar Simo <bobbens@gmail.com>
parents: 2529
diff changeset
753 }
2535
f0ed8471497d Added custom effect with support on darwin.
Edgar Simo <bobbens@gmail.com>
parents: 2534
diff changeset
754 SDL_memset(condition, 0, sizeof(FFCONDITION));
2530
22ce87690b41 More comments.
Edgar Simo <bobbens@gmail.com>
parents: 2529
diff changeset
755
22ce87690b41 More comments.
Edgar Simo <bobbens@gmail.com>
parents: 2529
diff changeset
756 /* Specifics */
22ce87690b41 More comments.
Edgar Simo <bobbens@gmail.com>
parents: 2529
diff changeset
757 for (i=0; i<dest->cAxes; i++) {
2531
7f2a4c387292 Fixed some inconsistancies in coding style.
Edgar Simo <bobbens@gmail.com>
parents: 2530
diff changeset
758 condition[i].lOffset = CONVERT(hap_condition->center[i]);
7f2a4c387292 Fixed some inconsistancies in coding style.
Edgar Simo <bobbens@gmail.com>
parents: 2530
diff changeset
759 condition[i].lPositiveCoefficient = CONVERT(hap_condition->right_coeff[i]);
7f2a4c387292 Fixed some inconsistancies in coding style.
Edgar Simo <bobbens@gmail.com>
parents: 2530
diff changeset
760 condition[i].lNegativeCoefficient = CONVERT(hap_condition->left_coeff[i]);
2628
bfbda6c656e5 Should remove warnings on compilation.
Edgar Simo <bobbens@gmail.com>
parents: 2627
diff changeset
761 condition[i].dwPositiveSaturation = CCONVERT(hap_condition->right_sat[i]);
bfbda6c656e5 Should remove warnings on compilation.
Edgar Simo <bobbens@gmail.com>
parents: 2627
diff changeset
762 condition[i].dwNegativeSaturation = CCONVERT(hap_condition->left_sat[i]);
bfbda6c656e5 Should remove warnings on compilation.
Edgar Simo <bobbens@gmail.com>
parents: 2627
diff changeset
763 condition[i].lDeadBand = CCONVERT(hap_condition->deadband[i]);
2530
22ce87690b41 More comments.
Edgar Simo <bobbens@gmail.com>
parents: 2529
diff changeset
764 }
22ce87690b41 More comments.
Edgar Simo <bobbens@gmail.com>
parents: 2529
diff changeset
765 dest->cbTypeSpecificParams = sizeof(FFCONDITION) * dest->cAxes;
22ce87690b41 More comments.
Edgar Simo <bobbens@gmail.com>
parents: 2529
diff changeset
766 dest->lpvTypeSpecificParams = condition;
22ce87690b41 More comments.
Edgar Simo <bobbens@gmail.com>
parents: 2529
diff changeset
767
22ce87690b41 More comments.
Edgar Simo <bobbens@gmail.com>
parents: 2529
diff changeset
768 /* Generics */
2531
7f2a4c387292 Fixed some inconsistancies in coding style.
Edgar Simo <bobbens@gmail.com>
parents: 2530
diff changeset
769 dest->dwDuration = hap_condition->length * 1000; /* In microseconds. */
2554
2681a04c2d3d Warn about using button triggers.
Edgar Simo <bobbens@gmail.com>
parents: 2553
diff changeset
770 dest->dwTriggerButton = FFGetTriggerButton(hap_condition->button);
2531
7f2a4c387292 Fixed some inconsistancies in coding style.
Edgar Simo <bobbens@gmail.com>
parents: 2530
diff changeset
771 dest->dwTriggerRepeatInterval = hap_condition->interval;
7f2a4c387292 Fixed some inconsistancies in coding style.
Edgar Simo <bobbens@gmail.com>
parents: 2530
diff changeset
772 dest->dwStartDelay = hap_condition->delay * 1000; /* In microseconds. */
2530
22ce87690b41 More comments.
Edgar Simo <bobbens@gmail.com>
parents: 2529
diff changeset
773
22ce87690b41 More comments.
Edgar Simo <bobbens@gmail.com>
parents: 2529
diff changeset
774 /* Direction. */
2531
7f2a4c387292 Fixed some inconsistancies in coding style.
Edgar Simo <bobbens@gmail.com>
parents: 2530
diff changeset
775 if (SDL_SYS_SetDirection(dest, &hap_condition->direction, dest->cAxes) < 0) {
2530
22ce87690b41 More comments.
Edgar Simo <bobbens@gmail.com>
parents: 2529
diff changeset
776 return -1;
22ce87690b41 More comments.
Edgar Simo <bobbens@gmail.com>
parents: 2529
diff changeset
777 }
22ce87690b41 More comments.
Edgar Simo <bobbens@gmail.com>
parents: 2529
diff changeset
778
2629
43a0416b3707 Removed TODO.
Edgar Simo <bobbens@gmail.com>
parents: 2628
diff changeset
779 /* Envelope - Not actually supported by most CONDITION implementations. */
2557
30778d9d8bff Made envelopes behave correctly with length of 0.
Edgar Simo <bobbens@gmail.com>
parents: 2556
diff changeset
780 SDL_free(dest->lpEnvelope);
30778d9d8bff Made envelopes behave correctly with length of 0.
Edgar Simo <bobbens@gmail.com>
parents: 2556
diff changeset
781 dest->lpEnvelope = NULL;
2520
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
782
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
783 break;
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
784
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
785 case SDL_HAPTIC_RAMP:
2522
0877146be013 Now compiles cleanly (has yet to work though).
Edgar Simo <bobbens@gmail.com>
parents: 2521
diff changeset
786 hap_ramp = &src->ramp;
2533
0c8cea99c4b8 Added SDL_HAPTIC_RAMP support for darwin.
Edgar Simo <bobbens@gmail.com>
parents: 2532
diff changeset
787 ramp = SDL_malloc(sizeof(FFRAMPFORCE));
0c8cea99c4b8 Added SDL_HAPTIC_RAMP support for darwin.
Edgar Simo <bobbens@gmail.com>
parents: 2532
diff changeset
788 if (ramp == NULL) {
0c8cea99c4b8 Added SDL_HAPTIC_RAMP support for darwin.
Edgar Simo <bobbens@gmail.com>
parents: 2532
diff changeset
789 SDL_OutOfMemory();
0c8cea99c4b8 Added SDL_HAPTIC_RAMP support for darwin.
Edgar Simo <bobbens@gmail.com>
parents: 2532
diff changeset
790 return -1;
0c8cea99c4b8 Added SDL_HAPTIC_RAMP support for darwin.
Edgar Simo <bobbens@gmail.com>
parents: 2532
diff changeset
791 }
2535
f0ed8471497d Added custom effect with support on darwin.
Edgar Simo <bobbens@gmail.com>
parents: 2534
diff changeset
792 SDL_memset(ramp, 0, sizeof(FFRAMPFORCE));
2533
0c8cea99c4b8 Added SDL_HAPTIC_RAMP support for darwin.
Edgar Simo <bobbens@gmail.com>
parents: 2532
diff changeset
793
0c8cea99c4b8 Added SDL_HAPTIC_RAMP support for darwin.
Edgar Simo <bobbens@gmail.com>
parents: 2532
diff changeset
794 /* Specifics */
2534
e597de8dccd5 Was a typo in the mac os x documentation.
Edgar Simo <bobbens@gmail.com>
parents: 2533
diff changeset
795 ramp->lStart = CONVERT(hap_ramp->start);
2533
0c8cea99c4b8 Added SDL_HAPTIC_RAMP support for darwin.
Edgar Simo <bobbens@gmail.com>
parents: 2532
diff changeset
796 ramp->lEnd = CONVERT(hap_ramp->end);
2535
f0ed8471497d Added custom effect with support on darwin.
Edgar Simo <bobbens@gmail.com>
parents: 2534
diff changeset
797 dest->cbTypeSpecificParams = sizeof(FFRAMPFORCE);
f0ed8471497d Added custom effect with support on darwin.
Edgar Simo <bobbens@gmail.com>
parents: 2534
diff changeset
798 dest->lpvTypeSpecificParams = ramp;
2533
0c8cea99c4b8 Added SDL_HAPTIC_RAMP support for darwin.
Edgar Simo <bobbens@gmail.com>
parents: 2532
diff changeset
799
0c8cea99c4b8 Added SDL_HAPTIC_RAMP support for darwin.
Edgar Simo <bobbens@gmail.com>
parents: 2532
diff changeset
800 /* Generics */
0c8cea99c4b8 Added SDL_HAPTIC_RAMP support for darwin.
Edgar Simo <bobbens@gmail.com>
parents: 2532
diff changeset
801 dest->dwDuration = hap_ramp->length * 1000; /* In microseconds. */
2554
2681a04c2d3d Warn about using button triggers.
Edgar Simo <bobbens@gmail.com>
parents: 2553
diff changeset
802 dest->dwTriggerButton = FFGetTriggerButton(hap_ramp->button);
2533
0c8cea99c4b8 Added SDL_HAPTIC_RAMP support for darwin.
Edgar Simo <bobbens@gmail.com>
parents: 2532
diff changeset
803 dest->dwTriggerRepeatInterval = hap_ramp->interval;
0c8cea99c4b8 Added SDL_HAPTIC_RAMP support for darwin.
Edgar Simo <bobbens@gmail.com>
parents: 2532
diff changeset
804 dest->dwStartDelay = hap_ramp->delay * 1000; /* In microseconds. */
0c8cea99c4b8 Added SDL_HAPTIC_RAMP support for darwin.
Edgar Simo <bobbens@gmail.com>
parents: 2532
diff changeset
805
0c8cea99c4b8 Added SDL_HAPTIC_RAMP support for darwin.
Edgar Simo <bobbens@gmail.com>
parents: 2532
diff changeset
806 /* Direction. */
0c8cea99c4b8 Added SDL_HAPTIC_RAMP support for darwin.
Edgar Simo <bobbens@gmail.com>
parents: 2532
diff changeset
807 if (SDL_SYS_SetDirection(dest, &hap_ramp->direction, dest->cAxes) < 0) {
0c8cea99c4b8 Added SDL_HAPTIC_RAMP support for darwin.
Edgar Simo <bobbens@gmail.com>
parents: 2532
diff changeset
808 return -1;
0c8cea99c4b8 Added SDL_HAPTIC_RAMP support for darwin.
Edgar Simo <bobbens@gmail.com>
parents: 2532
diff changeset
809 }
0c8cea99c4b8 Added SDL_HAPTIC_RAMP support for darwin.
Edgar Simo <bobbens@gmail.com>
parents: 2532
diff changeset
810
0c8cea99c4b8 Added SDL_HAPTIC_RAMP support for darwin.
Edgar Simo <bobbens@gmail.com>
parents: 2532
diff changeset
811 /* Envelope */
2565
698c776c642f Fixed broken envelopes.
Edgar Simo <bobbens@gmail.com>
parents: 2564
diff changeset
812 if ((hap_ramp->attack_length==0) && (hap_ramp->fade_length==0)) {
2563
be2ea885d70b More verbose about envelopes.
Edgar Simo <bobbens@gmail.com>
parents: 2562
diff changeset
813 SDL_free(envelope);
be2ea885d70b More verbose about envelopes.
Edgar Simo <bobbens@gmail.com>
parents: 2562
diff changeset
814 dest->lpEnvelope = NULL;
2564
c9348710a98a Missed a bracket.
Edgar Simo <bobbens@gmail.com>
parents: 2563
diff changeset
815 }
2557
30778d9d8bff Made envelopes behave correctly with length of 0.
Edgar Simo <bobbens@gmail.com>
parents: 2556
diff changeset
816 else {
2628
bfbda6c656e5 Should remove warnings on compilation.
Edgar Simo <bobbens@gmail.com>
parents: 2627
diff changeset
817 envelope->dwAttackLevel = CCONVERT(hap_ramp->attack_level);
2557
30778d9d8bff Made envelopes behave correctly with length of 0.
Edgar Simo <bobbens@gmail.com>
parents: 2556
diff changeset
818 envelope->dwAttackTime = hap_ramp->attack_length * 1000;
2628
bfbda6c656e5 Should remove warnings on compilation.
Edgar Simo <bobbens@gmail.com>
parents: 2627
diff changeset
819 envelope->dwFadeLevel = CCONVERT(hap_ramp->fade_level);
2557
30778d9d8bff Made envelopes behave correctly with length of 0.
Edgar Simo <bobbens@gmail.com>
parents: 2556
diff changeset
820 envelope->dwFadeTime = hap_ramp->fade_length * 1000;
30778d9d8bff Made envelopes behave correctly with length of 0.
Edgar Simo <bobbens@gmail.com>
parents: 2556
diff changeset
821 }
2520
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
822
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
823 break;
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
824
2535
f0ed8471497d Added custom effect with support on darwin.
Edgar Simo <bobbens@gmail.com>
parents: 2534
diff changeset
825 case SDL_HAPTIC_CUSTOM:
f0ed8471497d Added custom effect with support on darwin.
Edgar Simo <bobbens@gmail.com>
parents: 2534
diff changeset
826 hap_custom = &src->custom;
f0ed8471497d Added custom effect with support on darwin.
Edgar Simo <bobbens@gmail.com>
parents: 2534
diff changeset
827 custom = SDL_malloc(sizeof(FFCUSTOMFORCE));
f0ed8471497d Added custom effect with support on darwin.
Edgar Simo <bobbens@gmail.com>
parents: 2534
diff changeset
828 if (custom == NULL) {
f0ed8471497d Added custom effect with support on darwin.
Edgar Simo <bobbens@gmail.com>
parents: 2534
diff changeset
829 SDL_OutOfMemory();
f0ed8471497d Added custom effect with support on darwin.
Edgar Simo <bobbens@gmail.com>
parents: 2534
diff changeset
830 return -1;
f0ed8471497d Added custom effect with support on darwin.
Edgar Simo <bobbens@gmail.com>
parents: 2534
diff changeset
831 }
f0ed8471497d Added custom effect with support on darwin.
Edgar Simo <bobbens@gmail.com>
parents: 2534
diff changeset
832 SDL_memset(custom, 0, sizeof(FFCUSTOMFORCE));
f0ed8471497d Added custom effect with support on darwin.
Edgar Simo <bobbens@gmail.com>
parents: 2534
diff changeset
833
f0ed8471497d Added custom effect with support on darwin.
Edgar Simo <bobbens@gmail.com>
parents: 2534
diff changeset
834 /* Specifics */
f0ed8471497d Added custom effect with support on darwin.
Edgar Simo <bobbens@gmail.com>
parents: 2534
diff changeset
835 custom->cChannels = hap_custom->channels;
f0ed8471497d Added custom effect with support on darwin.
Edgar Simo <bobbens@gmail.com>
parents: 2534
diff changeset
836 custom->dwSamplePeriod = hap_custom->period * 1000;
f0ed8471497d Added custom effect with support on darwin.
Edgar Simo <bobbens@gmail.com>
parents: 2534
diff changeset
837 custom->cSamples = hap_custom->samples;
f0ed8471497d Added custom effect with support on darwin.
Edgar Simo <bobbens@gmail.com>
parents: 2534
diff changeset
838 custom->rglForceData = SDL_malloc(sizeof(LONG)*custom->cSamples*custom->cChannels);
f0ed8471497d Added custom effect with support on darwin.
Edgar Simo <bobbens@gmail.com>
parents: 2534
diff changeset
839 for (i=0; i<hap_custom->samples*hap_custom->channels; i++) { /* Copy data. */
2628
bfbda6c656e5 Should remove warnings on compilation.
Edgar Simo <bobbens@gmail.com>
parents: 2627
diff changeset
840 custom->rglForceData[i] = CCONVERT(hap_custom->data[i]);
2535
f0ed8471497d Added custom effect with support on darwin.
Edgar Simo <bobbens@gmail.com>
parents: 2534
diff changeset
841 }
f0ed8471497d Added custom effect with support on darwin.
Edgar Simo <bobbens@gmail.com>
parents: 2534
diff changeset
842 dest->cbTypeSpecificParams = sizeof(FFCUSTOMFORCE);
f0ed8471497d Added custom effect with support on darwin.
Edgar Simo <bobbens@gmail.com>
parents: 2534
diff changeset
843 dest->lpvTypeSpecificParams = custom;
f0ed8471497d Added custom effect with support on darwin.
Edgar Simo <bobbens@gmail.com>
parents: 2534
diff changeset
844
f0ed8471497d Added custom effect with support on darwin.
Edgar Simo <bobbens@gmail.com>
parents: 2534
diff changeset
845 /* Generics */
f0ed8471497d Added custom effect with support on darwin.
Edgar Simo <bobbens@gmail.com>
parents: 2534
diff changeset
846 dest->dwDuration = hap_custom->length * 1000; /* In microseconds. */
2554
2681a04c2d3d Warn about using button triggers.
Edgar Simo <bobbens@gmail.com>
parents: 2553
diff changeset
847 dest->dwTriggerButton = FFGetTriggerButton(hap_custom->button);
2535
f0ed8471497d Added custom effect with support on darwin.
Edgar Simo <bobbens@gmail.com>
parents: 2534
diff changeset
848 dest->dwTriggerRepeatInterval = hap_custom->interval;
f0ed8471497d Added custom effect with support on darwin.
Edgar Simo <bobbens@gmail.com>
parents: 2534
diff changeset
849 dest->dwStartDelay = hap_custom->delay * 1000; /* In microseconds. */
f0ed8471497d Added custom effect with support on darwin.
Edgar Simo <bobbens@gmail.com>
parents: 2534
diff changeset
850
f0ed8471497d Added custom effect with support on darwin.
Edgar Simo <bobbens@gmail.com>
parents: 2534
diff changeset
851 /* Direction. */
f0ed8471497d Added custom effect with support on darwin.
Edgar Simo <bobbens@gmail.com>
parents: 2534
diff changeset
852 if (SDL_SYS_SetDirection(dest, &hap_custom->direction, dest->cAxes) < 0) {
f0ed8471497d Added custom effect with support on darwin.
Edgar Simo <bobbens@gmail.com>
parents: 2534
diff changeset
853 return -1;
f0ed8471497d Added custom effect with support on darwin.
Edgar Simo <bobbens@gmail.com>
parents: 2534
diff changeset
854 }
f0ed8471497d Added custom effect with support on darwin.
Edgar Simo <bobbens@gmail.com>
parents: 2534
diff changeset
855
f0ed8471497d Added custom effect with support on darwin.
Edgar Simo <bobbens@gmail.com>
parents: 2534
diff changeset
856 /* Envelope */
2565
698c776c642f Fixed broken envelopes.
Edgar Simo <bobbens@gmail.com>
parents: 2564
diff changeset
857 if ((hap_custom->attack_length==0) && (hap_custom->fade_length==0)) {
2563
be2ea885d70b More verbose about envelopes.
Edgar Simo <bobbens@gmail.com>
parents: 2562
diff changeset
858 SDL_free(envelope);
be2ea885d70b More verbose about envelopes.
Edgar Simo <bobbens@gmail.com>
parents: 2562
diff changeset
859 dest->lpEnvelope = NULL;
2557
30778d9d8bff Made envelopes behave correctly with length of 0.
Edgar Simo <bobbens@gmail.com>
parents: 2556
diff changeset
860 }
30778d9d8bff Made envelopes behave correctly with length of 0.
Edgar Simo <bobbens@gmail.com>
parents: 2556
diff changeset
861 else {
2628
bfbda6c656e5 Should remove warnings on compilation.
Edgar Simo <bobbens@gmail.com>
parents: 2627
diff changeset
862 envelope->dwAttackLevel = CCONVERT(hap_custom->attack_level);
2557
30778d9d8bff Made envelopes behave correctly with length of 0.
Edgar Simo <bobbens@gmail.com>
parents: 2556
diff changeset
863 envelope->dwAttackTime = hap_custom->attack_length * 1000;
2628
bfbda6c656e5 Should remove warnings on compilation.
Edgar Simo <bobbens@gmail.com>
parents: 2627
diff changeset
864 envelope->dwFadeLevel = CCONVERT(hap_custom->fade_level);
2557
30778d9d8bff Made envelopes behave correctly with length of 0.
Edgar Simo <bobbens@gmail.com>
parents: 2556
diff changeset
865 envelope->dwFadeTime = hap_custom->fade_length * 1000;
30778d9d8bff Made envelopes behave correctly with length of 0.
Edgar Simo <bobbens@gmail.com>
parents: 2556
diff changeset
866 }
2535
f0ed8471497d Added custom effect with support on darwin.
Edgar Simo <bobbens@gmail.com>
parents: 2534
diff changeset
867
f0ed8471497d Added custom effect with support on darwin.
Edgar Simo <bobbens@gmail.com>
parents: 2534
diff changeset
868 break;
f0ed8471497d Added custom effect with support on darwin.
Edgar Simo <bobbens@gmail.com>
parents: 2534
diff changeset
869
2520
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
870
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
871 default:
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
872 SDL_SetError("Haptic: Unknown effect type.");
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
873 return -1;
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
874 }
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
875
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
876 return 0;
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
877 }
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
878
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
879
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
880 /*
2527
924a32719b6f Handle axes for darwin now.
Edgar Simo <bobbens@gmail.com>
parents: 2522
diff changeset
881 * Frees an FFEFFECT allocated by SDL_SYS_ToFFEFFECT.
924a32719b6f Handle axes for darwin now.
Edgar Simo <bobbens@gmail.com>
parents: 2522
diff changeset
882 */
2531
7f2a4c387292 Fixed some inconsistancies in coding style.
Edgar Simo <bobbens@gmail.com>
parents: 2530
diff changeset
883 static void
2535
f0ed8471497d Added custom effect with support on darwin.
Edgar Simo <bobbens@gmail.com>
parents: 2534
diff changeset
884 SDL_SYS_HapticFreeFFEFFECT( FFEFFECT * effect, int type )
2527
924a32719b6f Handle axes for darwin now.
Edgar Simo <bobbens@gmail.com>
parents: 2522
diff changeset
885 {
2535
f0ed8471497d Added custom effect with support on darwin.
Edgar Simo <bobbens@gmail.com>
parents: 2534
diff changeset
886 FFCUSTOMFORCE *custom;
f0ed8471497d Added custom effect with support on darwin.
Edgar Simo <bobbens@gmail.com>
parents: 2534
diff changeset
887
2527
924a32719b6f Handle axes for darwin now.
Edgar Simo <bobbens@gmail.com>
parents: 2522
diff changeset
888 if (effect->lpEnvelope != NULL) {
924a32719b6f Handle axes for darwin now.
Edgar Simo <bobbens@gmail.com>
parents: 2522
diff changeset
889 SDL_free(effect->lpEnvelope);
924a32719b6f Handle axes for darwin now.
Edgar Simo <bobbens@gmail.com>
parents: 2522
diff changeset
890 effect->lpEnvelope = NULL;
924a32719b6f Handle axes for darwin now.
Edgar Simo <bobbens@gmail.com>
parents: 2522
diff changeset
891 }
924a32719b6f Handle axes for darwin now.
Edgar Simo <bobbens@gmail.com>
parents: 2522
diff changeset
892 if (effect->rgdwAxes != NULL) {
924a32719b6f Handle axes for darwin now.
Edgar Simo <bobbens@gmail.com>
parents: 2522
diff changeset
893 SDL_free(effect->rgdwAxes);
924a32719b6f Handle axes for darwin now.
Edgar Simo <bobbens@gmail.com>
parents: 2522
diff changeset
894 effect->rgdwAxes = NULL;
924a32719b6f Handle axes for darwin now.
Edgar Simo <bobbens@gmail.com>
parents: 2522
diff changeset
895 }
924a32719b6f Handle axes for darwin now.
Edgar Simo <bobbens@gmail.com>
parents: 2522
diff changeset
896 if (effect->lpvTypeSpecificParams != NULL) {
2535
f0ed8471497d Added custom effect with support on darwin.
Edgar Simo <bobbens@gmail.com>
parents: 2534
diff changeset
897 if (type == SDL_HAPTIC_CUSTOM) { /* Must free the custom data. */
f0ed8471497d Added custom effect with support on darwin.
Edgar Simo <bobbens@gmail.com>
parents: 2534
diff changeset
898 custom = (FFCUSTOMFORCE*) effect->lpvTypeSpecificParams;
f0ed8471497d Added custom effect with support on darwin.
Edgar Simo <bobbens@gmail.com>
parents: 2534
diff changeset
899 SDL_free(custom->rglForceData);
f0ed8471497d Added custom effect with support on darwin.
Edgar Simo <bobbens@gmail.com>
parents: 2534
diff changeset
900 custom->rglForceData = NULL;
f0ed8471497d Added custom effect with support on darwin.
Edgar Simo <bobbens@gmail.com>
parents: 2534
diff changeset
901 }
2527
924a32719b6f Handle axes for darwin now.
Edgar Simo <bobbens@gmail.com>
parents: 2522
diff changeset
902 SDL_free(effect->lpvTypeSpecificParams);
924a32719b6f Handle axes for darwin now.
Edgar Simo <bobbens@gmail.com>
parents: 2522
diff changeset
903 effect->lpvTypeSpecificParams = NULL;
924a32719b6f Handle axes for darwin now.
Edgar Simo <bobbens@gmail.com>
parents: 2522
diff changeset
904 }
924a32719b6f Handle axes for darwin now.
Edgar Simo <bobbens@gmail.com>
parents: 2522
diff changeset
905 if (effect->rglDirection != NULL) {
924a32719b6f Handle axes for darwin now.
Edgar Simo <bobbens@gmail.com>
parents: 2522
diff changeset
906 SDL_free(effect->rglDirection);
924a32719b6f Handle axes for darwin now.
Edgar Simo <bobbens@gmail.com>
parents: 2522
diff changeset
907 effect->rglDirection = NULL;
924a32719b6f Handle axes for darwin now.
Edgar Simo <bobbens@gmail.com>
parents: 2522
diff changeset
908 }
924a32719b6f Handle axes for darwin now.
Edgar Simo <bobbens@gmail.com>
parents: 2522
diff changeset
909 }
924a32719b6f Handle axes for darwin now.
Edgar Simo <bobbens@gmail.com>
parents: 2522
diff changeset
910
924a32719b6f Handle axes for darwin now.
Edgar Simo <bobbens@gmail.com>
parents: 2522
diff changeset
911
924a32719b6f Handle axes for darwin now.
Edgar Simo <bobbens@gmail.com>
parents: 2522
diff changeset
912 /*
2520
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
913 * Gets the effect type from the generic SDL haptic effect wrapper.
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
914 */
2531
7f2a4c387292 Fixed some inconsistancies in coding style.
Edgar Simo <bobbens@gmail.com>
parents: 2530
diff changeset
915 CFUUIDRef
2552
ee048e7bc909 Removed invalid type check.
Edgar Simo <bobbens@gmail.com>
parents: 2550
diff changeset
916 SDL_SYS_HapticEffectType( Uint16 type )
2520
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
917 {
2552
ee048e7bc909 Removed invalid type check.
Edgar Simo <bobbens@gmail.com>
parents: 2550
diff changeset
918 switch (type) {
2520
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
919 case SDL_HAPTIC_CONSTANT:
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
920 return kFFEffectType_ConstantForce_ID;
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
921
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
922 case SDL_HAPTIC_RAMP:
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
923 return kFFEffectType_RampForce_ID;
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
924
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
925 case SDL_HAPTIC_SQUARE:
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
926 return kFFEffectType_Square_ID;
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
927
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
928 case SDL_HAPTIC_SINE:
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
929 return kFFEffectType_Sine_ID;
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
930
2521
7aa91c21ce5f Many typo and silly mistake fixes.
Edgar Simo <bobbens@gmail.com>
parents: 2520
diff changeset
931 case SDL_HAPTIC_TRIANGLE:
2520
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
932 return kFFEffectType_Triangle_ID;
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
933
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
934 case SDL_HAPTIC_SAWTOOTHUP:
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
935 return kFFEffectType_SawtoothUp_ID;
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
936
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
937 case SDL_HAPTIC_SAWTOOTHDOWN:
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
938 return kFFEffectType_SawtoothDown_ID;
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
939
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
940 case SDL_HAPTIC_SPRING:
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
941 return kFFEffectType_Spring_ID;
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
942
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
943 case SDL_HAPTIC_DAMPER:
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
944 return kFFEffectType_Damper_ID;
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
945
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
946 case SDL_HAPTIC_INERTIA:
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
947 return kFFEffectType_Inertia_ID;
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
948
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
949 case SDL_HAPTIC_FRICTION:
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
950 return kFFEffectType_Friction_ID;
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
951
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
952 case SDL_HAPTIC_CUSTOM:
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
953 return kFFEffectType_CustomForce_ID;
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
954
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
955 default:
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
956 SDL_SetError("Haptic: Unknown effect type.");
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
957 return NULL;
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
958 }
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
959 }
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
960
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
961
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
962 /*
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
963 * Creates a new haptic effect.
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
964 */
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
965 int
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
966 SDL_SYS_HapticNewEffect(SDL_Haptic * haptic, struct haptic_effect * effect,
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
967 SDL_HapticEffect * base)
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
968 {
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
969 HRESULT ret;
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
970 CFUUIDRef type;
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
971
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
972 /* Alloc the effect. */
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
973 effect->hweffect = (struct haptic_hweffect *)
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
974 SDL_malloc(sizeof(struct haptic_hweffect));
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
975 if (effect->hweffect == NULL) {
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
976 SDL_OutOfMemory();
2527
924a32719b6f Handle axes for darwin now.
Edgar Simo <bobbens@gmail.com>
parents: 2522
diff changeset
977 goto err_hweffect;
2520
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
978 }
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
979
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
980 /* Get the type. */
2553
3f853f075bc0 Fixed typo.
Edgar Simo <bobbens@gmail.com>
parents: 2552
diff changeset
981 type = SDL_SYS_HapticEffectType(base->type);
2520
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
982 if (type == NULL) {
2527
924a32719b6f Handle axes for darwin now.
Edgar Simo <bobbens@gmail.com>
parents: 2522
diff changeset
983 goto err_hweffect;
2520
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
984 }
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
985
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
986 /* Get the effect. */
2538
1f9c20580ab4 Improved correctiveness in CreateEffect.
Edgar Simo <bobbens@gmail.com>
parents: 2537
diff changeset
987 if (SDL_SYS_ToFFEFFECT(haptic, &effect->hweffect->effect, base) < 0) {
2527
924a32719b6f Handle axes for darwin now.
Edgar Simo <bobbens@gmail.com>
parents: 2522
diff changeset
988 goto err_effectdone;
2520
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
989 }
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
990
2527
924a32719b6f Handle axes for darwin now.
Edgar Simo <bobbens@gmail.com>
parents: 2522
diff changeset
991 /* Create the actual effect. */
2538
1f9c20580ab4 Improved correctiveness in CreateEffect.
Edgar Simo <bobbens@gmail.com>
parents: 2537
diff changeset
992 ret = FFDeviceCreateEffect(haptic->hwdata->device, type,
1f9c20580ab4 Improved correctiveness in CreateEffect.
Edgar Simo <bobbens@gmail.com>
parents: 2537
diff changeset
993 &effect->hweffect->effect, &effect->hweffect->ref);
2527
924a32719b6f Handle axes for darwin now.
Edgar Simo <bobbens@gmail.com>
parents: 2522
diff changeset
994 if (ret != FF_OK) {
2541
f2649eaa552e More verbose errors.
Edgar Simo <bobbens@gmail.com>
parents: 2538
diff changeset
995 SDL_SetError("Haptic: Unable to create effect: %s.", FFStrError(ret));
2527
924a32719b6f Handle axes for darwin now.
Edgar Simo <bobbens@gmail.com>
parents: 2522
diff changeset
996 goto err_effectdone;
924a32719b6f Handle axes for darwin now.
Edgar Simo <bobbens@gmail.com>
parents: 2522
diff changeset
997 }
924a32719b6f Handle axes for darwin now.
Edgar Simo <bobbens@gmail.com>
parents: 2522
diff changeset
998
924a32719b6f Handle axes for darwin now.
Edgar Simo <bobbens@gmail.com>
parents: 2522
diff changeset
999 return 0;
924a32719b6f Handle axes for darwin now.
Edgar Simo <bobbens@gmail.com>
parents: 2522
diff changeset
1000
924a32719b6f Handle axes for darwin now.
Edgar Simo <bobbens@gmail.com>
parents: 2522
diff changeset
1001 err_effectdone:
2538
1f9c20580ab4 Improved correctiveness in CreateEffect.
Edgar Simo <bobbens@gmail.com>
parents: 2537
diff changeset
1002 SDL_SYS_HapticFreeFFEFFECT(&effect->hweffect->effect, base->type);
2527
924a32719b6f Handle axes for darwin now.
Edgar Simo <bobbens@gmail.com>
parents: 2522
diff changeset
1003 err_hweffect:
924a32719b6f Handle axes for darwin now.
Edgar Simo <bobbens@gmail.com>
parents: 2522
diff changeset
1004 if (effect->hweffect != NULL) {
924a32719b6f Handle axes for darwin now.
Edgar Simo <bobbens@gmail.com>
parents: 2522
diff changeset
1005 SDL_free(effect->hweffect);
924a32719b6f Handle axes for darwin now.
Edgar Simo <bobbens@gmail.com>
parents: 2522
diff changeset
1006 effect->hweffect = NULL;
924a32719b6f Handle axes for darwin now.
Edgar Simo <bobbens@gmail.com>
parents: 2522
diff changeset
1007 }
924a32719b6f Handle axes for darwin now.
Edgar Simo <bobbens@gmail.com>
parents: 2522
diff changeset
1008 return -1;
2520
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
1009 }
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
1010
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
1011
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
1012 /*
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
1013 * Updates an effect.
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
1014 */
2531
7f2a4c387292 Fixed some inconsistancies in coding style.
Edgar Simo <bobbens@gmail.com>
parents: 2530
diff changeset
1015 int
7f2a4c387292 Fixed some inconsistancies in coding style.
Edgar Simo <bobbens@gmail.com>
parents: 2530
diff changeset
1016 SDL_SYS_HapticUpdateEffect(SDL_Haptic * haptic,
2520
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
1017 struct haptic_effect * effect, SDL_HapticEffect * data)
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
1018 {
2538
1f9c20580ab4 Improved correctiveness in CreateEffect.
Edgar Simo <bobbens@gmail.com>
parents: 2537
diff changeset
1019 HRESULT ret;
1f9c20580ab4 Improved correctiveness in CreateEffect.
Edgar Simo <bobbens@gmail.com>
parents: 2537
diff changeset
1020 FFEffectParameterFlag flags;
1f9c20580ab4 Improved correctiveness in CreateEffect.
Edgar Simo <bobbens@gmail.com>
parents: 2537
diff changeset
1021 FFEFFECT temp;
1f9c20580ab4 Improved correctiveness in CreateEffect.
Edgar Simo <bobbens@gmail.com>
parents: 2537
diff changeset
1022
1f9c20580ab4 Improved correctiveness in CreateEffect.
Edgar Simo <bobbens@gmail.com>
parents: 2537
diff changeset
1023 /* Get the effect. */
1f9c20580ab4 Improved correctiveness in CreateEffect.
Edgar Simo <bobbens@gmail.com>
parents: 2537
diff changeset
1024 SDL_memset(&temp, 0, sizeof(FFEFFECT));
1f9c20580ab4 Improved correctiveness in CreateEffect.
Edgar Simo <bobbens@gmail.com>
parents: 2537
diff changeset
1025 if (SDL_SYS_ToFFEFFECT(haptic, &temp, data) < 0) {
1f9c20580ab4 Improved correctiveness in CreateEffect.
Edgar Simo <bobbens@gmail.com>
parents: 2537
diff changeset
1026 goto err_update;
1f9c20580ab4 Improved correctiveness in CreateEffect.
Edgar Simo <bobbens@gmail.com>
parents: 2537
diff changeset
1027 }
1f9c20580ab4 Improved correctiveness in CreateEffect.
Edgar Simo <bobbens@gmail.com>
parents: 2537
diff changeset
1028
1f9c20580ab4 Improved correctiveness in CreateEffect.
Edgar Simo <bobbens@gmail.com>
parents: 2537
diff changeset
1029 /* Set the flags. Might be worthwhile to diff temp with loaded effect and
1f9c20580ab4 Improved correctiveness in CreateEffect.
Edgar Simo <bobbens@gmail.com>
parents: 2537
diff changeset
1030 * only change those parameters. */
2608
7c7a63f22afa Using same syntax as the windows port for updating effects.
Edgar Simo <bobbens@gmail.com>
parents: 2604
diff changeset
1031 flags = FFEP_DIRECTION |
7c7a63f22afa Using same syntax as the windows port for updating effects.
Edgar Simo <bobbens@gmail.com>
parents: 2604
diff changeset
1032 FFEP_DURATION |
7c7a63f22afa Using same syntax as the windows port for updating effects.
Edgar Simo <bobbens@gmail.com>
parents: 2604
diff changeset
1033 FFEP_ENVELOPE |
7c7a63f22afa Using same syntax as the windows port for updating effects.
Edgar Simo <bobbens@gmail.com>
parents: 2604
diff changeset
1034 FFEP_STARTDELAY |
7c7a63f22afa Using same syntax as the windows port for updating effects.
Edgar Simo <bobbens@gmail.com>
parents: 2604
diff changeset
1035 FFEP_TRIGGERBUTTON |
7c7a63f22afa Using same syntax as the windows port for updating effects.
Edgar Simo <bobbens@gmail.com>
parents: 2604
diff changeset
1036 FFEP_TRIGGERREPEATINTERVAL |
7c7a63f22afa Using same syntax as the windows port for updating effects.
Edgar Simo <bobbens@gmail.com>
parents: 2604
diff changeset
1037 FFEP_TYPESPECIFICPARAMS;
2538
1f9c20580ab4 Improved correctiveness in CreateEffect.
Edgar Simo <bobbens@gmail.com>
parents: 2537
diff changeset
1038
1f9c20580ab4 Improved correctiveness in CreateEffect.
Edgar Simo <bobbens@gmail.com>
parents: 2537
diff changeset
1039 /* Create the actual effect. */
2542
4e055fa7acb9 Fixed some stupid mistakes.
Edgar Simo <bobbens@gmail.com>
parents: 2541
diff changeset
1040 ret = FFEffectSetParameters(effect->hweffect->ref, &temp, flags);
2538
1f9c20580ab4 Improved correctiveness in CreateEffect.
Edgar Simo <bobbens@gmail.com>
parents: 2537
diff changeset
1041 if (ret != FF_OK) {
2541
f2649eaa552e More verbose errors.
Edgar Simo <bobbens@gmail.com>
parents: 2538
diff changeset
1042 SDL_SetError("Haptic: Unable to update effect: %s.", FFStrError(ret));
2538
1f9c20580ab4 Improved correctiveness in CreateEffect.
Edgar Simo <bobbens@gmail.com>
parents: 2537
diff changeset
1043 goto err_update;
1f9c20580ab4 Improved correctiveness in CreateEffect.
Edgar Simo <bobbens@gmail.com>
parents: 2537
diff changeset
1044 }
1f9c20580ab4 Improved correctiveness in CreateEffect.
Edgar Simo <bobbens@gmail.com>
parents: 2537
diff changeset
1045
1f9c20580ab4 Improved correctiveness in CreateEffect.
Edgar Simo <bobbens@gmail.com>
parents: 2537
diff changeset
1046 /* Copy it over. */
1f9c20580ab4 Improved correctiveness in CreateEffect.
Edgar Simo <bobbens@gmail.com>
parents: 2537
diff changeset
1047 SDL_SYS_HapticFreeFFEFFECT(&effect->hweffect->effect, data->type);
1f9c20580ab4 Improved correctiveness in CreateEffect.
Edgar Simo <bobbens@gmail.com>
parents: 2537
diff changeset
1048 SDL_memcpy(&effect->hweffect->effect, &temp, sizeof(FFEFFECT));
1f9c20580ab4 Improved correctiveness in CreateEffect.
Edgar Simo <bobbens@gmail.com>
parents: 2537
diff changeset
1049
1f9c20580ab4 Improved correctiveness in CreateEffect.
Edgar Simo <bobbens@gmail.com>
parents: 2537
diff changeset
1050 return 0;
1f9c20580ab4 Improved correctiveness in CreateEffect.
Edgar Simo <bobbens@gmail.com>
parents: 2537
diff changeset
1051
1f9c20580ab4 Improved correctiveness in CreateEffect.
Edgar Simo <bobbens@gmail.com>
parents: 2537
diff changeset
1052 err_update:
1f9c20580ab4 Improved correctiveness in CreateEffect.
Edgar Simo <bobbens@gmail.com>
parents: 2537
diff changeset
1053 SDL_SYS_HapticFreeFFEFFECT(&temp, data->type);
2520
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
1054 return -1;
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
1055 }
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
1056
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
1057
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
1058 /*
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
1059 * Runs an effect.
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
1060 */
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
1061 int
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
1062 SDL_SYS_HapticRunEffect(SDL_Haptic * haptic, struct haptic_effect * effect,
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
1063 Uint32 iterations)
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
1064 {
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
1065 HRESULT ret;
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
1066 Uint32 iter;
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
1067
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
1068 /* Check if it's infinite. */
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
1069 if (iterations == SDL_HAPTIC_INFINITY) {
2521
7aa91c21ce5f Many typo and silly mistake fixes.
Edgar Simo <bobbens@gmail.com>
parents: 2520
diff changeset
1070 iter = FF_INFINITE;
2520
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
1071 }
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
1072 else
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
1073 iter = iterations;
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
1074
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
1075 /* Run the effect. */
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
1076 ret = FFEffectStart(effect->hweffect->ref, iter, 0);
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
1077 if (ret != FF_OK) {
2541
f2649eaa552e More verbose errors.
Edgar Simo <bobbens@gmail.com>
parents: 2538
diff changeset
1078 SDL_SetError("Haptic: Unable to run the effect: %s.", FFStrError(ret));
2520
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
1079 return -1;
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
1080 }
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
1081
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
1082 return 0;
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
1083 }
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
1084
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
1085
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
1086 /*
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
1087 * Stops an effect.
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
1088 */
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
1089 int
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
1090 SDL_SYS_HapticStopEffect(SDL_Haptic * haptic, struct haptic_effect * effect)
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
1091 {
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
1092 HRESULT ret;
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
1093
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
1094 ret = FFEffectStop(effect->hweffect->ref);
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
1095 if (ret != FF_OK) {
2541
f2649eaa552e More verbose errors.
Edgar Simo <bobbens@gmail.com>
parents: 2538
diff changeset
1096 SDL_SetError("Haptic: Unable to stop the effect: %s.", FFStrError(ret));
2520
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
1097 return -1;
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
1098 }
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
1099
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
1100 return 0;
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
1101 }
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
1102
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
1103
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
1104 /*
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
1105 * Frees the effect.
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
1106 */
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
1107 void
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
1108 SDL_SYS_HapticDestroyEffect(SDL_Haptic * haptic, struct haptic_effect * effect)
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
1109 {
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
1110 HRESULT ret;
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
1111
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
1112 ret = FFDeviceReleaseEffect(haptic->hwdata->device, effect->hweffect->ref);
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
1113 if (ret != FF_OK) {
2541
f2649eaa552e More verbose errors.
Edgar Simo <bobbens@gmail.com>
parents: 2538
diff changeset
1114 SDL_SetError("Haptic: Error removing the effect from the device: %s.",
f2649eaa552e More verbose errors.
Edgar Simo <bobbens@gmail.com>
parents: 2538
diff changeset
1115 FFStrError(ret));
2520
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
1116 }
2562
c284ce0cd8e0 Fixed memory leak.
Edgar Simo <bobbens@gmail.com>
parents: 2561
diff changeset
1117 SDL_SYS_HapticFreeFFEFFECT(&effect->hweffect->effect, effect->effect.type);
2520
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
1118 SDL_free(effect->hweffect);
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
1119 effect->hweffect = NULL;
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
1120 }
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
1121
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
1122
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
1123 /*
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
1124 * Gets the status of a haptic effect.
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
1125 */
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
1126 int
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
1127 SDL_SYS_HapticGetEffectStatus(SDL_Haptic * haptic, struct haptic_effect * effect)
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
1128 {
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
1129 HRESULT ret;
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
1130 FFEffectStatusFlag status;
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
1131
2521
7aa91c21ce5f Many typo and silly mistake fixes.
Edgar Simo <bobbens@gmail.com>
parents: 2520
diff changeset
1132 ret = FFEffectGetEffectStatus(effect->hweffect->ref, &status);
2520
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
1133 if (ret != FF_OK) {
2541
f2649eaa552e More verbose errors.
Edgar Simo <bobbens@gmail.com>
parents: 2538
diff changeset
1134 SDL_SetError("Haptic: Unable to get effect status: %s.", FFStrError(ret));
2520
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
1135 return -1;
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
1136 }
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
1137
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
1138 if (status == 0) return SDL_FALSE;
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
1139 return SDL_TRUE; /* Assume it's playing or emulated. */
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
1140 }
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
1141
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
1142
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
1143 /*
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
1144 * Sets the gain.
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
1145 */
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
1146 int
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
1147 SDL_SYS_HapticSetGain(SDL_Haptic * haptic, int gain)
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
1148 {
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
1149 HRESULT ret;
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
1150 Uint32 val;
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
1151
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
1152 val = gain * 100; /* Mac OS X uses 0 to 10,000 */
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
1153 ret = FFDeviceSetForceFeedbackProperty(haptic->hwdata->device, FFPROP_FFGAIN, &val);
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
1154 if (ret != FF_OK) {
2541
f2649eaa552e More verbose errors.
Edgar Simo <bobbens@gmail.com>
parents: 2538
diff changeset
1155 SDL_SetError("Haptic: Error setting gain: %s.", FFStrError(ret));
2520
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
1156 return -1;
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
1157 }
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
1158
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
1159 return 0;
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
1160 }
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
1161
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
1162
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
1163 /*
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
1164 * Sets the autocentering.
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
1165 */
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
1166 int
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
1167 SDL_SYS_HapticSetAutocenter(SDL_Haptic * haptic, int autocenter)
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
1168 {
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
1169 HRESULT ret;
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
1170 Uint32 val;
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
1171
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
1172 /* Mac OS X only has 0 (off) and 1 (on) */
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
1173 if (autocenter == 0) val = 0;
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
1174 else val = 1;
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
1175
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
1176 ret = FFDeviceSetForceFeedbackProperty(haptic->hwdata->device,
2521
7aa91c21ce5f Many typo and silly mistake fixes.
Edgar Simo <bobbens@gmail.com>
parents: 2520
diff changeset
1177 FFPROP_AUTOCENTER, &val);
2520
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
1178 if (ret != FF_OK) {
2541
f2649eaa552e More verbose errors.
Edgar Simo <bobbens@gmail.com>
parents: 2538
diff changeset
1179 SDL_SetError("Haptic: Error setting autocenter: %s.", FFStrError(ret));
2520
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
1180 return -1;
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
1181 }
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
1182
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
1183 return 0;
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
1184
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
1185 }
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
1186
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
1187
2541
f2649eaa552e More verbose errors.
Edgar Simo <bobbens@gmail.com>
parents: 2538
diff changeset
1188 #endif /* SDL_HAPTIC_IOKIT */