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

Commit

Permalink
Setting effects memory to 0.
Browse files Browse the repository at this point in the history
Added SDL_HapticSetGain().
  • Loading branch information
bobbens committed Jul 1, 2008
1 parent c43ee9e commit 7e6f106
Show file tree
Hide file tree
Showing 4 changed files with 59 additions and 3 deletions.
11 changes: 11 additions & 0 deletions include/SDL_haptic.h
Expand Up @@ -232,11 +232,15 @@ extern DECLSPEC unsigned int SDL_HapticQueryEffects(SDL_Haptic * haptic);

/*
* Creates a new haptic effect on the device.
*
* Returns the id of the effect on success, -1 on failure.
*/
extern DECLSPEC int SDL_HapticNewEffect(SDL_Haptic * haptic, SDL_HapticEffect * effect);

/*
* Runs the haptic effect on it's assosciated haptic device.
*
* Returns 0 on success or -1 on failure.
*/
extern DECLSPEC int SDL_HapticRunEffect(SDL_Haptic * haptic, int effect);

Expand All @@ -245,6 +249,13 @@ extern DECLSPEC int SDL_HapticRunEffect(SDL_Haptic * haptic, int effect);
*/
extern DECLSPEC void SDL_HapticDestroyEffect(SDL_Haptic * haptic, int effect);

/*
* 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);


/* Ends C function definitions when using C++ */
#ifdef __cplusplus
Expand Down
22 changes: 22 additions & 0 deletions src/haptic/SDL_haptic.c
Expand Up @@ -324,4 +324,26 @@ SDL_HapticDestroyEffect(SDL_Haptic * haptic, int effect)
SDL_SYS_HapticDestroyEffect(haptic, &haptic->effects[effect]);
}

/*
* Sets the global gain of the device.
*/
int
SDL_HapticSetGain(SDL_Haptic * haptic, int gain )
{
if (!ValidHaptic(&haptic)) {
return -1;
}

if ((gain < 0) || (gain > 100)) {
SDL_SetError("Haptic gain must be between 0 and 100.");
return -1;
}

if (SDL_SYS_HapticSetGain(haptic,gain) < 0) {
return -1;
}

return 0;
}


1 change: 1 addition & 0 deletions src/haptic/SDL_syshaptic.h
Expand Up @@ -58,5 +58,6 @@ extern int SDL_SYS_HapticRunEffect(SDL_Haptic * haptic,
struct haptic_effect * effect);
extern void SDL_SYS_HapticDestroyEffect(SDL_Haptic * haptic,
struct haptic_effect * effect);
extern int SDL_SYS_HapticSetGain(SDL_Haptic * haptic, int gain);


28 changes: 25 additions & 3 deletions src/haptic/linux/SDL_syshaptic.c
Expand Up @@ -35,7 +35,6 @@
#include <fcntl.h>
#include <linux/limits.h>
#include <string.h>
#include <errno.h>


#define MAX_HAPTICS 32
Expand Down Expand Up @@ -222,6 +221,9 @@ SDL_SYS_HapticOpen(SDL_Haptic * haptic)
SDL_OutOfMemory();
goto open_err;
}
/* Clear the memory */
SDL_memset(haptic->effects, 0,
sizeof(struct haptic_effect) * haptic->neffects);

return 0;

Expand Down Expand Up @@ -435,6 +437,7 @@ SDL_SYS_ToFFEffect( struct ff_effect * dest, SDL_HapticEffect * src )
return 0;
}


/*
* Creates a new haptic effect.
*/
Expand All @@ -461,8 +464,7 @@ SDL_SYS_HapticNewEffect(SDL_Haptic * haptic, struct haptic_effect * effect,

/* Upload the effect */
if (ioctl(haptic->hwdata->fd, EVIOCSFF, linux_effect) < 0) {
SDL_SetError("Error uploading effect to the haptic device: %s",
strerror(errno));
SDL_SetError("Error uploading effect to the haptic device.");
return -1;
}

Expand Down Expand Up @@ -506,4 +508,24 @@ SDL_SYS_HapticDestroyEffect(SDL_Haptic * haptic, struct haptic_effect * effect)
}


/*
* Sets the gain.
*/
int
SDL_SYS_HapticSetGain(SDL_Haptic * haptic, int gain)
{
struct input_event ie;

ie.type = EV_FF;
ie.code = FF_GAIN;
ie.value = (0xFFFFUL * gain) / 100;
printf("%d\n",ie.value);

if (write(haptic->hwdata->fd, &ie, sizeof(ie)) == -1) {
SDL_SetError("Error setting gain.");
}

}


#endif /* SDL_HAPTIC_LINUX */

0 comments on commit 7e6f106

Please sign in to comment.