summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorStanislaw Halik <sthalik@misaki.pl>2015-10-08 07:28:02 +0200
committerStanislaw Halik <sthalik@misaki.pl>2015-10-08 07:28:02 +0200
commit11a0cdba214e15c1dc8888fcf70fc5769ade5957 (patch)
tree2c45d60657b0990751c9af5fd48e545c3f83efdf
parent57a437c6f267ad8a5058d87b9f7b9aa55b134c2d (diff)
parent5441b2a60627406f3c235864c126a31e87234259 (diff)
Merge branch 'work' into trackhat-ui
* work: qfc: move var to outer scope qfc: no need to load lazily, it's received immediately qfc: try harder to fill all memoized buckets Revert "accela: guard against negative value overflow properly" qfc: revert to floats as in rc15 make-tar: show cygpath -w on cygwin for convenience shortcuts: sleep less, drop less keystrokes accela: revert rot gains to rc15
-rw-r--r--ftnoir_filter_accela/ftnoir_filter_accela.cpp2
-rw-r--r--qfunctionconfigurator/functionconfig.cpp93
-rw-r--r--qfunctionconfigurator/functionconfig.h14
3 files changed, 46 insertions, 63 deletions
diff --git a/ftnoir_filter_accela/ftnoir_filter_accela.cpp b/ftnoir_filter_accela/ftnoir_filter_accela.cpp
index 5f058fc7..84bd68c8 100644
--- a/ftnoir_filter_accela/ftnoir_filter_accela.cpp
+++ b/ftnoir_filter_accela/ftnoir_filter_accela.cpp
@@ -98,7 +98,7 @@ void FTNoIR_Filter::filter(const double* input, double *output)
const double thres = i >= 3 ? rot_t : trans_t;
const double val = m.getValue(vec_ / thres);
const double result = last_output[i] + (vec < 0 ? -1 : 1) * dt * val;
- const bool negp = in < 0.;
+ const bool negp = vec < 0.;
const bool done = negp
? result <= in
: result >= in;
diff --git a/qfunctionconfigurator/functionconfig.cpp b/qfunctionconfigurator/functionconfig.cpp
index 8301c7f9..594607ff 100644
--- a/qfunctionconfigurator/functionconfig.cpp
+++ b/qfunctionconfigurator/functionconfig.cpp
@@ -19,26 +19,20 @@ Map::Map() :
_mutex(QMutex::Recursive),
activep(false),
max_x(0),
- max_y(0),
- lazy_reload(true)
+ max_y(0)
{
}
-Map::num Map::getValue(Map::num x) {
+float Map::getValue(float x) {
QMutexLocker foo(&_mutex);
- if (lazy_reload)
- {
- lazy_reload = false;
- reload();
- }
- num q = x * precision();
- int xi = (int)q;
- num yi = getValueInternal(xi);
- num yiplus1 = getValueInternal(xi + (x < 0 ? -1 : 1));
- num f = (q-xi);
- num ret = yiplus1 * f + yi * (1 - f); // at least do a linear interpolation.
- last_input_value.setX(std::abs(x));
- last_input_value.setY(std::abs(ret));
+ float q = x * precision();
+ int xi = (int)q;
+ float yi = getValueInternal(xi);
+ float yiplus1 = getValueInternal(xi+1);
+ float f = (q-xi);
+ float ret = yiplus1 * f + yi * (1.0f - f); // at least do a linear interpolation.
+ last_input_value.setX(x);
+ last_input_value.setY(ret);
return ret;
}
@@ -48,15 +42,15 @@ bool Map::getLastPoint(QPointF& point ) {
return activep;
}
-Map::num Map::getValueInternal(int x) {
- num sign = x < 0 ? -1 : 1;
+float Map::getValueInternal(int x) {
+ float sign = x < 0 ? -1 : 1;
x = abs(x);
- num ret;
+ float ret;
int sz = cur.data.size();
if (sz == 0)
ret = 0;
else
- ret = cur.data[std::min<unsigned>(x, sz-1)] * max_y / integral_max;
+ ret = cur.data[std::min<unsigned>(x, sz-1)];
return ret * sign;
}
@@ -81,19 +75,20 @@ void Map::reload() {
QList<QPointF> input = cur.input;
auto& data = cur.data;
- data = std::vector<integral>(value_count);
+ data = std::vector<float>(value_count);
const int mult = precision();
+ const int mult_ = mult * 30;
const int sz = data.size();
for (int i = 0; i < sz; i++)
- data[i] = integral_max;
+ data[i] = -1;
if (input.size() == 1)
{
for (int k = 0; k < input[0].x() * mult; k++) {
if (k < sz)
- data[k] = input[0].y() * k * integral_max / (input[0].x() * mult) / max_y ;
+ data[k] = input[0].y() * k / (input[0].x() * mult);
}
}
else if (input[0].x() > 1e-2)
@@ -105,46 +100,38 @@ void Map::reload() {
const QPointF p2 = ensureInBounds(input, i + 1);
const QPointF p3 = ensureInBounds(input, i + 2);
- using n = double;
- const n p0_x = p0.x(), p1_x = p1.x(), p2_x = p2.x(), p3_x = p3.x();
- const n p0_y = p0.y(), p1_y = p1.y(), p2_y = p2.y(), p3_y = p3.y();
+ const float p0_x = p0.x(), p1_x = p1.x(), p2_x = p2.x(), p3_x = p3.x();
+ const float p0_y = p0.y(), p1_y = p1.y(), p2_y = p2.y(), p3_y = p3.y();
// multiplier helps fill in all the x's needed
- const int mult_ = mult * 20;
const int end = std::min<int>(sz, p2.x() * mult_);
const int start = p1.x() * mult;
- const n max = end - start;
for (int j = start; j < end; j++) {
- const n t = (j - start) / max;
- const n t2 = t*t;
- const n t3 = t*t*t;
+ const float t = (j - start) / (float) (end - start);
+ const float t2 = t*t;
+ const float t3 = t*t*t;
- // XXX we could solve for t instead -sh 20150811
const int x = .5 * ((2. * p1_x) +
(-p0_x + p2_x) * t +
(2. * p0_x - 5. * p1_x + 4. * p2_x - p3_x) * t2 +
(-p0_x + 3. * p1_x - 3. * p2_x + p3_x) * t3)
- * mult;
-
- if (x < 0 || x >= sz || data[x] != integral_max)
- continue;
+ * mult;
- const n y = .5 * ((2. * p1_y) +
- (-p0_y + p2_y) * t +
- (2. * p0_y - 5. * p1_y + 4. * p2_y - p3_y) * t2 +
- (-p0_y + 3. * p1_y - 3. * p2_y + p3_y) * t3);
-
- const n y_ = std::min<n>(max_y, std::max<n>(y, 0));
-
- data[x] = y_ * integral_max / max_y;
+ const float y = .5 * ((2. * p1_y) +
+ (-p0_y + p2_y) * t +
+ (2. * p0_y - 5. * p1_y + 4. * p2_y - p3_y) * t2 +
+ (-p0_y + 3. * p1_y - 3. * p2_y + p3_y) * t3);
+
+ if (x >= 0 && x < sz)
+ data[x] = y;
}
}
- integral last = 0;
+ float last = 0;
for (int i = 0; i < sz; i++)
{
- if (data[i] == integral_max)
+ if (data[i] < 0)
data[i] = last;
last = data[i];
}
@@ -158,14 +145,14 @@ void Map::removePoint(int i) {
if (i >= 0 && i < cur.input.size())
{
cur.input.removeAt(i);
- lazy_reload = true;
+ reload();
}
}
void Map::addPoint(QPointF pt) {
QMutexLocker foo(&_mutex);
cur.input.append(pt);
- lazy_reload = true;
+ reload();
qStableSort(cur.input.begin(), cur.input.end(), sortFn);
}
@@ -174,8 +161,8 @@ void Map::movePoint(int idx, QPointF pt) {
if (idx >= 0 && idx < cur.input.size())
{
cur.input[idx] = pt;
- lazy_reload = true;
- // we don't allow points to be reodered, so no sort here
+ reload();
+ // we don't allow points to be reordered, so no sort here
}
}
@@ -188,7 +175,7 @@ void Map::invalidate_unsaved_settings()
{
QMutexLocker foo(&_mutex);
cur = saved;
- lazy_reload = true;
+ reload();
}
void Map::loadSettings(QSettings& settings, const QString& title) {
@@ -217,7 +204,7 @@ void Map::loadSettings(QSettings& settings, const QString& title) {
points.append(QPointF(maxInput(), maxOutput()));
cur.input = points;
- lazy_reload = true;
+ reload();
saved = cur;
}
@@ -249,6 +236,6 @@ void Map::saveSettings(QSettings& settings, const QString& title) {
int Map::precision() const {
if (cur.input.size())
- return value_count / std::max<num>(1, (cur.input[cur.input.size() - 1].x()));
+ return value_count / std::max<float>(1.f, (cur.input[cur.input.size() - 1].x()));
return 1;
}
diff --git a/qfunctionconfigurator/functionconfig.h b/qfunctionconfigurator/functionconfig.h
index 149d5989..31aebdf6 100644
--- a/qfunctionconfigurator/functionconfig.h
+++ b/qfunctionconfigurator/functionconfig.h
@@ -20,18 +20,15 @@
class Map {
private:
static constexpr int value_count = 10000;
- using num = double;
- using integral = std::uint32_t;
- static constexpr integral integral_max = std::numeric_limits<integral>::max();
struct State {
QList<QPointF> input;
- std::vector<integral> data;
+ std::vector<float> data;
};
int precision() const;
void reload();
- num getValueInternal(int x);
+ float getValueInternal(int x);
MyMutex _mutex;
QPointF last_input_value;
@@ -40,7 +37,6 @@ private:
double max_y;
State cur, saved;
- bool lazy_reload;
public:
double maxInput() const { return max_x; }
double maxOutput() const { return max_y; }
@@ -49,16 +45,16 @@ public:
{
setMaxInput(maxx);
setMaxOutput(maxy);
- lazy_reload = true;
+ reload();
}
- num getValue(num x);
+ float getValue(float x);
bool getLastPoint(QPointF& point);
void removePoint(int i);
void removeAllPoints() {
QMutexLocker foo(&_mutex);
cur.input.clear();
- lazy_reload = true;
+ reload();
}
void addPoint(QPointF pt);