From 976c7e4985c629b55f86f01bfd294374d839fae0 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Michal=20Mal=C3=BD?= Date: Sat, 1 Aug 2015 13:41:23 +0200 Subject: [PATCH] Add support for ramp effect via SDL2 --- CMakeLists.txt | 1 + sdl2ffbrampeffect.cpp | 67 +++++++++++++++++++++++++++++++++++++++++++ sdl2ffbrampeffect.h | 21 ++++++++++++++ 3 files changed, 89 insertions(+) create mode 100644 sdl2ffbrampeffect.cpp create mode 100644 sdl2ffbrampeffect.h diff --git a/CMakeLists.txt b/CMakeLists.txt index 964f671..cb0c0b5 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -60,6 +60,7 @@ if (SDL2_FOUND) sdl2ffbconstanteffect.cpp sdl2ffbconditioneffect.cpp sdl2ffbperiodiceffect.cpp + sdl2ffbrampeffect.cpp sdl2deviceprober.cpp) endif() diff --git a/sdl2ffbrampeffect.cpp b/sdl2ffbrampeffect.cpp new file mode 100644 index 0000000..f2e078c --- /dev/null +++ b/sdl2ffbrampeffect.cpp @@ -0,0 +1,67 @@ +#include "sdl2ffbrampeffect.h" +#include "globalsettings.h" +#include + +SDL2FFBRampEffect::SDL2FFBRampEffect() : + SDL2FFBEffect(FFBEffectTypes::RAMP) +{} + +SDL_HapticEffect* SDL2FFBRampEffect::createFFstruct() +{ + SDL_HapticEffect* effect = SDL2FFBEffect::createFFstruct(); + + if (effect == nullptr) + return nullptr; + + effect->type = SDL_HAPTIC_RAMP; + + effect->ramp.direction.type = SDL_HAPTIC_POLAR; + effect->ramp.direction.dir[0] = m_params->direction; + + effect->ramp.attack_length = m_params->attackLength; + effect->ramp.attack_level = m_params->attackLevel; + effect->ramp.fade_length = m_params->fadeLength; + effect->ramp.fade_level = m_params->fadeLevel; + + effect->ramp.start = m_params->startLevel; + effect->ramp.end = m_params->endLevel; + + return effect; +} + +bool SDL2FFBRampEffect::setParameters(const std::shared_ptr params) +{ + try { + const std::shared_ptr iParams = std::dynamic_pointer_cast(params); + return setParameters(iParams); + } catch (std::bad_cast& ) { + return false; + } +} + +bool SDL2FFBRampEffect::setParameters(const std::shared_ptr params) +{ + if (!GlobalSettings::GS()->doSanityChecks) + return true; + + if (!checkGenericParameters(params)) + return false; + + if (!checkEnvelopeParameters(params->attackLength, params->attackLevel, params->fadeLength, params->fadeLevel)) + return false; + + if (checkBoundsInclusive(params->startLevel, -0x7FFF, 0x7FFF)) { + QMessageBox::warning(nullptr, CAPTION, "Start level must be within <-32767; 32767>"); + return false; + } + + if (!checkBoundsInclusive(params->endLevel, -0x7FFF, 0x7FFF)) { + QMessageBox::warning(nullptr, CAPTION, "End level must be within <-32767; 32767>"); + return false; + } + + m_params = params; + return true; +} + + diff --git a/sdl2ffbrampeffect.h b/sdl2ffbrampeffect.h new file mode 100644 index 0000000..c3c7416 --- /dev/null +++ b/sdl2ffbrampeffect.h @@ -0,0 +1,21 @@ +#ifndef SDL2FFBRAMPEFFECT_H +#define SDL2FFBRAMPEFFECT_H + +#include "sdl2ffbeffect.h" +#include "ffbrampeffectparameters.h" + +class SDL2FFBRampEffect : public SDL2FFBEffect +{ +public: + SDL2FFBRampEffect(); + SDL_HapticEffect* createFFstruct(); + inline const std::shared_ptr parameters() const { return m_params; } + bool setParameters(const std::shared_ptr params); + +private: + bool setParameters(const std::shared_ptr params); + + std::shared_ptr m_params; +}; + +#endif // SDL2FFBRAMPEFFECT_H -- 2.43.5