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

Commit

Permalink
Added SDL_HapticStopEffect().
Browse files Browse the repository at this point in the history
  • Loading branch information
bobbens committed Jul 1, 2008
1 parent ce595d2 commit e54cc61
Show file tree
Hide file tree
Showing 4 changed files with 50 additions and 1 deletion.
10 changes: 9 additions & 1 deletion include/SDL_haptic.h
Expand Up @@ -245,7 +245,15 @@ extern DECLSPEC int SDL_HapticNewEffect(SDL_Haptic * haptic, SDL_HapticEffect *
extern DECLSPEC int SDL_HapticRunEffect(SDL_Haptic * haptic, int effect);

/*
* Destroys a haptic effect on the device.
* 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.
*/
extern DECLSPEC void SDL_HapticDestroyEffect(SDL_Haptic * haptic, int effect);

Expand Down
18 changes: 18 additions & 0 deletions src/haptic/SDL_haptic.c
Expand Up @@ -306,6 +306,24 @@ SDL_HapticRunEffect(SDL_Haptic * haptic, int effect)
return 0;
}

/*
* Stops the haptic effect on the device.
*/
int
SDL_HapticStopEffect(SDL_Haptic * haptic, int effect)
{
if (!ValidHaptic(&haptic) || !ValidEffect(haptic,effect)) {
return -1;
}

/* Stop the effect */
if (SDL_SYS_HapticStopEffect(haptic,&haptic->effects[effect]) < 0) {
return -1;
}

return 0;
}

/*
* Gets rid of a haptic effect.
*/
Expand Down
2 changes: 2 additions & 0 deletions src/haptic/SDL_syshaptic.h
Expand Up @@ -56,6 +56,8 @@ extern int SDL_SYS_HapticNewEffect(SDL_Haptic * haptic,
struct haptic_effect * effect, SDL_HapticEffect * base);
extern int SDL_SYS_HapticRunEffect(SDL_Haptic * haptic,
struct haptic_effect * effect);
extern int SDL_SYS_HapticStopEffect(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);
Expand Down
21 changes: 21 additions & 0 deletions src/haptic/linux/SDL_syshaptic.c
Expand Up @@ -494,6 +494,27 @@ SDL_SYS_HapticRunEffect(SDL_Haptic * haptic, struct haptic_effect * effect)
}


/*
* Stops an effect.
*/
int
SDL_SYS_HapticStopEffect(SDL_Haptic * haptic, struct haptic_effect * effect)
{
struct input_event stop;

stop.type = EV_FF;
stop.code = effect->hweffect->effect.id;
stop.value = 0;

if (write(haptic->hwdata->fd, (const void*) &stop, sizeof(stop)) < 0) {
SDL_SetError("Unable to stop the haptic effect.");
return -1;
}

return 0;
}


/*
* Frees the effect
*/
Expand Down

0 comments on commit e54cc61

Please sign in to comment.