aboutsummaryrefslogtreecommitdiff
path: root/manipulationhandler.h
blob: f900ec8bcc8cd356da906e0cf366d71f7f6df789 (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
#ifndef MANIPULATIONHANDLER_H
#define MANIPULATIONHANDLER_H

#include <QObject>
#include <armadillo>

class ManipulationHandler
    : public QObject
{
    Q_OBJECT
public:
    Q_ENUMS(Technique)
    enum Technique {
        TECHNIQUE_PLMP,
        TECHNIQUE_LAMP,
        TECHNIQUE_LSP,
        TECHNIQUE_PEKALSKA
    };

    ManipulationHandler(const arma::mat &X, const arma::uvec &cpIndices);
    void setTechnique(Technique technique);

signals:
    void cpChanged(const arma::mat &cpY) const;
    void rpChanged(const arma::mat &rpY) const;
    void mapChanged(const arma::mat &Y) const;
    void cpRewound(const arma::mat &cpY) const;
    void rpRewound(const arma::mat &rpY) const;
    void mapRewound(const arma::mat &Y) const;

public slots:
    void setCP(const arma::mat &Ys);
    void setRewind(double t);

private:
    arma::mat m_X, m_Y, m_firstY, m_prevY;
    arma::uvec m_cpIndices, m_rpIndices;
    bool m_hasFirst, m_hasPrev;
    Technique m_technique;
};

#endif // MANIPULATIONHANDLER_H