/* Copyright (c) 2013 Stanislaw Halik * * 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_tracker_base/ftnoir_tracker_base.h" #include "ui_ftnoir_tracker_joystick_controls.h" #include #include #include #include #include #include #include #include #include #include "facetracknoir/global-settings.h" #ifndef DIRECTINPUT_VERSION # define DIRECTINPUT_VERSION 0x800 #endif #include #include #include #include #include #include #include "facetracknoir/options.h" using namespace options; struct DI_ENUM_CONTEXT { GUID preferred_instance; LPDIRECTINPUTDEVICE8* g_pJoystick; LPDIRECTINPUT8 g_pDI; }; struct settings { pbundle b; value axis_0; value axis_1; value axis_2; value axis_3; value axis_4; value axis_5; value joyid; value* axes[6]; settings() : b(bundle("tracker-joystick")), axis_0(b, "axis-0", 0), axis_1(b, "axis-1", 0), axis_2(b, "axis-2", 0), axis_3(b, "axis-3", 0), axis_4(b, "axis-4", 0), axis_5(b, "axis-5", 0), joyid(b, "joy-id", 0), axes{&axis_0, &axis_1, &axis_2, &axis_3, &axis_4, &axis_5} {} }; class FTNoIR_Tracker : public ITracker { public: FTNoIR_Tracker(); ~FTNoIR_Tracker(); void StartTracker(QFrame *frame); void GetHeadPoseData(double *data); void reload(); LPDIRECTINPUT8 g_pDI; LPDIRECTINPUTDEVICE8 g_pJoystick; int min_[8], max_[8]; GUID preferred; QMutex mtx; QFrame* frame; DIDEVICEINSTANCE def; int iter; // XXX bad style settings s; }; class TrackerControls: public QWidget, public ITrackerDialog { Q_OBJECT public: TrackerControls(); void registerTracker(ITracker *foo) { tracker = dynamic_cast(foo); } void unRegisterTracker() { tracker = NULL; } QList guids; Ui::UIJoystickControls ui; FTNoIR_Tracker* tracker; settings s; private slots: void doOK(); void doCancel(); }; class FTNoIR_TrackerDll : public Metadata { public: void getFullName(QString *strToBeFilled); void getShortName(QString *strToBeFilled); void getDescription(QString *strToBeFilled); void getIcon(QIcon *icon); private: QString trackerFullName; // Trackers' name and description QString trackerShortName; QString trackerDescription; };