summaryrefslogtreecommitdiffhomepage
path: root/ftnoir_protocol_libevdev/ftnoir_protocol_libevdev.h
blob: e753269e987d6c3c19401c99fbb3c5c0130c4303 (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
/* 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 "ftnoir_protocol_base/ftnoir_protocol_base.h"
#include "ui_ftnoir_libevdev_controls.h"

#include <QMessageBox>
#include <QSettings>
#include "facetracknoir/global-settings.h"

extern "C" {
#   include <libevdev-1.0/libevdev/libevdev.h>
#   include <libevdev-1.0/libevdev/libevdev-uinput.h>
}

class FTNoIR_Protocol : public IProtocol
{
public:
	FTNoIR_Protocol();
	~FTNoIR_Protocol();
    bool checkServerInstallationOK() {
        return dev != NULL;
    }
    void sendHeadposeToGame( double *headpose, double *rawheadpose );
    QString getGameName() {
        return "Virtual joystick for Linux";
    }
private:
    struct libevdev* dev;
    struct libevdev_uinput* uidev;
};

// Widget that has controls for FTNoIR protocol client-settings.
class LibevdevControls: public QWidget, public IProtocolDialog
{
    Q_OBJECT
public:

    explicit LibevdevControls();
    virtual ~LibevdevControls();
    void showEvent ( QShowEvent *) {}

    void Initialize(QWidget *);
    void registerProtocol(IProtocol *l) {}
	void unRegisterProtocol() {}

private:
    Ui::UICLibevdevControls ui;
	void save();

private slots:
	void doOK();
	void doCancel();
};

//*******************************************************************************************************
// FaceTrackNoIR Protocol DLL. Functions used to get general info on the Protocol
//*******************************************************************************************************
class FTNoIR_ProtocolDll : public Metadata
{
public:
	FTNoIR_ProtocolDll();
	~FTNoIR_ProtocolDll();

    void getFullName(QString *strToBeFilled) { *strToBeFilled = QString("libevdev"); }
    void getShortName(QString *strToBeFilled) { *strToBeFilled = QString("libevdev"); }
    void getDescription(QString *strToBeFilled) { *strToBeFilled = QString("libevdev"); }

    void getIcon(QIcon *icon) { *icon = QIcon(":/images/linux.png"); }
};