Skip to content

Commit

Permalink
Merge pull request PixlOne#115 from michtere/master
Browse files Browse the repository at this point in the history
Add ThresholdGesture.
  • Loading branch information
PixlOne authored Aug 21, 2020
2 parents c1423e3 + 3561b1f commit e570e7b
Show file tree
Hide file tree
Showing 4 changed files with 104 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/logid/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ add_executable(logid
actions/ChangeHostAction.cpp
actions/gesture/Gesture.cpp
actions/gesture/ReleaseGesture.cpp
actions/gesture/ThresholdGesture.cpp
actions/gesture/IntervalGesture.cpp
actions/gesture/AxisGesture.cpp
actions/gesture/NullGesture.cpp
Expand Down
3 changes: 3 additions & 0 deletions src/logid/actions/gesture/Gesture.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
#include "Gesture.h"
#include "../../util/log.h"
#include "ReleaseGesture.h"
#include "ThresholdGesture.h"
#include "../../backend/hidpp20/features/ReprogControls.h"
#include "IntervalGesture.h"
#include "AxisGesture.h"
Expand Down Expand Up @@ -89,6 +90,8 @@ std::shared_ptr<Gesture> Gesture::makeGesture(Device *device,

if(type == "onrelease")
return std::make_shared<ReleaseGesture>(device, setting);
else if(type == "onthreshold")
return std::make_shared<ThresholdGesture>(device, setting);
else if(type == "oninterval" || type == "onfewpixels")
return std::make_shared<IntervalGesture>(device, setting);
else if(type == "axis")
Expand Down
54 changes: 54 additions & 0 deletions src/logid/actions/gesture/ThresholdGesture.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
/*
* Copyright 2019-2020 PixlOne
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program 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 General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
*/
#include "ThresholdGesture.h"

using namespace logid::actions;

ThresholdGesture::ThresholdGesture(Device *device, libconfig::Setting &root) :
Gesture (device), _config (device, root)
{
}

void ThresholdGesture::press()
{
_axis = 0;
this->executed = false;
}

void ThresholdGesture::release(bool primary)
{
(void)primary; // Suppress unused warning

this->executed = false;
}

void ThresholdGesture::move(int16_t axis)
{
_axis += axis;

if(!this->executed && metThreshold()) {
_config.action()->press();
_config.action()->release();
this->executed = true;
}
}

bool ThresholdGesture::metThreshold() const
{
return _axis >= _config.threshold();
}
46 changes: 46 additions & 0 deletions src/logid/actions/gesture/ThresholdGesture.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
/*
* Copyright 2019-2020 PixlOne
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program 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 General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
*/
#ifndef LOGID_ACTION_THRESHOLDGESTURE_H
#define LOGID_ACTION_THRESHOLDGESTURE_H

#include "Gesture.h"

namespace logid {
namespace actions
{
class ThresholdGesture : public Gesture
{
public:
ThresholdGesture(Device* device, libconfig::Setting& root);

virtual void press();
virtual void release(bool primary=false);
virtual void move(int16_t axis);

virtual bool metThreshold() const;

protected:
int16_t _axis;
Gesture::Config _config;

private:
bool executed = false;
};
}}

#endif //LOGID_ACTION_THRESHOLDGESTURE_H

0 comments on commit e570e7b

Please sign in to comment.