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

Latest commit

 

History

History
291 lines (242 loc) · 7.81 KB

SDL_haptic.h

File metadata and controls

291 lines (242 loc) · 7.81 KB
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
/*
SDL - Simple DirectMedia Layer
Copyright (C) 2008 Edgar Simo
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) any later version.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with this library; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
Sam Lantinga
slouken@libsdl.org
*/
/**
* \file SDL_haptic.h
*
* Include file for SDL haptic subsystem
*/
#ifndef _SDL_haptic_h
#define _SDL_haptic_h
#include "SDL_stdinc.h"
#include "SDL_error.h"
#include "begin_code.h"
/* Set up for C function definitions, even when using C++ */
#ifdef __cplusplus
/* *INDENT-OFF* */
extern "C" {
/* *INDENT-ON* */
#endif
/* The haptic structure used to identify an SDL haptic */
struct _SDL_Haptic;
typedef struct _SDL_Haptic SDL_Haptic;
/* Different effects that can be generated */
#define SDL_HAPTIC_CONSTANT (1<<0)
Jul 1, 2008
Jul 1, 2008
50
51
52
53
54
55
56
57
58
59
60
61
62
63
#define SDL_HAPTIC_SINE (1<<1)
#define SDL_HAPTIC_SQUARE (1<<2)
#define SDL_HAPTIC_TRIANGLE (1<<3)
#define SDL_HAPTIC_SAWTOOTHUP (1<<4)
#define SDL_HAPTIC_SAWTOOTHDOWN (1<<5)
#define SDL_HAPTIC_RAMP (1<<6)
#define SDL_HAPTIC_SPRING (1<<7)
#define SDL_HAPTIC_FRICTION (1<<8)
#define SDL_HAPTIC_DAMPER (1<<9)
#define SDL_HAPTIC_INERTIA (1<<10)
#define SDL_HAPTIC_CUSTOM (1<<11)
/* These last two are features the device has, not effects */
#define SDL_HAPTIC_GAIN (1<<12)
#define SDL_HAPTIC_AUTOCENTER (1<<13)
Jul 1, 2008
Jul 1, 2008
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
/*
* All values max at 32767 (0x7fff). Signed values also can be negative.
* Time values unless specified otherwise are in milliseconds.
*
* Common parts:
*
* Replay:
* Uint16 length; Duration of effect.
* Uint16 delay; Delay before starting effect.
*
* Trigger:
* Uint16 button; Button that triggers effect.
* Uint16 interval; How soon before effect can be triggered again.
*
* Envelope:
* Uint16 attack_length; Duration of the attack.
* Uint16 attack_level; Level at the start of the attack.
* Uint16 fade_length; Duration of the fade out.
* Uint16 fade_level; Level at the end of the fade.
*/
Jun 30, 2008
Jun 30, 2008
86
87
typedef struct SDL_HapticConstant {
/* Header */
Jul 1, 2008
Jul 1, 2008
88
Uint16 type; /* SDL_HAPTIC_CONSTANT */
Jul 1, 2008
Jul 1, 2008
89
90
91
Uint16 direction;
/* Replay */
Jun 30, 2008
Jun 30, 2008
92
93
Uint16 length;
Uint16 delay;
Jul 1, 2008
Jul 1, 2008
94
95
96
97
98
99
/* Trigger */
Uint16 button;
Uint16 interval;
/* Constant */
Jul 1, 2008
Jul 1, 2008
100
Sint16 level; /* Strength of the constant effect. */
Jul 1, 2008
Jul 1, 2008
101
102
103
104
105
106
/* Envelope */
Uint16 attack_length;
Uint16 attack_level;
Uint16 fade_length;
Uint16 fade_level;
Jun 30, 2008
Jun 30, 2008
107
} SDL_HapticConstant;
Jul 1, 2008
Jul 1, 2008
108
109
typedef struct SDL_HapticPeriodic {
/* Header */
Jul 1, 2008
Jul 1, 2008
110
Uint16 type; /* SDL_HAPTIC_{SINE,SQUARE,TRIANGLE,SAWTOOTHUP,SAWTOOTHDOWN} */
Jul 1, 2008
Jul 1, 2008
111
112
113
114
115
116
117
118
119
120
121
Uint16 direction;
/* Replay */
Uint16 length;
Uint16 delay;
/* Trigger */
Uint16 button;
Uint16 interval;
/* Periodic */
Jul 1, 2008
Jul 1, 2008
122
123
124
125
Uint16 period; /* Period of the wave */
Sint16 magnitude; /* Peak value */
Sint16 offset; /* Mean value of the wave */
Uint16 phase; /* Horizontal shift */
Jul 1, 2008
Jul 1, 2008
126
127
128
129
130
131
132
/* Envelope */
Uint16 attack_length;
Uint16 attack_level;
Uint16 fade_length;
Uint16 fade_level;
} SDL_HapticPeriodic;
Jul 1, 2008
Jul 1, 2008
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
typedef struct SDL_HapticCondition {
/* Header */
Uint16 type; /* SDL_HAPTIC_{SPRING,DAMPER,INERTIA,FRICTION} */
Uint16 direction;
/* Replay */
Uint16 length;
Uint16 delay;
/* Trigger */
Uint16 button;
Uint16 interval;
/* Condition */
Uint16 right_sat; /* Level when joystick is to the right. */
Uint16 left_sat; /* Level when joystick is to the left */
Sint16 right_coeff; /* How fast to increase the force towards the right */
Sint16 left_coeff; /* How fast to increase the force towards the left */
Uint16 deadband; /* Size of the dead zone */
Sint16 center; /* Position of the dead zone */
} SDL_HapticCondition;
typedef struct SDL_HapticRamp {
/* Header */
Uint16 type; /* SDL_HAPTIC_RAMP */
Uint16 direction;
/* Replay */
Uint16 length;
Uint16 delay;
/* Trigger */
Uint16 button;
Uint16 interval;
/* Ramp */
Sint16 start;
Sint16 end;
/* Envelope */
Uint16 attack_length;
Uint16 attack_level;
Uint16 fade_length;
Uint16 fade_level;
} SDL_HapticRamp;
Jun 30, 2008
Jun 30, 2008
177
178
179
180
181
typedef union SDL_HapticEffect {
/* Common for all force feedback effects */
Uint16 type; /* Effect type */
SDL_HapticConstant constant; /* Constant effect */
Jul 1, 2008
Jul 1, 2008
182
SDL_HapticPeriodic periodic; /* Periodic effect */
Jul 1, 2008
Jul 1, 2008
183
184
SDL_HapticCondition condition; /* Condition effect */
SDL_HapticRamp ramp; /* Ramp effect */
Jun 30, 2008
Jun 30, 2008
185
186
} SDL_HapticEffect;
187
188
189
190
191
192
193
194
/* Function prototypes */
/*
* Count the number of joysticks attached to the system
*/
extern DECLSPEC int SDLCALL SDL_NumHaptics(void);
/*
Jun 23, 2008
Jun 23, 2008
195
* Get the implementation dependent name of a Haptic device.
196
197
198
199
200
* This can be called before any joysticks are opened.
* If no name can be found, this function returns NULL.
*/
extern DECLSPEC const char *SDLCALL SDL_HapticName(int device_index);
Jun 23, 2008
Jun 23, 2008
201
202
203
204
205
206
207
208
209
210
211
212
213
214
/*
* Opens a Haptic device for usage - the index passed as an
* argument refers to the N'th Haptic device on this system.
*
* This function returns a Haptic device identifier, or Null
* if an error occurred.
*/
extern DECLSPEC SDL_Haptic * SDL_HapticOpen(int device_index);
/*
* Closes a Haptic device previously opened with SDL_HapticOpen.
*/
extern DECLSPEC void SDL_HapticClose(SDL_Haptic * haptic);
Jun 30, 2008
Jun 30, 2008
215
216
217
218
219
220
221
222
223
224
225
226
227
/*
* Returns the number of effects a haptic device can store.
*/
extern DECLSPEC int SDL_HapticNumEffects(SDL_Haptic * haptic);
/*
* Returns the supported effects. Individual effects can be queried by
* bitwise operators.
*
* Example: (SDL_HapticQueryEffects(haptic) & SDL_HAPTIC_CONSTANT)
*/
extern DECLSPEC unsigned int SDL_HapticQueryEffects(SDL_Haptic * haptic);
Jul 1, 2008
Jul 1, 2008
228
229
230
231
232
233
234
235
/*
* Checks to see if effect is supported by haptic.
*
* Returns SDL_TRUE if effect is supported, SDL_FALSE if it isn't and -1
* on error.
*/
extern DECLSPEC int SDL_HapticEffectSupported(SDL_Haptic * haptic, SDL_HapticEffect * effect);
Jun 30, 2008
Jun 30, 2008
236
237
/*
* Creates a new haptic effect on the device.
Jul 1, 2008
Jul 1, 2008
238
239
*
* Returns the id of the effect on success, -1 on failure.
Jun 30, 2008
Jun 30, 2008
240
241
242
243
244
*/
extern DECLSPEC int SDL_HapticNewEffect(SDL_Haptic * haptic, SDL_HapticEffect * effect);
/*
* Runs the haptic effect on it's assosciated haptic device.
Jul 1, 2008
Jul 1, 2008
245
246
*
* Returns 0 on success or -1 on failure.
Jun 30, 2008
Jun 30, 2008
247
248
249
250
*/
extern DECLSPEC int SDL_HapticRunEffect(SDL_Haptic * haptic, int effect);
/*
Jul 1, 2008
Jul 1, 2008
251
252
253
254
255
256
257
258
259
* Stops the haptic effect on it's assosciated haptic device.
*
* Returns 0 on success or -1 on failure.
*/
extern DECLSPEC int SDL_HapticStopEffect(SDL_Haptic * haptic, int effect);
/*
* Destroys a haptic effect on the device. This will stop the effect if it's
* running.
Jun 30, 2008
Jun 30, 2008
260
261
262
*/
extern DECLSPEC void SDL_HapticDestroyEffect(SDL_Haptic * haptic, int effect);
Jul 1, 2008
Jul 1, 2008
263
264
265
266
267
268
269
/*
* Sets the global gain of the device. Gain should be between 0 and 100.
*
* Returns 0 on success or -1 on failure.
*/
extern DECLSPEC int SDL_HapticSetGain(SDL_Haptic * haptic, int gain);
Jul 1, 2008
Jul 1, 2008
270
271
272
273
274
275
276
277
/*
* Sets the global autocenter of the device. Autocenter should be between
* 0 and 100. Setting it to 0 will disable autocentering.
*
* Returns 0 on success or -1 on failure.
*/
extern DECLSPEC int SDL_HapticSetAutocenter(SDL_Haptic * haptic, int autocenter);
278
279
280
281
282
283
284
285
286
287
288
289
/* Ends C function definitions when using C++ */
#ifdef __cplusplus
/* *INDENT-OFF* */
}
/* *INDENT-ON* */
#endif
#include "close_code.h"
#endif /* _SDL_haptic_h */
/* vi: set ts=4 sw=4 expandtab: */