annotate src/haptic/darwin/SDL_syshaptic.c @ 2522:0877146be013 gsoc2008_force_feedback

Now compiles cleanly (has yet to work though).
author Edgar Simo <bobbens@gmail.com>
date Tue, 15 Jul 2008 17:35:06 +0000
parents 7aa91c21ce5f
children 924a32719b6f
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 */
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
30 /*#include "../../joystick/dawrin/SDL_sysjoystick_c.h"*/ /* For joystick hwdata */
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 {
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
46 io_service_t dev;
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
47 SDL_Haptic *haptic;
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
48 } SDL_hapticlist[MAX_HAPTICS];
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
49
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 * Haptic system hardware data.
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
53 */
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
54 struct haptic_hwdata
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
55 {
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
56 FFDeviceObjectReference device; /* Hardware device. */
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
57 };
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
58
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 * Haptic system effect data.
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 struct haptic_hweffect
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 FFEffectObjectReference ref; /* Reference. */
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
66 struct FFEFFECT effect; /* Hardware effect. */
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
67 };
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
68
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 /*
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
71 * Initializes the haptic subsystem.
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
72 */
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
73 int
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
74 SDL_SYS_HapticInit(void)
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
75 {
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
76 int numhaptics;
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
77 IOReturn result;
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
78 io_iterator_t iter;
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
79 CFDictionaryRef match;
2521
7aa91c21ce5f Many typo and silly mistake fixes.
Edgar Simo <bobbens@gmail.com>
parents: 2520
diff changeset
80 io_service_t device;
2520
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
81
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
82 /* Get HID devices. */
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
83 match = IOServiceMatching(kIOHIDDeviceKey);
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
84 if (match == NULL) {
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
85 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
86 return -1;
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
87 }
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
88
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
89 /* 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
90 result = IOServiceGetMatchingServices(kIOMasterPortDefault, match, &iter);
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
91 if (result != kIOReturnSuccess) {
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
92 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
93 return -1;
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
94 }
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
95 /* IOServiceGetMatchingServices consumes dictionary. */
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
96
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
97 numhaptics = 0;
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
98 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
99
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
100 /* Check for force feedback. */
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
101 if (FFIsForceFeedback(device) == FF_OK) {
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
102 SDL_hapticlist[numhaptics].dev = device;
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
103 SDL_hapticlist[numhaptics].haptic = NULL;
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
104 numhaptics++;
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
105 }
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
106
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
107 /* Reached haptic limit. */
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
108 if (numhaptics >= MAX_HAPTICS)
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
109 break;
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
110 }
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
111 IOObjectRelease(iter);
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
112
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
113 return numhaptics;
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
114 }
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
115
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
116
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
117 /*
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
118 * 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
119 */
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
120 const char *
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
121 SDL_SYS_HapticName(int index)
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
122 {
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
123 return NULL;
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
124 }
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
125
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
126
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
127 #define FF_TEST(ff, s) \
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
128 if (features.supportedEffects & ff) supported |= s
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
129 /*
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
130 * Gets supported features.
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
131 */
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
132 static unsigned int
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
133 GetSupportedFeatures(FFDeviceObjectReference device,
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
134 int *neffects, int *nplaying)
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 HRESULT ret;
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
137 FFCAPABILITIES features;
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
138 unsigned int supported;
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
139 Uint32 val;
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 ret = FFDeviceGetForceFeedbackCapabilities(device, &features);
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
142 if (ret != FF_OK) {
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
143 SDL_SetError("Haptic: Unable to get device's supported features.");
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
144 return 0;
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
145 }
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
146
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
147 supported = 0;
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
148
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
149 /* Get maximum effects. */
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
150 *neffects = features.storageCapacity;
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
151 *nplaying = features.playbackCapacity;
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
152
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
153 /* Test for effects. */
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
154 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
155 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
156 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
157 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
158 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
159 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
160 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
161 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
162 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
163 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
164 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
165 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
166
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
167 /* Check if supports gain. */
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
168 ret = FFDeviceGetForceFeedbackProperty(device, FFPROP_FFGAIN,
2522
0877146be013 Now compiles cleanly (has yet to work though).
Edgar Simo <bobbens@gmail.com>
parents: 2521
diff changeset
169 &val, sizeof(val));
2520
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
170 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
171 else if (ret != FFERR_UNSUPPORTED) {
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
172 SDL_SetError("Haptic: Unable to get if device supports gain.");
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
173 return 0;
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
174 }
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
175
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
176 /* Checks if supports autocenter. */
2521
7aa91c21ce5f Many typo and silly mistake fixes.
Edgar Simo <bobbens@gmail.com>
parents: 2520
diff changeset
177 ret = FFDeviceGetForceFeedbackProperty(device, FFPROP_AUTOCENTER,
2522
0877146be013 Now compiles cleanly (has yet to work though).
Edgar Simo <bobbens@gmail.com>
parents: 2521
diff changeset
178 &val, sizeof(val));
2520
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
179 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
180 else if (ret != FFERR_UNSUPPORTED) {
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
181 SDL_SetError("Haptic: Unable to get if device supports autocenter.");
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
182 return 0;
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
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
185 /* Always supported features. */
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
186 supported |= SDL_HAPTIC_STATUS;
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
187 return supported;
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
188 }
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
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 * 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
193 */
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
194 static int
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
195 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
196 {
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
197 /* Allocate the hwdata */
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
198 haptic->hwdata = (struct haptic_hwdata *)
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
199 SDL_malloc(sizeof(*haptic->hwdata));
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
200 if (haptic->hwdata == NULL) {
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
201 SDL_OutOfMemory();
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
202 goto creat_err;
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
203 }
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
204 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
205
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
206 /* Open the device */
2522
0877146be013 Now compiles cleanly (has yet to work though).
Edgar Simo <bobbens@gmail.com>
parents: 2521
diff changeset
207 if (FFCreateDevice( service, &haptic->hwdata->device ) != FF_OK) {
2520
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
208 SDL_SetError("Haptic: Unable to create device from service.");
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
209 goto creat_err;
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
210 }
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
211
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
212 /* Get supported features. */
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
213 haptic->supported = GetSupportedFeatures(haptic->hwdata->device,
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
214 &haptic->neffects, &haptic->nplaying);
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
215 if (haptic->supported == 0) { /* Error since device supports nothing. */
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
216 goto open_err;
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
217 }
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
218 haptic->effects = (struct haptic_effect *)
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
219 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
220 if (haptic->effects == NULL) {
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
221 SDL_OutOfMemory();
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
222 goto open_err;
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
223 }
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
224 /* Clear the memory */
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
225 SDL_memset(haptic->effects, 0,
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
226 sizeof(struct haptic_effect) * haptic->neffects);
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
227
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
228 return 0;
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
229
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
230 /* Error handling */
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
231 open_err:
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
232 FFReleaseDevice(haptic->hwdata->device);
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
233 creat_err:
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
234 if (haptic->hwdata != NULL) {
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
235 free(haptic->hwdata);
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
236 haptic->hwdata = NULL;
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
237 }
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
238 return -1;
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
239
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
240 }
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
241
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
242
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
243 /*
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
244 * Opens a haptic device for usage.
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
245 */
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
246 int
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
247 SDL_SYS_HapticOpen(SDL_Haptic * haptic)
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
248 {
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
249 return SDL_SYS_HapticOpenFromService(haptic,
2522
0877146be013 Now compiles cleanly (has yet to work though).
Edgar Simo <bobbens@gmail.com>
parents: 2521
diff changeset
250 SDL_hapticlist[haptic->index].dev);
2520
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
251 }
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
252
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
253
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
254 /*
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
255 * 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
256 */
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
257 int
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
258 SDL_SYS_HapticMouse(void)
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
259 {
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
260 return -1;
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
261 }
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
262
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
263
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
264 /*
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
265 * 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
266 */
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
267 int
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
268 SDL_SYS_JoystickIsHaptic(SDL_Joystick * joystick)
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
269 {
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
270 return SDL_FALSE;
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
271 }
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
272
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
273
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
274 /*
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
275 * 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
276 */
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
277 int
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
278 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
279 {
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
280 if (SDL_strcmp(joystick->name,haptic->name)==0) {
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
281 return 1;
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 return 0;
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
284 }
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
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
287 /*
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
288 * 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
289 */
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
290 int
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
291 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
292 {
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
293 return -1;
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
294 }
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
295
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
296
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
297 /*
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
298 * Closes the haptic device.
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 void
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
301 SDL_SYS_HapticClose(SDL_Haptic * haptic)
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
302 {
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
303 int i;
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
304
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
305 if (haptic->hwdata) {
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
306
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
307 /* Clean up */
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
308 FFReleaseDevice(haptic->hwdata->device);
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
309
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
310 /* Free */
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
311 SDL_free(haptic->hwdata);
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
312 haptic->hwdata = NULL;
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
313 for (i=0; i<haptic->neffects; i++) {
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
314 if (haptic->effects[i].hweffect != NULL)
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
315 SDL_free(haptic->effects[i].hweffect->effect.lpvTypeSpecificParams);
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
316 }
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
317 SDL_free(haptic->effects);
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
318 haptic->neffects = 0;
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 }
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
321
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
322
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
323 /*
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
324 * 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
325 */
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
326 void
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
327 SDL_SYS_HapticQuit(void)
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 int i;
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
330
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
331 for (i=0; i < SDL_numhaptics; i++) {
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
332 IOObjectRelease(SDL_hapticlist[i].dev);
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
333 /* TODO free effects. */
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
334 }
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
335 }
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
336
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
337
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 * Sets the direction.
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
340 */
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
341 static int
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
342 SDL_SYS_SetDirection( FFEFFECT * effect, SDL_HapticDirection *dir, int axes )
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
343 {
2521
7aa91c21ce5f Many typo and silly mistake fixes.
Edgar Simo <bobbens@gmail.com>
parents: 2520
diff changeset
344 LONG *rglDir;
2520
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
345 dir = SDL_malloc( sizeof(LONG) * axes );
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
346 if (dir == NULL) {
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
347 SDL_OutOfMemory();
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
348 return -1;
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
349 }
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
350 SDL_memset( dir, 0, sizeof(LONG) * axes );
2521
7aa91c21ce5f Many typo and silly mistake fixes.
Edgar Simo <bobbens@gmail.com>
parents: 2520
diff changeset
351 effect->rglDirection = rglDir;
2520
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 switch (dir->type) {
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
354 case SDL_HAPTIC_POLAR:
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
355 effect->dwFlags |= FFEFF_POLAR;
2521
7aa91c21ce5f Many typo and silly mistake fixes.
Edgar Simo <bobbens@gmail.com>
parents: 2520
diff changeset
356 rglDir[0] = dir->dir[0];
2520
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
357 return 0;
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
358 case SDL_HAPTIC_CARTESIAN:
2522
0877146be013 Now compiles cleanly (has yet to work though).
Edgar Simo <bobbens@gmail.com>
parents: 2521
diff changeset
359 effect->dwFlags |= FFEFF_CARTESIAN;
2521
7aa91c21ce5f Many typo and silly mistake fixes.
Edgar Simo <bobbens@gmail.com>
parents: 2520
diff changeset
360 rglDir[0] = dir->dir[0];
7aa91c21ce5f Many typo and silly mistake fixes.
Edgar Simo <bobbens@gmail.com>
parents: 2520
diff changeset
361 rglDir[1] = dir->dir[1];
7aa91c21ce5f Many typo and silly mistake fixes.
Edgar Simo <bobbens@gmail.com>
parents: 2520
diff changeset
362 rglDir[2] = dir->dir[2];
2520
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
363 return 0;
2521
7aa91c21ce5f Many typo and silly mistake fixes.
Edgar Simo <bobbens@gmail.com>
parents: 2520
diff changeset
364 case SDL_HAPTIC_SPHERICAL:
2522
0877146be013 Now compiles cleanly (has yet to work though).
Edgar Simo <bobbens@gmail.com>
parents: 2521
diff changeset
365 effect->dwFlags |= FFEFF_SPHERICAL;
2521
7aa91c21ce5f Many typo and silly mistake fixes.
Edgar Simo <bobbens@gmail.com>
parents: 2520
diff changeset
366 rglDir[0] = dir->dir[0];
7aa91c21ce5f Many typo and silly mistake fixes.
Edgar Simo <bobbens@gmail.com>
parents: 2520
diff changeset
367 rglDir[1] = dir->dir[1];
7aa91c21ce5f Many typo and silly mistake fixes.
Edgar Simo <bobbens@gmail.com>
parents: 2520
diff changeset
368 rglDir[2] = dir->dir[2];
2520
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
369 return 0;
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
370
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
371 default:
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
372 SDL_SetError("Haptic: Unknown direction type.");
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
373 return -1;
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
374 }
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
375 }
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
376
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
377 #define CONVERT(x) (((x)*10000) / 0xFFFF )
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 * Creates the FFStruct
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
380 */
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
381 static int
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
382 SDL_SYS_ToFFEFFECT( FFEFFECT * dest, SDL_HapticEffect * src )
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
383 {
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
384 FFCONSTANTFORCE *constant;
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
385 FFPERIODIC *periodic;
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
386 FFCONDITION *condition;
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
387 FFRAMPFORCE *ramp;
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
388 FFCUSTOMFORCE *custom;
2522
0877146be013 Now compiles cleanly (has yet to work though).
Edgar Simo <bobbens@gmail.com>
parents: 2521
diff changeset
389 FFENVELOPE *envelope;
2520
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
390 SDL_HapticConstant *hap_constant;
2521
7aa91c21ce5f Many typo and silly mistake fixes.
Edgar Simo <bobbens@gmail.com>
parents: 2520
diff changeset
391 SDL_HapticPeriodic *hap_periodic;
2520
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
392 SDL_HapticCondition *hap_condition;
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
393 SDL_HapticRamp *hap_ramp;
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
394
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
395 /* Set global stuff. */
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
396 SDL_memset(dest, 0, sizeof(FFEFFECT));
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
397 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
398 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
399 dest->dwGain = 10000; /* Gain is set globally, not locally. */
2522
0877146be013 Now compiles cleanly (has yet to work though).
Edgar Simo <bobbens@gmail.com>
parents: 2521
diff changeset
400
0877146be013 Now compiles cleanly (has yet to work though).
Edgar Simo <bobbens@gmail.com>
parents: 2521
diff changeset
401 /* Envelope. */
0877146be013 Now compiles cleanly (has yet to work though).
Edgar Simo <bobbens@gmail.com>
parents: 2521
diff changeset
402 envelope = SDL_malloc( sizeof(FFENVELOPE) );
0877146be013 Now compiles cleanly (has yet to work though).
Edgar Simo <bobbens@gmail.com>
parents: 2521
diff changeset
403 if (envelope == NULL) {
0877146be013 Now compiles cleanly (has yet to work though).
Edgar Simo <bobbens@gmail.com>
parents: 2521
diff changeset
404 SDL_OutOfMemory();
0877146be013 Now compiles cleanly (has yet to work though).
Edgar Simo <bobbens@gmail.com>
parents: 2521
diff changeset
405 return -1;
0877146be013 Now compiles cleanly (has yet to work though).
Edgar Simo <bobbens@gmail.com>
parents: 2521
diff changeset
406 }
0877146be013 Now compiles cleanly (has yet to work though).
Edgar Simo <bobbens@gmail.com>
parents: 2521
diff changeset
407 SDL_memset(envelope, 0, sizeof(FFENVELOPE));
0877146be013 Now compiles cleanly (has yet to work though).
Edgar Simo <bobbens@gmail.com>
parents: 2521
diff changeset
408 dest->lpEnvelope = envelope;
0877146be013 Now compiles cleanly (has yet to work though).
Edgar Simo <bobbens@gmail.com>
parents: 2521
diff changeset
409 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
410
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
411 switch (src->type) {
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
412 case SDL_HAPTIC_CONSTANT:
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
413 hap_constant = &src->constant;
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
414 constant = SDL_malloc( sizeof(FFCONSTANTFORCE) );
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
415
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
416 /* Specifics */
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
417 constant->lMagnitude = CONVERT(hap_constant->level);
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
418 dest->cbTypeSpecificParams = sizeof(FFCONSTANTFORCE);
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
419 dest->lpvTypeSpecificParams = constant;
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
420
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
421 /* Generics */
2521
7aa91c21ce5f Many typo and silly mistake fixes.
Edgar Simo <bobbens@gmail.com>
parents: 2520
diff changeset
422 dest->dwDuration = hap_constant->length * 1000; /* In microseconds. */
2520
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
423 dest->dwTriggerButton = FFJOFS_BUTTON(hap_constant->button);
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
424 dest->dwTriggerRepeatInterval = hap_constant->interval;
2521
7aa91c21ce5f Many typo and silly mistake fixes.
Edgar Simo <bobbens@gmail.com>
parents: 2520
diff changeset
425 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
426
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
427 /* Axes */
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
428 dest->cAxes = 2; /* TODO handle */
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
429 dest->rgdwAxes = 0;
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 /* Direction. */
2522
0877146be013 Now compiles cleanly (has yet to work though).
Edgar Simo <bobbens@gmail.com>
parents: 2521
diff changeset
432 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
433 return -1;
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
434 }
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
435
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
436 /* Envelope */
2522
0877146be013 Now compiles cleanly (has yet to work though).
Edgar Simo <bobbens@gmail.com>
parents: 2521
diff changeset
437 envelope->dwAttackLevel = CONVERT(hap_constant->attack_level);
0877146be013 Now compiles cleanly (has yet to work though).
Edgar Simo <bobbens@gmail.com>
parents: 2521
diff changeset
438 envelope->dwAttackTime = hap_constant->attack_length * 1000;
0877146be013 Now compiles cleanly (has yet to work though).
Edgar Simo <bobbens@gmail.com>
parents: 2521
diff changeset
439 envelope->dwFadeLevel = CONVERT(hap_constant->fade_level);
0877146be013 Now compiles cleanly (has yet to work though).
Edgar Simo <bobbens@gmail.com>
parents: 2521
diff changeset
440 envelope->dwFadeTime = hap_constant->fade_length * 1000;
2520
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 break;
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
443
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
444 /* TODO finish */
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
445
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
446 case SDL_HAPTIC_SINE:
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
447 case SDL_HAPTIC_SQUARE:
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
448 case SDL_HAPTIC_TRIANGLE:
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
449 case SDL_HAPTIC_SAWTOOTHUP:
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
450 case SDL_HAPTIC_SAWTOOTHDOWN:
2522
0877146be013 Now compiles cleanly (has yet to work though).
Edgar Simo <bobbens@gmail.com>
parents: 2521
diff changeset
451 hap_periodic = &src->periodic;
2520
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
452
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
453 break;
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
454
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
455 case SDL_HAPTIC_SPRING:
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
456 case SDL_HAPTIC_DAMPER:
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
457 case SDL_HAPTIC_INERTIA:
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
458 case SDL_HAPTIC_FRICTION:
2522
0877146be013 Now compiles cleanly (has yet to work though).
Edgar Simo <bobbens@gmail.com>
parents: 2521
diff changeset
459 hap_condition = &src->condition;
2520
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 break;
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
462
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
463 case SDL_HAPTIC_RAMP:
2522
0877146be013 Now compiles cleanly (has yet to work though).
Edgar Simo <bobbens@gmail.com>
parents: 2521
diff changeset
464 hap_ramp = &src->ramp;
2520
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
465
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
466 break;
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
467
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
468
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
469 default:
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
470 SDL_SetError("Haptic: Unknown effect type.");
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
471 return -1;
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 return 0;
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
475 }
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
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
478 /*
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
479 * 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
480 */
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
481 CFUUIDRef SDL_SYS_HapticEffectType(struct haptic_effect * effect)
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
482 {
2521
7aa91c21ce5f Many typo and silly mistake fixes.
Edgar Simo <bobbens@gmail.com>
parents: 2520
diff changeset
483 switch (effect->effect.type) {
2520
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
484 case SDL_HAPTIC_CONSTANT:
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
485 return kFFEffectType_ConstantForce_ID;
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
486
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
487 case SDL_HAPTIC_RAMP:
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
488 return kFFEffectType_RampForce_ID;
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
489
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
490 case SDL_HAPTIC_SQUARE:
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
491 return kFFEffectType_Square_ID;
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
492
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
493 case SDL_HAPTIC_SINE:
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
494 return kFFEffectType_Sine_ID;
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
495
2521
7aa91c21ce5f Many typo and silly mistake fixes.
Edgar Simo <bobbens@gmail.com>
parents: 2520
diff changeset
496 case SDL_HAPTIC_TRIANGLE:
2520
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
497 return kFFEffectType_Triangle_ID;
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
498
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
499 case SDL_HAPTIC_SAWTOOTHUP:
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
500 return kFFEffectType_SawtoothUp_ID;
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
501
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
502 case SDL_HAPTIC_SAWTOOTHDOWN:
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
503 return kFFEffectType_SawtoothDown_ID;
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 case SDL_HAPTIC_SPRING:
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
506 return kFFEffectType_Spring_ID;
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 case SDL_HAPTIC_DAMPER:
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
509 return kFFEffectType_Damper_ID;
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 case SDL_HAPTIC_INERTIA:
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
512 return kFFEffectType_Inertia_ID;
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 case SDL_HAPTIC_FRICTION:
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
515 return kFFEffectType_Friction_ID;
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
516
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
517 case SDL_HAPTIC_CUSTOM:
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
518 return kFFEffectType_CustomForce_ID;
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
519
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
520 default:
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
521 SDL_SetError("Haptic: Unknown effect type.");
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
522 return NULL;
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
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
527 /*
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
528 * Creates a new haptic effect.
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
529 */
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
530 int
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
531 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
532 SDL_HapticEffect * base)
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
533 {
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
534 HRESULT ret;
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
535 CFUUIDRef type;
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
536
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
537 /* Alloc the effect. */
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
538 effect->hweffect = (struct haptic_hweffect *)
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
539 SDL_malloc(sizeof(struct haptic_hweffect));
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
540 if (effect->hweffect == NULL) {
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
541 SDL_OutOfMemory();
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
542 return -1;
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
543 }
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
544
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
545 /* Get the type. */
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
546 type = SDL_SYS_HapticEffectType(effect);
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
547 if (type == NULL) {
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
548 SDL_free(effect->hweffect);
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
549 effect->hweffect = NULL;
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
550 return -1;
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
551 }
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
552
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
553 /* Get the effect. */
2521
7aa91c21ce5f Many typo and silly mistake fixes.
Edgar Simo <bobbens@gmail.com>
parents: 2520
diff changeset
554 if (SDL_SYS_ToFFEFFECT( &effect->hweffect->effect, &effect->effect ) < 0) {
2520
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
555 /* TODO cleanup alloced stuff. */
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
556 return -1;
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
557 }
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
558
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
559 ret = FFDeviceCreateEffect( haptic->hwdata->device, type,
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
560 &effect->hweffect->effect, &effect->hweffect->ref );
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
561 }
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
562
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
563
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
564 /*
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
565 * Updates an effect.
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
566 */
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
567 int SDL_SYS_HapticUpdateEffect(SDL_Haptic * haptic,
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
568 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
569 {
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
570 /* TODO */
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
571 return -1;
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
572 }
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
573
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
574
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
575 /*
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
576 * Runs an effect.
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
577 */
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
578 int
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
579 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
580 Uint32 iterations)
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
581 {
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
582 HRESULT ret;
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
583 Uint32 iter;
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
584
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
585 /* Check if it's infinite. */
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
586 if (iterations == SDL_HAPTIC_INFINITY) {
2521
7aa91c21ce5f Many typo and silly mistake fixes.
Edgar Simo <bobbens@gmail.com>
parents: 2520
diff changeset
587 iter = FF_INFINITE;
2520
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
588 }
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
589 else
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
590 iter = iterations;
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
591
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
592 /* Run the effect. */
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
593 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
594 if (ret != FF_OK) {
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
595 SDL_SetError("Haptic: Unable to run the effect.");
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
596 return -1;
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
597 }
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
598
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
599 return 0;
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
600 }
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
601
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
602
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 * Stops an effect.
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
605 */
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
606 int
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
607 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
608 {
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
609 HRESULT ret;
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
610
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
611 ret = FFEffectStop(effect->hweffect->ref);
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
612 if (ret != FF_OK) {
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
613 SDL_SetError("Haptic: Unable to stop the effect.");
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
614 return -1;
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
615 }
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
616
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
617 return 0;
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
618 }
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
619
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 /*
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
622 * Frees the effect.
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
623 */
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
624 void
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
625 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
626 {
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
627 HRESULT ret;
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
628
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
629 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
630 if (ret != FF_OK) {
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
631 SDL_SetError("Haptic: Error removing the effect from the device.");
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
632 }
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
633 SDL_free(effect->hweffect->effect.lpvTypeSpecificParams);
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
634 effect->hweffect->effect.lpvTypeSpecificParams = NULL;
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
635 SDL_free(effect->hweffect);
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
636 effect->hweffect = NULL;
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
637 }
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
638
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
639
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
640 /*
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
641 * 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
642 */
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
643 int
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
644 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
645 {
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
646 HRESULT ret;
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
647 FFEffectStatusFlag status;
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
648
2521
7aa91c21ce5f Many typo and silly mistake fixes.
Edgar Simo <bobbens@gmail.com>
parents: 2520
diff changeset
649 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
650 if (ret != FF_OK) {
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
651 SDL_SetError("Haptic: Unable to get effect status.");
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
652 return -1;
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
653 }
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
654
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
655 if (status == 0) return SDL_FALSE;
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
656 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
657 }
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
658
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
659
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
660 /*
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
661 * Sets the gain.
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
662 */
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
663 int
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
664 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
665 {
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
666 HRESULT ret;
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
667 Uint32 val;
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
668
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
669 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
670 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
671 if (ret != FF_OK) {
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
672 SDL_SetError("Haptic: Error setting gain.");
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
673 return -1;
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
674 }
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
675
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
676 return 0;
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
677 }
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
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
680 /*
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
681 * Sets the autocentering.
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 int
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
684 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
685 {
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
686 HRESULT ret;
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
687 Uint32 val;
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
688
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
689 /* 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
690 if (autocenter == 0) val = 0;
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
691 else val = 1;
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
692
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
693 ret = FFDeviceSetForceFeedbackProperty(haptic->hwdata->device,
2521
7aa91c21ce5f Many typo and silly mistake fixes.
Edgar Simo <bobbens@gmail.com>
parents: 2520
diff changeset
694 FFPROP_AUTOCENTER, &val);
2520
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
695 if (ret != FF_OK) {
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
696 SDL_SetError("Haptic: Error setting autocenter.");
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
697 return -1;
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
698 }
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
699
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
700 return 0;
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
701
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
702 }
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
703
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
704
6aee9eb4fc6d Adding initial darwin port of haptic subsystem - broken atm.
Edgar Simo <bobbens@gmail.com>
parents:
diff changeset
705 #endif /* SDL_HAPTIC_LINUX */