summaryrefslogtreecommitdiffhomepage
path: root/facetracknoir/lerp.hpp
blob: 70d5995c208c68981d1a1a4aa806563b4ab863c4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
#pragma once

#include "facetracknoir/timer.hpp"
#include <algorithm>

class lerp {
private:
    double last[2][6], dt;
    Timer t;
public:
    lerp() :
        last { {0,0,0,0,0,0}, {0,0,0,0,0,0} }, dt(1)
    {
    }
    bool idempotentp(const double* input)
    {
        for (int i = 0; i < 6; i++)
            if (last[0][i] != input[i])
                return false;
        return true;
    }

    void write(const double* input, double* output)
    {
        const double q = dt;
        dt = std::max(1, t.start());

        const double c = std::max(std::min(1.0, q/(double)dt), 0.0);

        for (int i = 0; i < 6; i++)
        {
            last[1][i] = last[0][i];
            last[0][i] = input[i];
        }

        for (int i = 0; i < 6; i++)
            output[i] = last[1][i] + (last[0][i] - last[1][i]) * c;
    }

    void get_state(double* state)
    {
        for (int i = 0; i < 6; i++)
            state[i] = last[0][i];
    }
};