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

Latest commit

 

History

History
1137 lines (1065 loc) · 35.3 KB

SDL_haptic.h

File metadata and controls

1137 lines (1065 loc) · 35.3 KB
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/*
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
*/
/**
Jul 6, 2008
Jul 6, 2008
24
* \file SDL_haptic.h
Jul 6, 2008
Jul 6, 2008
26
* \brief The SDL Haptic subsystem allows you to control haptic (force feedback)
Jul 6, 2008
Jul 6, 2008
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
* devices.
*
* The basic usage is as follows:
* - Initialize the Subsystem (SDL_INIT_HAPTIC).
* - Open a Haptic Device.
* - SDL_HapticOpen(...) to open from index.
* - SDL_HapticOpenFromJoystick(...) to open from an existing joystick.
* - Create an effect (SDL_HapticEffect).
* - Upload the effect with SDL_HapticNewEffect(...).
* - Run the effect with SDL_HapticRunEffect(...).
* - (optional) Free the effect with SDL_HapticDestroyEffect(...).
* - Close the haptic device with SDL_HapticClose(...).
*
* Example:
*
* \code
* int test_haptic( SDL_Joystick * joystick ) {
* SDL_Haptic *haptic;
* SDL_HapticEffect effect;
* int effect_id;
*
* // Open the device
* haptic = SDL_HapticOpenFromJoystick( joystick );
* if (haptic == NULL) return -1; // Most likely joystick isn't haptic
*
* // See if it can do sine waves
Jul 7, 2008
Jul 7, 2008
53
* if ((SDL_HapticQuery(haptic) & SDL_HAPTIC_SINE)==0) {
Jul 6, 2008
Jul 6, 2008
54
55
56
57
58
59
60
* SDL_HapticClose(haptic); // No sine effect
* return -1;
* }
*
* // Create the effect
* memset( &effect, 0, sizeof(SDL_HapticEffect) ); // 0 is safe default
* effect.type = SDL_HAPTIC_SINE;
Jul 6, 2008
Jul 6, 2008
61
* effect.periodic.direction.type = SDL_HAPTIC_POLAR; // Polar coordinates
Jul 7, 2008
Jul 7, 2008
62
* effect.periodic.direction.dir[0] = 18000; // Force comes from south
Jul 6, 2008
Jul 6, 2008
63
64
65
66
67
68
69
70
71
72
* effect.periodic.period = 1000; // 1000 ms
* effect.periodic.magnitude = 20000; // 20000/32767 strength
* effect.periodic.length = 5000; // 5 seconds long
* effect.periodic.attack_length = 1000; // Takes 1 second to get max strength
* effect.periodic.fade_length = 1000; // Takes 1 second to fade away
*
* // Upload the effect
* effect_id = SDL_HapticNewEffect( haptic, &effect );
*
* // Test the effect
Jul 10, 2008
Jul 10, 2008
73
* SDL_HapticRunEffect( haptic, effect_id, 1 );
Jul 6, 2008
Jul 6, 2008
74
75
76
77
78
79
80
81
82
83
84
85
86
* SDL_Delay( 5000); // Wait for the effect to finish
*
* // We destroy the effect, although closing the device also does this
* SDL_HapticDestroyEffect( haptic, effect_id );
*
* // Close the device
* SDL_HapticClose(haptic);
*
* return 0; // Success
* }
* \endcode
*
* \author Edgar Simo Serra
87
88
89
90
91
92
93
*/
#ifndef _SDL_haptic_h
#define _SDL_haptic_h
#include "SDL_stdinc.h"
#include "SDL_error.h"
Jul 2, 2008
Jul 2, 2008
94
#include "SDL_joystick.h"
95
96
97
98
99
100
101
#include "begin_code.h"
/* Set up for C function definitions, even when using C++ */
#ifdef __cplusplus
/* *INDENT-OFF* */
extern "C" {
/* *INDENT-ON* */
Jul 7, 2008
Jul 7, 2008
102
#endif /* __cplusplus */
Jul 6, 2008
Jul 6, 2008
104
/**
Jul 6, 2008
Jul 6, 2008
105
* \typedef SDL_Haptic
Jul 6, 2008
Jul 6, 2008
106
107
108
109
110
111
112
*
* \brief The haptic structure used to identify an SDL haptic.
*
* \sa SDL_HapticOpen
* \sa SDL_HapticOpenFromJoystick
* \sa SDL_HapticClose
*/
113
114
115
116
struct _SDL_Haptic;
typedef struct _SDL_Haptic SDL_Haptic;
Jul 3, 2008
Jul 3, 2008
117
118
119
/*
* Different haptic features a device can have.
*/
Jul 6, 2008
Jul 6, 2008
120
121
122
123
124
125
126
/**
* \def SDL_HAPTIC_CONSTANT
*
* \brief Constant haptic effect.
*
* \sa SDL_HapticCondition
*/
Jul 3, 2008
Jul 3, 2008
127
#define SDL_HAPTIC_CONSTANT (1<<0) /* Constant effect supported */
Jul 6, 2008
Jul 6, 2008
128
129
130
131
132
133
134
/**
* \def SDL_HAPTIC_SINE
*
* \brief Periodic haptic effect that simulates sine waves.
*
* \sa SDL_HapticPeriodic
*/
Jul 3, 2008
Jul 3, 2008
135
#define SDL_HAPTIC_SINE (1<<1) /* Sine wave effect supported */
Jul 6, 2008
Jul 6, 2008
136
137
138
139
/**
* \def SDL_HAPTIC_SQUARE
*
* \brief Periodic haptic effect that simulates square waves.
Jul 6, 2008
Jul 6, 2008
140
*
Jul 6, 2008
Jul 6, 2008
141
142
* \sa SDL_HapticPeriodic
*/
Jul 3, 2008
Jul 3, 2008
143
#define SDL_HAPTIC_SQUARE (1<<2) /* Square wave effect supported */
Jul 6, 2008
Jul 6, 2008
144
145
146
147
148
149
150
/**
* \def SDL_HAPTIC_TRIANGLE
*
* \brief Periodic haptic effect that simulates triangular waves.
*
* \sa SDL_HapticPeriodic
*/
Jul 3, 2008
Jul 3, 2008
151
#define SDL_HAPTIC_TRIANGLE (1<<3) /* Triangle wave effect supported */
Jul 6, 2008
Jul 6, 2008
152
153
154
155
156
157
158
/**
* \def SDL_HAPTIC_SAWTOOTHUP
*
* \brief Periodic haptic effect that simulates saw tooth up waves.
*
* \sa SDL_HapticPeriodic
*/
Jul 3, 2008
Jul 3, 2008
159
#define SDL_HAPTIC_SAWTOOTHUP (1<<4) /* Sawtoothup wave effect supported */
Jul 6, 2008
Jul 6, 2008
160
161
162
163
164
165
166
/**
* \def SDL_HAPTIC_SAWTOOTHDOWN
*
* \brief Periodic haptic effect that simulates saw tooth down waves.
*
* \sa SDL_HapticPeriodic
*/
Jul 3, 2008
Jul 3, 2008
167
#define SDL_HAPTIC_SAWTOOTHDOWN (1<<5) /* Sawtoothdown wave effect supported */
Jul 6, 2008
Jul 6, 2008
168
169
170
171
172
173
174
/**
* \def SDL_HAPTIC_RAMP
*
* \brief Ramp haptic effect.
*
* \sa SDL_HapticRamp
*/
Jul 3, 2008
Jul 3, 2008
175
#define SDL_HAPTIC_RAMP (1<<6) /* Ramp effect supported */
Jul 6, 2008
Jul 6, 2008
176
177
178
179
180
181
182
183
/**
* \def SDL_HAPTIC_SPRING
*
* \brief Condition haptic effect that simulates a spring. Effect is based on the
* axes position.
*
* \sa SDL_HapticCondition
*/
Jul 3, 2008
Jul 3, 2008
184
#define SDL_HAPTIC_SPRING (1<<7) /* Spring effect supported - uses axes position */
Jul 6, 2008
Jul 6, 2008
185
186
187
188
189
190
191
192
/**
* \def SDL_HAPTIC_DAMPER
*
* \brief Condition haptic effect that simulates dampening. Effect is based on the
* axes velocity.
*
* \sa SDL_HapticCondition
*/
Jul 3, 2008
Jul 3, 2008
193
#define SDL_HAPTIC_DAMPER (1<<8) /* Damper effect supported - uses axes velocity */
Jul 6, 2008
Jul 6, 2008
194
195
196
197
198
199
200
201
/**
* \def SDL_HAPTIC_INERTIA
*
* \brief Condition haptic effect that simulates inertia. Effect is based on the axes
* acceleration.
*
* \sa SDL_HapticCondition
*/
Jul 3, 2008
Jul 3, 2008
202
#define SDL_HAPTIC_INERTIA (1<<9) /* Inertia effect supported - uses axes acceleration */
Jul 6, 2008
Jul 6, 2008
203
204
205
206
207
208
209
210
/**
* \def SDL_HAPTIC_FRICTION
*
* \brief Condition haptic effect that simulates friction. Effect is based on the axes
* movement.
*
* \sa SDL_HapticCondition
*/
Jul 3, 2008
Jul 3, 2008
211
#define SDL_HAPTIC_FRICTION (1<<10) /* Friction effect supported - uses axes movement */
Jul 6, 2008
Jul 6, 2008
212
213
214
/**
* \def SDL_HAPTIC_CUSTOM
*
Jul 19, 2008
Jul 19, 2008
215
* \brief User defined custom haptic effect.
Jul 6, 2008
Jul 6, 2008
216
*/
Jul 3, 2008
Jul 3, 2008
217
#define SDL_HAPTIC_CUSTOM (1<<11) /* Custom effect is supported */
Jul 1, 2008
Jul 1, 2008
218
/* These last two are features the device has, not effects */
Jul 6, 2008
Jul 6, 2008
219
220
221
222
223
224
225
/**
* \def SDL_HAPTIC_GAIN
*
* \brief Device supports setting the global gain.
*
* \sa SDL_HapticSetGain
*/
Jul 3, 2008
Jul 3, 2008
226
#define SDL_HAPTIC_GAIN (1<<12) /* Device can set global gain */
Jul 6, 2008
Jul 6, 2008
227
228
229
230
231
232
233
/**
* \def SDL_HAPTIC_AUTOCENTER
*
* \brief Device supports setting autocenter.
*
* \sa SDL_HapticSetAutocenter
*/
Jul 3, 2008
Jul 3, 2008
234
#define SDL_HAPTIC_AUTOCENTER (1<<13) /* Device can set autocenter */
Jul 6, 2008
Jul 6, 2008
235
236
237
238
239
240
241
/**
* \def SDL_HAPTIC_STATUS
*
* \brief Device can be queried for effect status.
*
* \sa SDL_HapticGetEffectStatus
*/
Jul 3, 2008
Jul 3, 2008
242
#define SDL_HAPTIC_STATUS (1<<14) /* Device can be queried for effect status */
Aug 24, 2008
Aug 24, 2008
243
244
245
246
247
248
249
250
251
/**
* \def SDL_HAPTIC_PAUSE
*
* \brief Device can be paused.
*
* \sa SDL_HapticPause
* \sa SDL_HapticUnpause
*/
#define SDL_HAPTIC_PAUSE (1<<15) /* Device can be paused. */
Jul 1, 2008
Jul 1, 2008
252
253
Jul 6, 2008
Jul 6, 2008
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
/*
* Direction encodings
*/
/**
* \def SDL_HAPTIC_POLAR
*
* \brief Uses polar coordinates for the direction.
*
* \sa SDL_HapticDirection
*/
#define SDL_HAPTIC_POLAR 0
/**
* \def SDL_HAPTIC_CARTESIAN
*
* \brief Uses cartesian coordinates for the direction.
*
* \sa SDL_HapticDirection
*/
#define SDL_HAPTIC_CARTESIAN 1
Jul 15, 2008
Jul 15, 2008
273
/**
Jul 19, 2008
Jul 19, 2008
274
* \def SDL_HAPTIC_SPHERICAL
Jul 15, 2008
Jul 15, 2008
275
276
277
278
279
280
*
* \brief Uses spherical coordinates for the direction.
*
* \sa SDL_HapticDirection
*/
#define SDL_HAPTIC_SPHERICAL 2
Jul 6, 2008
Jul 6, 2008
281
282
Jul 10, 2008
Jul 10, 2008
283
284
285
286
287
288
289
290
291
292
/*
* Misc defines.
*/
/**
* \def SDL_HAPTIC_INFINITY
*
* \brief Used to play a device an infinite number of times.
*
* \sa SDL_HapticRunEffect
*/
Jul 15, 2008
Jul 15, 2008
293
#define SDL_HAPTIC_INFINITY 4294967295U
Jul 10, 2008
Jul 10, 2008
294
295
Jul 6, 2008
Jul 6, 2008
296
297
298
299
300
301
/**
* \struct SDL_HapticDirection
*
* \brief Structure that represents a haptic direction.
*
* Directions can be specified by:
Jul 7, 2008
Jul 7, 2008
302
303
* - SDL_HAPTIC_POLAR : Specified by polar coordinates.
* - SDL_HAPTIC_CARTESIAN : Specified by cartesian coordinates.
Jul 30, 2008
Jul 30, 2008
304
* - SDL_HAPTIC_SPHERICAL : Specified by spherical coordinates.
Jul 6, 2008
Jul 6, 2008
305
306
307
308
309
310
*
* Cardinal directions of the haptic device are relative to the positioning
* of the device. North is considered to be away from the user.
*
* The following diagram represents the cardinal directions:
* \code
Jul 17, 2008
Jul 17, 2008
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
* .--.
* |__| .-------.
* |=.| |.-----.|
* |--| || ||
* | | |'-----'|
* |__|~')_____('
* [ COMPUTER ]
*
*
* North (0,-1)
* ^
* |
* |
* (1,0) West <----[ HAPTIC ]----> East (-1,0)
* |
* |
* v
* South (0,1)
*
*
* [ USER ]
* \|||/
* (o o)
* ---ooO-(_)-Ooo---
Jul 6, 2008
Jul 6, 2008
335
336
337
* \endcode
*
* If type is SDL_HAPTIC_POLAR, direction is encoded by hundredths of a
Jul 15, 2008
Jul 15, 2008
338
339
* degree starting north and turning clockwise. SDL_HAPTIC_POLAR only uses
* the first dir parameter. The cardinal directions would be:
Jul 6, 2008
Jul 6, 2008
340
* - North: 0 (0 degrees)
Jul 9, 2008
Jul 9, 2008
341
* - East: 9000 (90 degrees)
Jul 6, 2008
Jul 6, 2008
342
* - South: 18000 (180 degrees)
Jul 9, 2008
Jul 9, 2008
343
* - West: 27000 (270 degrees)
Jul 6, 2008
Jul 6, 2008
344
*
Jul 17, 2008
Jul 17, 2008
345
346
347
348
349
350
351
352
353
354
355
356
357
* If type is SDL_HAPTIC_CARTESIAN, direction is encoded by three positions
* (X axis, Y axis and Z axis (with 3 axes)). SDL_HAPTIC_CARTESIAN uses
* the first three dir parameters. The cardinal directions would be:
* - North: 0,-1, 0
* - East: -1, 0, 0
* - South: 0, 1, 0
* - West: 1, 0, 0
* The Z axis represents the height of the effect if supported, otherwise
* it's unused. In cartesian encoding (1,2) would be the same as (2,4), you
* can use any multiple you want, only the direction matters.
*
* If type is SDL_HAPTIC_SPHERICAL, direction is encoded by two rotations.
* The first two dir parameters are used. The dir parameters are as follows
Jul 15, 2008
Jul 15, 2008
358
359
360
361
* (all values are in hundredths of degrees):
* 1) Degrees from (1, 0) rotated towards (0, 1).
* 2) Degrees towards (0, 0, 1) (device needs at least 3 axes).
*
Jul 6, 2008
Jul 6, 2008
362
*
Jul 17, 2008
Jul 17, 2008
363
364
* Example of force coming from the south with all encodings (force coming
* from the south means the user will have to pull the stick to counteract):
Jul 6, 2008
Jul 6, 2008
365
366
367
* \code
* SDL_HapticDirection direction;
*
Jul 17, 2008
Jul 17, 2008
368
369
370
371
372
373
374
* // Cartesian directions
* direction.type = SDL_HAPTIC_CARTESIAN; // Using cartesian direction encoding.
* direction.dir[0] = 0; // X position
* direction.dir[1] = 1; // Y position
* // Assuming the device has 2 axes, we don't need to specify third parameter.
*
* // Polar directions
Jul 6, 2008
Jul 6, 2008
375
* direction.type = SDL_HAPTIC_POLAR; // We'll be using polar direction encoding.
Jul 17, 2008
Jul 17, 2008
376
377
378
379
380
* direction.dir[0] = 18000; // Polar only uses first parameter
*
* // Spherical coordinates
* direction.type = SDL_HAPTIC_SPHERICAL; // Spherical encoding
* direction.dir[0] = 9000; // Since we only have two axes we don't need more parameters.
Jul 6, 2008
Jul 6, 2008
381
382
383
384
* \endcode
*
* \sa SDL_HAPTIC_POLAR
* \sa SDL_HAPTIC_CARTESIAN
Jul 30, 2008
Jul 30, 2008
385
* \sa SDL_HAPTIC_SPHERICAL
Jul 6, 2008
Jul 6, 2008
386
* \sa SDL_HapticEffect
Jul 17, 2008
Jul 17, 2008
387
* \sa SDL_HapticNumAxes
Jul 6, 2008
Jul 6, 2008
388
389
390
*/
typedef struct SDL_HapticDirection {
Uint8 type; /**< The type of encoding. */
Jul 15, 2008
Jul 15, 2008
391
Uint16 dir[3]; /**< The encoded direction. */
Jul 6, 2008
Jul 6, 2008
392
393
394
} SDL_HapticDirection;
Jul 6, 2008
Jul 6, 2008
395
396
/**
* \struct SDL_HapticConstant
Jul 1, 2008
Jul 1, 2008
397
*
Jul 6, 2008
Jul 6, 2008
398
* \brief A structure containing a template for a Constant effect.
Jul 1, 2008
Jul 1, 2008
399
*
Jul 6, 2008
Jul 6, 2008
400
* The struct is exclusive to the SDL_HAPTIC_CONSTANT effect.
Jul 1, 2008
Jul 1, 2008
401
*
Jul 7, 2008
Jul 7, 2008
402
403
404
* A constant effect applies a constant force in the specified direction
* to the joystick.
*
Jul 6, 2008
Jul 6, 2008
405
406
* \sa SDL_HAPTIC_CONSTANT
* \sa SDL_HapticEffect
Jul 1, 2008
Jul 1, 2008
407
*/
Jun 30, 2008
Jun 30, 2008
408
409
typedef struct SDL_HapticConstant {
/* Header */
Jul 6, 2008
Jul 6, 2008
410
Uint16 type; /**< SDL_HAPTIC_CONSTANT */
Jul 6, 2008
Jul 6, 2008
411
SDL_HapticDirection direction; /**< Direction of the effect. */
Jul 1, 2008
Jul 1, 2008
412
413
/* Replay */
Jul 15, 2008
Jul 15, 2008
414
Uint32 length; /**< Duration of the effect. */
Jul 6, 2008
Jul 6, 2008
415
Uint16 delay; /**< Delay before starting the effect. */
Jul 1, 2008
Jul 1, 2008
416
417
/* Trigger */
Jul 6, 2008
Jul 6, 2008
418
419
Uint16 button; /**< Button that triggers the effect. */
Uint16 interval; /**< How soon it can be triggered again after button. */
Jul 1, 2008
Jul 1, 2008
420
421
/* Constant */
Jul 6, 2008
Jul 6, 2008
422
Sint16 level; /**< Strength of the constant effect. */
Jul 1, 2008
Jul 1, 2008
423
424
/* Envelope */
Jul 6, 2008
Jul 6, 2008
425
426
427
428
Uint16 attack_length; /**< Duration of the attack. */
Uint16 attack_level; /**< Level at the start of the attack. */
Uint16 fade_length; /**< Duration of the fade. */
Uint16 fade_level; /**< Level at the end of the fade. */
Jun 30, 2008
Jun 30, 2008
429
} SDL_HapticConstant;
Jul 6, 2008
Jul 6, 2008
430
431
432
433
434
435
436
437
438
439
440
441
/**
* \struct SDL_HapticPeriodic
*
* \brief A structure containing a template for a Periodic effect.
*
* The struct handles the following effects:
* - SDL_HAPTIC_SINE
* - SDL_HAPTIC_SQUARE
* - SDL_HAPTIC_TRIANGLE
* - SDL_HAPTIC_SAWTOOTHUP
* - SDL_HAPTIC_SAWTOOTHDOWN
*
Jul 7, 2008
Jul 7, 2008
442
443
444
445
* A periodic effect consists in a wave-shaped effect that repeats itself
* over time. The type determines the shape of the wave and the parameters
* determine the dimensions of the wave.
*
Jul 18, 2008
Jul 18, 2008
446
447
448
449
450
451
452
453
* Phase is given by hundredth of a cyle meaning that giving the phase a value
* of 9000 will displace it 25% of it's period. Here are sample values:
* - 0: No phase displacement.
* - 9000: Displaced 25% of it's period.
* - 18000: Displaced 50% of it's period.
* - 27000: Displaced 75% of it's period.
* - 36000: Displaced 100% of it's period, same as 0, but 0 is preffered.
*
Jul 6, 2008
Jul 6, 2008
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
* Examples:
* \code
* SDL_HAPTIC_SINE
* __ __ __ __
* / \ / \ / \ /
* / \__/ \__/ \__/
*
* SDL_HAPTIC_SQUARE
* __ __ __ __ __
* | | | | | | | | | |
* | |__| |__| |__| |__| |
*
* SDL_HAPTIC_TRIANGLE
* /\ /\ /\ /\ /\
* / \ / \ / \ / \ /
* / \/ \/ \/ \/
*
* SDL_HAPTIC_SAWTOOTHUP
Jul 7, 2008
Jul 7, 2008
472
473
474
* /| /| /| /| /| /| /|
* / | / | / | / | / | / | / |
* / |/ |/ |/ |/ |/ |/ |
Jul 6, 2008
Jul 6, 2008
475
476
*
* SDL_HAPTIC_SAWTOOTHDOWN
Jul 7, 2008
Jul 7, 2008
477
478
479
* \ |\ |\ |\ |\ |\ |\ |
* \ | \ | \ | \ | \ | \ | \ |
* \| \| \| \| \| \| \|
Jul 6, 2008
Jul 6, 2008
480
481
* \endcode
*
Jul 6, 2008
Jul 6, 2008
482
483
484
485
* \sa SDL_HAPTIC_SINE
* \sa SDL_HAPTIC_SQUARE
* \sa SDL_HAPTIC_TRIANGLE
* \sa SDL_HAPTIC_SAWTOOTHUP
Jul 7, 2008
Jul 7, 2008
486
* \sa SDL_HAPTIC_SAWTOOTHDOWN
Jul 6, 2008
Jul 6, 2008
487
488
* \sa SDL_HapticEffect
*/
Jul 1, 2008
Jul 1, 2008
489
490
typedef struct SDL_HapticPeriodic {
/* Header */
Jul 7, 2008
Jul 7, 2008
491
492
493
Uint16 type; /**< SDL_HAPTIC_SINE, SDL_HAPTIC_SQUARE,
SDL_HAPTIC_TRIANGLE, SDL_HAPTIC_SAWTOOTHUP or
SDL_HAPTIC_SAWTOOTHDOWN */
Jul 6, 2008
Jul 6, 2008
494
SDL_HapticDirection direction; /**< Direction of the effect. */
Jul 1, 2008
Jul 1, 2008
495
496
/* Replay */
Jul 15, 2008
Jul 15, 2008
497
Uint32 length; /**< Duration of the effect. */
Jul 6, 2008
Jul 6, 2008
498
Uint16 delay; /**< Delay before starting the effect. */
Jul 1, 2008
Jul 1, 2008
499
500
/* Trigger */
Jul 6, 2008
Jul 6, 2008
501
502
Uint16 button; /**< Button that triggers the effect. */
Uint16 interval; /**< How soon it can be triggered again after button. */
Jul 1, 2008
Jul 1, 2008
503
504
/* Periodic */
Jul 6, 2008
Jul 6, 2008
505
506
507
Uint16 period; /**< Period of the wave. */
Sint16 magnitude; /**< Peak value. */
Sint16 offset; /**< Mean value of the wave. */
Jul 18, 2008
Jul 18, 2008
508
Uint16 phase; /**< Horizontal shift given by hundredth of a cycle. */
Jul 1, 2008
Jul 1, 2008
509
510
/* Envelope */
Jul 6, 2008
Jul 6, 2008
511
512
513
514
Uint16 attack_length; /**< Duration of the attack. */
Uint16 attack_level; /**< Level at the start of the attack. */
Uint16 fade_length; /**< Duration of the fade. */
Uint16 fade_level; /**< Level at the end of the fade. */
Jul 1, 2008
Jul 1, 2008
515
} SDL_HapticPeriodic;
Jul 6, 2008
Jul 6, 2008
516
517
518
519
520
521
/**
* \struct SDL_HapticCondition
*
* \brief A structure containing a template for a Condition effect.
*
* The struct handles the following effects:
Jul 6, 2008
Jul 6, 2008
522
523
524
525
* - SDL_HAPTIC_SPRING: Effect based on axes position.
* - SDL_HAPTIC_DAMPER: Effect based on axes velocity.
* - SDL_HAPTIC_INERTIA: Effect based on axes acceleration.
* - SDL_HAPTIC_FRICTION: Effect based on axes movement.
Jul 6, 2008
Jul 6, 2008
526
*
Jul 7, 2008
Jul 7, 2008
527
* Direction is handled by condition internals instead of a direction member.
Jul 17, 2008
Jul 17, 2008
528
529
530
531
532
533
* The condition effect specific members have three parameters. The first
* refers to the X axis, the second refers to the Y axis and the third
* refers to the Z axis. The right terms refer to the positive side of the
* axis and the left terms refer to the negative side of the axis. Please
* refer to the SDL_HapticDirection diagram for which side is positive and
* which is negative.
Jul 7, 2008
Jul 7, 2008
534
*
Jul 6, 2008
Jul 6, 2008
535
* \sa SDL_HapticDirection
Jul 6, 2008
Jul 6, 2008
536
537
538
539
540
541
* \sa SDL_HAPTIC_SPRING
* \sa SDL_HAPTIC_DAMPER
* \sa SDL_HAPTIC_INERTIA
* \sa SDL_HAPTIC_FRICTION
* \sa SDL_HapticEffect
*/
Jul 1, 2008
Jul 1, 2008
542
543
typedef struct SDL_HapticCondition {
/* Header */
Jul 7, 2008
Jul 7, 2008
544
545
Uint16 type; /**< SDL_HAPTIC_SPRING, SDL_HAPTIC_DAMPER,
SDL_HAPTIC_INERTIA or SDL_HAPTIC_FRICTION */
Jul 17, 2008
Jul 17, 2008
546
SDL_HapticDirection direction; /**< Direction of the effect - Not used ATM. */
Jul 1, 2008
Jul 1, 2008
547
548
/* Replay */
Jul 15, 2008
Jul 15, 2008
549
Uint32 length; /**< Duration of the effect. */
Jul 6, 2008
Jul 6, 2008
550
Uint16 delay; /**< Delay before starting the effect. */
Jul 1, 2008
Jul 1, 2008
551
552
/* Trigger */
Jul 6, 2008
Jul 6, 2008
553
554
Uint16 button; /**< Button that triggers the effect. */
Uint16 interval; /**< How soon it can be triggered again after button. */
Jul 1, 2008
Jul 1, 2008
555
556
/* Condition */
Jul 17, 2008
Jul 17, 2008
557
558
559
560
561
562
Uint16 right_sat[3]; /**< Level when joystick is to the positive side. */
Uint16 left_sat[3]; /**< Level when joystick is to the negative side. */
Sint16 right_coeff[3]; /**< How fast to increase the force towards the positive side. */
Sint16 left_coeff[3]; /**< How fast to increase the force towards the negative side. */
Uint16 deadband[3]; /**< Size of the dead zone. */
Sint16 center[3]; /**< Position of the dead zone. */
Jul 1, 2008
Jul 1, 2008
563
} SDL_HapticCondition;
Jul 6, 2008
Jul 6, 2008
564
565
566
567
568
569
570
/**
* \struct SDL_HapticRamp
*
* \brief A structure containing a template for a Ramp effect.
*
* This struct is exclusively for the SDL_HAPTIC_RAMP effect.
*
Jul 7, 2008
Jul 7, 2008
571
572
573
574
575
* The ramp effect starts at start strength and ends at end strength.
* It augments in linear fashion. If you use attack and fade with a ramp
* they effects get added to the ramp effect making the effect become
* quadratic instead of linear.
*
Jul 6, 2008
Jul 6, 2008
576
577
578
* \sa SDL_HAPTIC_RAMP
* \sa SDL_HapticEffect
*/
Jul 1, 2008
Jul 1, 2008
579
580
typedef struct SDL_HapticRamp {
/* Header */
Jul 6, 2008
Jul 6, 2008
581
Uint16 type; /**< SDL_HAPTIC_RAMP */
Jul 6, 2008
Jul 6, 2008
582
SDL_HapticDirection direction; /**< Direction of the effect. */
Jul 1, 2008
Jul 1, 2008
583
584
/* Replay */
Jul 15, 2008
Jul 15, 2008
585
Uint32 length; /**< Duration of the effect. */
Jul 6, 2008
Jul 6, 2008
586
Uint16 delay; /**< Delay before starting the effect. */
Jul 1, 2008
Jul 1, 2008
587
588
/* Trigger */
Jul 6, 2008
Jul 6, 2008
589
590
Uint16 button; /**< Button that triggers the effect. */
Uint16 interval; /**< How soon it can be triggered again after button. */
Jul 1, 2008
Jul 1, 2008
591
592
/* Ramp */
Jul 6, 2008
Jul 6, 2008
593
594
Sint16 start; /**< Beginning strength level. */
Sint16 end; /**< Ending strength level. */
Jul 1, 2008
Jul 1, 2008
595
596
/* Envelope */
Jul 6, 2008
Jul 6, 2008
597
598
599
600
Uint16 attack_length; /**< Duration of the attack. */
Uint16 attack_level; /**< Level at the start of the attack. */
Uint16 fade_length; /**< Duration of the fade. */
Uint16 fade_level; /**< Level at the end of the fade. */
Jul 1, 2008
Jul 1, 2008
601
} SDL_HapticRamp;
Jul 19, 2008
Jul 19, 2008
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
/**
* \struct SDL_HapticCustom
*
* \brief A structure containing a template for the SDL_HAPTIC_CUSTOM effect.
*
* A custom force feedback effect is much like a periodic effect, where the
* application can define it's exact shape. You will have to allocate the
* data yourself. Data should consist of channels * samples Uint16 samples.
*
* If channels is one, the effect is rotated using the defined direction.
* Otherwise it uses the samples in data for the different axes.
*
* \sa SDL_HAPTIC_CUSTOM
* \sa SDL_HapticEffect
*/
typedef struct SDL_HapticCustom {
/* Header */
Uint16 type; /**< SDL_HAPTIC_CUSTOM */
SDL_HapticDirection direction; /**< Direction of the effect. */
/* Replay */
Uint32 length; /**< Duration of the effect. */
Uint16 delay; /**< Delay before starting the effect. */
/* Trigger */
Uint16 button; /**< Button that triggers the effect. */
Uint16 interval; /**< How soon it can be triggered again after button. */
/* Custom */
Uint8 channels; /**< Axes to use, minimum of one. */
Uint16 period; /**< Sample periods. */
Uint16 samples; /**< Amount of samples. */
Uint16 *data; /**< Should contain channels*samples items. */
/* 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. */
Uint16 fade_level; /**< Level at the end of the fade. */
} SDL_HapticCustom;
Jul 6, 2008
Jul 6, 2008
642
/**
Jul 6, 2008
Jul 6, 2008
643
644
645
646
* \union SDL_HapticEffect
*
* \brief The generic template for any haptic effect.
*
Jul 6, 2008
Jul 6, 2008
647
* All values max at 32767 (0x7FFF). Signed values also can be negative.
Jul 7, 2008
Jul 7, 2008
648
* Time values unless specified otherwise are in milliseconds.
Jul 6, 2008
Jul 6, 2008
649
*
Jul 15, 2008
Jul 15, 2008
650
651
* You can also pass SDL_HAPTIC_INFINITY to length instead of a 0-32767 value.
* Neither delay, interval, attack_length nor fade_length support
Jul 18, 2008
Jul 18, 2008
652
* SDL_HAPTIC_INFINITY. Fade will also not be used since effect never ends.
Jul 15, 2008
Jul 15, 2008
653
*
Jul 18, 2008
Jul 18, 2008
654
655
656
* Additionally, the SDL_HAPTIC_RAMP effect does not support a duration of
* SDL_HAPTIC_INFINITY.
*
Jul 30, 2008
Jul 30, 2008
657
658
659
660
* Button triggers may not be supported on all devices, it is advised to not
* use them if possible. Buttons start at index 1 instead of index 0 like
* they joystick.
*
Jul 31, 2008
Jul 31, 2008
661
662
663
* If both attack_length and fade_level are 0, the envelope is not used,
* otherwise both values are used.
*
Jul 6, 2008
Jul 6, 2008
664
* Common parts:
Jul 6, 2008
Jul 6, 2008
665
666
* \code
* // Replay - All effects have this
Jul 15, 2008
Jul 15, 2008
667
* Uint32 length; // Duration of effect (ms).
Jul 6, 2008
Jul 6, 2008
668
669
670
671
672
673
* Uint16 delay; // Delay before starting effect.
*
* // Trigger - All effects have this
* Uint16 button; // Button that triggers effect.
* Uint16 interval; // How soon before effect can be triggered again.
*
Jul 7, 2008
Jul 7, 2008
674
* // Envelope - All effects except condition effects have this
Jul 6, 2008
Jul 6, 2008
675
676
677
678
679
* Uint16 attack_length; // Duration of the attack (ms).
* Uint16 attack_level; // Level at the start of the attack.
* Uint16 fade_length; // Duration of the fade out (ms).
* Uint16 fade_level; // Level at the end of the fade.
* \endcode
Jul 6, 2008
Jul 6, 2008
680
681
*
*
Jul 7, 2008
Jul 7, 2008
682
* Here we have an example of a constant effect evolution in time:
Jul 6, 2008
Jul 6, 2008
683
684
685
686
687
*
* \code
* Strength
* ^
* |
Jul 7, 2008
Jul 7, 2008
688
* | effect level --> _________________
Jul 6, 2008
Jul 6, 2008
689
690
691
692
693
694
695
696
697
698
699
700
701
702
* | / \
* | / \
* | / \
* | / \
* | attack_level --> | \
* | | | <--- fade_level
* |
* +--------------------------------------------------> Time
* [--] [---]
* attack_length fade_length
*
* [------------------][-----------------------]
* delay length
* \endcode
Jul 6, 2008
Jul 6, 2008
703
*
Jul 7, 2008
Jul 7, 2008
704
705
706
* Note either the attack_level or the fade_level may be above the actual
* effect level.
*
Jul 6, 2008
Jul 6, 2008
707
708
709
* \sa SDL_HapticConstant
* \sa SDL_HapticPeriodic
* \sa SDL_HapticCondition
Jul 6, 2008
Jul 6, 2008
710
* \sa SDL_HapticRamp
Jul 19, 2008
Jul 19, 2008
711
* \sa SDL_HapticCustom
Jul 6, 2008
Jul 6, 2008
712
*/
Jun 30, 2008
Jun 30, 2008
713
714
typedef union SDL_HapticEffect {
/* Common for all force feedback effects */
Jul 6, 2008
Jul 6, 2008
715
716
717
Uint16 type; /**< Effect type. */
SDL_HapticConstant constant; /**< Constant effect. */
SDL_HapticPeriodic periodic; /**< Periodic effect. */
Jul 6, 2008
Jul 6, 2008
718
SDL_HapticCondition condition; /**< Condition effect. */
Jul 6, 2008
Jul 6, 2008
719
SDL_HapticRamp ramp; /**< Ramp effect. */
Jul 19, 2008
Jul 19, 2008
720
SDL_HapticCustom custom; /**< Custom effect. */
Jun 30, 2008
Jun 30, 2008
721
722
} SDL_HapticEffect;
723
724
/* Function prototypes */
Jul 6, 2008
Jul 6, 2008
725
/**
Jul 6, 2008
Jul 6, 2008
726
727
728
729
730
* \fn int SDL_NumHaptics(void)
*
* \brief Count the number of joysticks attached to the system.
*
* \return Number of haptic devices detected on the system.
731
732
733
*/
extern DECLSPEC int SDLCALL SDL_NumHaptics(void);
Jul 6, 2008
Jul 6, 2008
734
/**
Jul 6, 2008
Jul 6, 2008
735
736
737
* \fn const char * SDL_HapticName(int device_index)
*
* \brief Get the implementation dependent name of a Haptic device.
738
739
* This can be called before any joysticks are opened.
* If no name can be found, this function returns NULL.
Jul 6, 2008
Jul 6, 2008
740
741
742
743
744
*
* \param device_index Index of the device to get it's name.
* \return Name of the device or NULL on error.
*
* \sa SDL_NumHaptics
745
746
747
*/
extern DECLSPEC const char *SDLCALL SDL_HapticName(int device_index);
Jul 6, 2008
Jul 6, 2008
748
/**
Jul 6, 2008
Jul 6, 2008
749
* \fn SDL_Haptic * SDL_HapticOpen(int device_index)
Jul 6, 2008
Jul 6, 2008
750
751
*
* \brief Opens a Haptic device for usage - the index passed as an
Jun 23, 2008
Jun 23, 2008
752
753
* argument refers to the N'th Haptic device on this system.
*
Jul 8, 2008
Jul 8, 2008
754
755
756
* When opening a haptic device, it's gain will be set to maximum and
* autocenter will be disabled. To modify these values use
* SDL_HapticSetGain and SDL_HapticSetAutocenter
Jul 6, 2008
Jul 6, 2008
757
758
759
760
*
* \param device_index Index of the device to open.
* \return Device identifier or NULL on error.
*
Jul 8, 2008
Jul 8, 2008
761
* \sa SDL_HapticIndex
Jul 10, 2008
Jul 10, 2008
762
* \sa SDL_HapticOpenFromMouse
Jul 6, 2008
Jul 6, 2008
763
764
* \sa SDL_HapticOpenFromJoystick
* \sa SDL_HapticClose
Jul 8, 2008
Jul 8, 2008
765
766
* \sa SDL_HapticSetGain
* \sa SDL_HapticSetAutocenter
Aug 24, 2008
Aug 24, 2008
767
768
* \sa SDL_HapticPause
* \sa SDL_HapticStopAll
Jun 23, 2008
Jun 23, 2008
769
*/
Jul 17, 2008
Jul 17, 2008
770
extern DECLSPEC SDL_Haptic *SDLCALL SDL_HapticOpen(int device_index);
Jun 23, 2008
Jun 23, 2008
771
Jul 8, 2008
Jul 8, 2008
772
773
774
775
776
777
778
779
780
781
782
/**
* \fn int SDL_HapticOpened(int device_index)
*
* \brief Checks if the haptic device at index has been opened.
*
* \param device_index Index to check to see if it has been opened.
* \return 1 if it has been opened or 0 if it hasn't.
*
* \sa SDL_HapticOpen
* \sa SDL_HapticIndex
*/
Jul 17, 2008
Jul 17, 2008
783
extern DECLSPEC int SDLCALL SDL_HapticOpened(int device_index);
Jul 8, 2008
Jul 8, 2008
784
785
786
787
788
789
790
791
792
793
/**
* \fn int SDL_HapticIndex(SDL_Haptic * haptic)
*
* \brief Gets the index of a haptic device.
*
* \param haptic Haptic device to get the index of.
* \return The index of the haptic device or -1 on error.
*
* \sa SDL_HapticOpen
Jul 8, 2008
Jul 8, 2008
794
* \sa SDL_HapticOpened
Jul 8, 2008
Jul 8, 2008
795
*/
Jul 17, 2008
Jul 17, 2008
796
extern DECLSPEC int SDLCALL SDL_HapticIndex(SDL_Haptic * haptic);
Jul 8, 2008
Jul 8, 2008
797
Jul 10, 2008
Jul 10, 2008
798
799
800
801
802
803
804
805
806
/**
* \fn int SDL_MouseIsHaptic(void)
*
* \brief Gets whether or not the current mouse has haptic capabilities.
*
* \return SDL_TRUE if the mouse is haptic, SDL_FALSE if it isn't.
*
* \sa SDL_HapticOpenFromMouse
*/
Jul 17, 2008
Jul 17, 2008
807
extern DECLSPEC int SDLCALL SDL_MouseIsHaptic(void);
Jul 10, 2008
Jul 10, 2008
808
809
810
811
812
813
814
815
816
817
818
/**
* \fn SDL_Haptic * SDL_HapticOpenFromMouse(void)
*
* \brief Tries to open a haptic device from the current mouse.
*
* \return The haptic device identifier or NULL on error.
*
* \sa SDL_MouseIsHaptic
* \sa SDL_HapticOpen
*/
Jul 17, 2008
Jul 17, 2008
819
extern DECLSPEC SDL_Haptic *SDLCALL SDL_HapticOpenFromMouse(void);
Jul 10, 2008
Jul 10, 2008
820
Jul 6, 2008
Jul 6, 2008
821
822
/**
* \fn int SDL_JoystickIsHaptic(SDL_Joystick * joystick)
Jul 6, 2008
Jul 6, 2008
823
824
825
826
827
828
*
* \brief Checks to see if a joystick has haptic features.
*
* \param joystick Joystick to test for haptic capabilities.
* \return SDL_TRUE if the joystick is haptic, SDL_FALSE if it isn't
* or -1 if an error ocurred.
Jul 2, 2008
Jul 2, 2008
829
*
Jul 6, 2008
Jul 6, 2008
830
* \sa SDL_HapticOpenFromJoystick
Jul 2, 2008
Jul 2, 2008
831
*/
Jul 17, 2008
Jul 17, 2008
832
extern DECLSPEC int SDLCALL SDL_JoystickIsHaptic(SDL_Joystick * joystick);
Jul 2, 2008
Jul 2, 2008
833
Jul 6, 2008
Jul 6, 2008
834
/**
Jul 6, 2008
Jul 6, 2008
835
* \fn SDL_Haptic * SDL_HapticOpenFromJoystick(SDL_Joystick * joystick)
Jul 2, 2008
Jul 2, 2008
836
*
Jul 6, 2008
Jul 6, 2008
837
838
839
* \brief Opens a Haptic device for usage from a Joystick device. Still has
* to be closed seperately to the joystick.
*
Aug 6, 2008
Aug 6, 2008
840
841
842
843
844
* When opening from a joystick you should first close the haptic device before
* closing the joystick device. If not, on some implementations the haptic
* device will also get unallocated and you'll be unable to use force feedback
* on that device.
*
Jul 6, 2008
Jul 6, 2008
845
846
847
848
849
* \param joystick Joystick to create a haptic device from.
* \return A valid haptic device identifier on success or NULL on error.
*
* \sa SDL_HapticOpen
* \sa SDL_HapticClose
Jul 2, 2008
Jul 2, 2008
850
*/
Jul 17, 2008
Jul 17, 2008
851
extern DECLSPEC SDL_Haptic *SDLCALL SDL_HapticOpenFromJoystick(SDL_Joystick * joystick);
Jul 2, 2008
Jul 2, 2008
852
Jul 6, 2008
Jul 6, 2008
853
/**
Jul 6, 2008
Jul 6, 2008
854
855
856
857
858
* \fn void SDL_HapticClose(SDL_Haptic * haptic)
*
* \brief Closes a Haptic device previously opened with SDL_HapticOpen.
*
* \param haptic Haptic device to close.
Jun 23, 2008
Jun 23, 2008
859
*/
Jul 17, 2008
Jul 17, 2008
860
extern DECLSPEC void SDLCALL SDL_HapticClose(SDL_Haptic * haptic);
Jun 23, 2008
Jun 23, 2008
861
Jul 6, 2008
Jul 6, 2008
862
/**
Jul 6, 2008
Jul 6, 2008
863
864
865
866
* \fn int SDL_HapticNumEffects(SDL_Haptic * haptic)
*
* \brief Returns the number of effects a haptic device can store.
*
Aug 6, 2008
Aug 6, 2008
867
868
869
870
* On some platforms this isn't fully supported, and therefore is an
* aproximation. Always check to see if your created effect was actually
* created and do not rely solely on HapticNumEffects.
*
Jul 6, 2008
Jul 6, 2008
871
872
873
874
* \param haptic The haptic device to query effect max.
* \return The number of effects the haptic device can store or
* -1 on error.
*
Jul 10, 2008
Jul 10, 2008
875
* \sa SDL_HapticNumEffectsPlaying
Jul 6, 2008
Jul 6, 2008
876
* \sa SDL_HapticQuery
Jun 30, 2008
Jun 30, 2008
877
*/
Jul 17, 2008
Jul 17, 2008
878
extern DECLSPEC int SDLCALL SDL_HapticNumEffects(SDL_Haptic * haptic);
Jun 30, 2008
Jun 30, 2008
879
Jul 10, 2008
Jul 10, 2008
880
881
882
883
884
/**
* \fn int SDL_HapticNumEffectsPlaying(SDL_Haptic * haptic)
*
* \brief Returns the number of effects a haptic device can play at the same time.
*
Aug 6, 2008
Aug 6, 2008
885
886
887
* This is not supported on all platforms, but will always return a value. Added
* here for the sake of completness.
*
Jul 10, 2008
Jul 10, 2008
888
889
890
891
892
893
894
* \param haptic The haptic device to query maximum playing effect.s
* \return The number of effects the haptic device can play at the same time
* or -1 on error.
*
* \sa SDL_HapticNumEffects
* \sa SDL_HapticQuery
*/
Jul 17, 2008
Jul 17, 2008
895
extern DECLSPEC int SDLCALL SDL_HapticNumEffectsPlaying(SDL_Haptic * haptic);
Jul 10, 2008
Jul 10, 2008
896
Jul 6, 2008
Jul 6, 2008
897
/**
Jul 6, 2008
Jul 6, 2008
898
* \fn unsigned int SDL_HapticQuery(SDL_Haptic * haptic)
Jul 6, 2008
Jul 6, 2008
899
900
901
902
903
904
905
906
907
908
909
910
911
*
* \brief Gets the haptic devices supported features in bitwise matter.
*
* Example:
* \code
* if (SDL_HapticQueryEffects(haptic) & SDL_HAPTIC_CONSTANT) {
* printf("We have constant haptic effect!");
* }
* \endcode
*
*
* \param haptic The haptic device to query.
* \return Haptic features in bitwise manner (OR'd).
Jun 30, 2008
Jun 30, 2008
912
*
Jul 6, 2008
Jul 6, 2008
913
914
* \sa SDL_HapticNumEffects
* \sa SDL_HapticEffectSupported
Jun 30, 2008
Jun 30, 2008
915
*/
Jul 17, 2008
Jul 17, 2008
916
917
918
919
920
921
922
923
924
925
926
extern DECLSPEC unsigned int SDLCALL SDL_HapticQuery(SDL_Haptic * haptic);
/**
* \fn int SDL_HapticNumAxes(SDL_Haptic * haptic)
*
* \brief Gets the number of haptic axes the device has.
*
* \sa SDL_HapticDirection
*/
extern DECLSPEC int SDLCALL SDL_HapticNumAxes(SDL_Haptic * haptic);
Jun 30, 2008
Jun 30, 2008
927
Jul 6, 2008
Jul 6, 2008
928
/**
Jul 6, 2008
Jul 6, 2008
929
* \fn int SDL_HapticEffectSupported(SDL_Haptic * haptic, SDL_HapticEffect * effect)
Jul 1, 2008
Jul 1, 2008
930
*
Jul 6, 2008
Jul 6, 2008
931
932
933
934
935
936
937
938
939
* \brief Checks to see if effect is supported by haptic.
*
* \param haptic Haptic device to check on.
* \param effect Effect to check to see if it is supported.
* \return SDL_TRUE if effect is supported, SDL_FALSE if it isn't or
* -1 on error.
*
* \sa SDL_HapticQuery
* \sa SDL_HapticNewEffect
Jul 1, 2008
Jul 1, 2008
940
*/
Jul 17, 2008
Jul 17, 2008
941
extern DECLSPEC int SDLCALL SDL_HapticEffectSupported(SDL_Haptic * haptic, SDL_HapticEffect * effect);
Jul 1, 2008
Jul 1, 2008
942
Jul 6, 2008
Jul 6, 2008
943
/**
Jul 6, 2008
Jul 6, 2008
944
945
946
* \fn int SDL_HapticNewEffect(SDL_Haptic * haptic, SDL_HapticEffect * effect)
*
* \brief Creates a new haptic effect on the device.
Jul 1, 2008
Jul 1, 2008
947
*
Jul 6, 2008
Jul 6, 2008
948
949
950
951
952
953
954
* \param haptic Haptic device to create the effect on.
* \param effect Properties of the effect to create.
* \return The id of the effect on success or -1 on error.
*
* \sa SDL_HapticUpdateEffect
* \sa SDL_HapticRunEffect
* \sa SDL_HapticDestroyEffect
Jun 30, 2008
Jun 30, 2008
955
*/
Jul 17, 2008
Jul 17, 2008
956
extern DECLSPEC int SDLCALL SDL_HapticNewEffect(SDL_Haptic * haptic, SDL_HapticEffect * effect);
Jun 30, 2008
Jun 30, 2008
957
Jul 6, 2008
Jul 6, 2008
958
/**
Jul 6, 2008
Jul 6, 2008
959
960
* \fn int SDL_HapticUpdateEffect(SDL_Haptic * haptic, int effect, SDL_HapticEffect * data)
*
Jul 18, 2008
Jul 18, 2008
961
962
963
964
965
966
* \brief Updates the properties of an effect.
*
* Can be used dynamically, although behaviour when dynamically changing
* direction may be strange. Specifically the effect may reupload itself
* and start playing from the start. You cannot change the type either when
* running UpdateEffect.
Jul 1, 2008
Jul 1, 2008
967
*
Jul 6, 2008
Jul 6, 2008
968
969
970
971
972
973
974
975
* \param haptic Haptic device that has the effect.
* \param effect Effect to update.
* \param data New effect properties to use.
* \return The id of the effect on success or -1 on error.
*
* \sa SDL_HapticNewEffect
* \sa SDL_HapticRunEffect
* \sa SDL_HapticDestroyEffect
Jul 1, 2008
Jul 1, 2008
976
*/
Jul 17, 2008
Jul 17, 2008
977
extern DECLSPEC int SDLCALL SDL_HapticUpdateEffect(SDL_Haptic * haptic, int effect, SDL_HapticEffect * data);
Jul 1, 2008
Jul 1, 2008
978
Jul 6, 2008
Jul 6, 2008
979
/**
Jul 19, 2008
Jul 19, 2008
980
* \fn int SDL_HapticRunEffect(SDL_Haptic * haptic, int effect, Uint32 iterations)
Jul 1, 2008
Jul 1, 2008
981
*
Jul 6, 2008
Jul 6, 2008
982
983
* \brief Runs the haptic effect on it's assosciated haptic device.
*
Jul 18, 2008
Jul 18, 2008
984
985
986
987
988
* If iterations are SDL_HAPTIC_INFINITY, it'll run the effect over and over
* repeating the envelope (attack and fade) every time. If you only want the
* effect to last forever, set SDL_HAPTIC_INFINITY in the effect's length
* parameter.
*
Jul 6, 2008
Jul 6, 2008
989
990
* \param haptic Haptic device to run the effect on.
* \param effect Identifier of the haptic effect to run.
Jul 10, 2008
Jul 10, 2008
991
992
* \param iterations Number of iterations to run the effect. Use
* SDL_HAPTIC_INFINITY for infinity.
Jul 6, 2008
Jul 6, 2008
993
994
995
996
997
* \return 0 on success or -1 on error.
*
* \sa SDL_HapticStopEffect
* \sa SDL_HapticDestroyEffect
* \sa SDL_HapticGetEffectStatus
Jun 30, 2008
Jun 30, 2008
998
*/
Jul 17, 2008
Jul 17, 2008
999
extern DECLSPEC int SDLCALL SDL_HapticRunEffect(SDL_Haptic * haptic, int effect, Uint32 iterations);
Jun 30, 2008
Jun 30, 2008
1000