summaryrefslogtreecommitdiffhomepage
path: root/tracker-linux-joystick/ftnoir_tracker_linux_joystick.h
blob: 6ddc49096efea18f72d8bcc8802e3e49f99cafbc (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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
/* Copyright (c) 2013 Stanislaw Halik <sthalik@misaki.pl>
 *
 * Permission to use, copy, modify, and/or distribute this software for any
 * purpose with or without fee is hereby granted, provided that the above
 * copyright notice and this permission notice appear in all copies.
 */
#pragma once
#include "ui_ftnoir_tracker_linux_joystick_controls.h"
#include <QComboBox>
#include <QCheckBox>
#include <QSpinBox>
#include <QMessageBox>
#include <QSettings>
#include <QList>
#include <QFrame>
#include <QStringList>
#include <cmath>
#include "api/plugin-api.hpp"

#include <linux/joystick.h>
#include <fcntl.h>
#include <unistd.h>

#include "options/options.hpp"
using namespace options;

struct settings : opts {
    value<QString> guid;
    value<int> joy_1, joy_2, joy_3, joy_4, joy_5, joy_6;
    settings() :
        opts("tracker-linux-joystick"),
        guid(b, "joy-guid", ""),
        joy_1(b, "axis-map-1", 1),
        joy_2(b, "axis-map-2", 2),
        joy_3(b, "axis-map-3", 3),
        joy_4(b, "axis-map-4", 4),
        joy_5(b, "axis-map-5", 5),
        joy_6(b, "axis-map-6", 6)
    {}
};

struct linux_joystick {
    QString name;
    QString device_id;
    QString dev;
};
QList<linux_joystick> getJoysticks();
QString getJoystickDevice(QString guid);

class joystick : public ITracker
{
public:
    joystick();
    ~joystick();
    module_status start_tracker(QFrame *);
    void data(double *data);
    settings s;
    QString guid;
    static constexpr int AXIS_MAX = USHRT_MAX;
    int axes_state[6] = {0};
    int joy_fd;
};

class dialog_joystick: public ITrackerDialog
{
    Q_OBJECT
public:
    dialog_joystick();
    void register_tracker(ITracker *) {}
    void unregister_tracker() {}
    Ui::UILinuxJoystickControls ui;
    joystick* tracker;
    settings s;
    struct joys {
        QString name;
        QString guid;
    };
    QList<joys> joys_;
private slots:
    void doOK();
    void doCancel();
};

class joystickDll : public Metadata
{
    Q_OBJECT

    QString name() { return tr("Linux Joystick input"); }
    QIcon icon() { return QIcon(":/images/opentrack.png"); }
};