summaryrefslogtreecommitdiffstats
path: root/src/plugins/sensorgestures/qtsensors/qslamgesturerecognizer.h
blob: dbc263e523bf75766b529b12b395a0f94ada23b2 (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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
// Copyright (C) 2016 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only


#ifndef QSLAMSENSORGESTURERECOGNIZER_H
#define QSLAMSENSORGESTURERECOGNIZER_H

#include <QtSensors/qsensorgesturerecognizer.h>
#include <QtSensors/QOrientationSensor>
#include <QtSensors/QAccelerometer>
#include <QtSensors/QAccelerometerReading>
#include <QtSensors/QOrientationReading>
QT_BEGIN_NAMESPACE

class QSlamSensorGestureRecognizer : public QSensorGestureRecognizer
{
    Q_OBJECT
public:
    explicit QSlamSensorGestureRecognizer(QObject *parent = 0);
    ~QSlamSensorGestureRecognizer();

    void create() override;

    QString id() const override;
    bool start() override;
    bool stop() override;
    bool isActive() override;

Q_SIGNALS:
    void slam();

private slots:
    void accelChanged(QAccelerometerReading *reading);
    void orientationReadingChanged(QOrientationReading *reading);
    void doSlam();

private:

    QAccelerometer *accel;
    QOrientationReading *orientationReading;
    int accelRange;
    bool active;

    bool wasNegative;
    qreal lastX;
    qreal lastY;
    qreal lastZ;
    qreal detectedX;

    bool detecting;

    qreal accelX;
    qreal roll;
    QList<qreal> restingList;
    bool resting;

    bool hasBeenResting();
    quint64 lastTimestamp;
    quint64 lapsedTime;
    bool timerActive;
};

QT_END_NAMESPACE
#endif // QSLAMSENSORGESTURERECOGNIZER_H