From 16dc4df3d438142ae378c9c6983585d06e0c6a33 Mon Sep 17 00:00:00 2001 From: a1xd <68629610+a1xd@users.noreply.github.com> Date: Mon, 29 Mar 2021 17:14:49 -0400 Subject: refactor common/settings only driver compiles remove accel-base types merge linear + classic move gain cap logic into classic impl, cap is now set in terms of output use cap/limit to determine negation remove weight, add replacement for power mode only remove legacy offset option remove naturalgain mode add legacy mode flag naturalgain -> natural natural -> natural + legacy flag add dpi setting and more accel args + defaults (prep for ips mode) replace output speed cap with input cap --- common/accel-naturalgain.hpp | 28 ---------------------------- 1 file changed, 28 deletions(-) delete mode 100644 common/accel-naturalgain.hpp (limited to 'common/accel-naturalgain.hpp') diff --git a/common/accel-naturalgain.hpp b/common/accel-naturalgain.hpp deleted file mode 100644 index cdfd1fa..0000000 --- a/common/accel-naturalgain.hpp +++ /dev/null @@ -1,28 +0,0 @@ -#pragma once - -#include - -#include "accel-natural.hpp" - -namespace rawaccel { - - /// Struct to hold "natural" (vanishing difference) gain implementation. - struct naturalgain_impl : natural_impl { - - using natural_impl::natural_impl; - - inline double operator()(double speed) const { - // f(x) = k((e^(-mx)-1)/mx + 1) - double base_speed = speed + offset; - double scaled_speed = rate * speed; - return limit * (((exp(-scaled_speed) - 1) / (base_speed * rate) ) + 1 - offset / base_speed); - } - - inline double legacy_offset(double speed) const { - double scaled_speed = rate * speed; - return limit * (((exp(-scaled_speed) - 1) / scaled_speed) + 1); - } - }; - - using accel_naturalgain = additive_accel; -} -- cgit v1.2.3