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

Latest commit

 

History

History
1225 lines (1111 loc) · 37.6 KB

SDL_haptic.h

File metadata and controls

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