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
|
#include "ftnoir_tracker_joystick.h"
#include "opentrack/plugin-api.hpp"
static BOOL CALLBACK EnumJoysticksCallback( const DIDEVICEINSTANCE* pdidInstance, VOID* pContext )
{
auto self = ( TrackerControls* )pContext;
auto name = QString(pdidInstance->tszInstanceName);
auto guid = guid_to_string(pdidInstance->guidInstance);
TrackerControls::joys cur { name, guid };
self->_joys.append(cur);
return DIENUM_CONTINUE;
}
TrackerControls::TrackerControls() : tracker(nullptr)
{
ui.setupUi( this );
// Connect Qt signals to member-functions
connect(ui.buttonBox, SIGNAL(accepted()), this, SLOT(doOK()));
connect(ui.buttonBox, SIGNAL(rejected()), this, SLOT(doCancel()));
{
auto hr = CoInitialize( nullptr );
LPDIRECTINPUT8 g_pDI = nullptr;
if( FAILED( hr = DirectInput8Create( GetModuleHandle( NULL ), DIRECTINPUT_VERSION,
IID_IDirectInput8, ( VOID** )&g_pDI, NULL ) ) )
goto fin;
if( FAILED( hr = g_pDI->EnumDevices( DI8DEVCLASS_GAMECTRL,
EnumJoysticksCallback,
this,
DIEDFL_ATTACHEDONLY )))
goto fin;
fin:
if (g_pDI)
g_pDI->Release();
}
std::sort(_joys.begin(),
_joys.end(),
[&](const joys& j1, const joys& j2) -> bool
{
if (j1.name == j2.name)
return j1.guid < j2.guid;
return j1.name < j2.name;
});
{
int idx = 0;
for (int i = 0; i < _joys.size(); i++)
{
const joys& j = _joys[i];
if (j.guid == s.guid && j.name == s.joyid)
idx = i;
ui.joylist->addItem(j.name + " " + j.guid);
}
ui.joylist->setCurrentIndex(idx);
}
tie_setting(s.joy_1, ui.joy_1);
tie_setting(s.joy_2, ui.joy_2);
tie_setting(s.joy_3, ui.joy_3);
tie_setting(s.joy_4, ui.joy_4);
tie_setting(s.joy_5, ui.joy_5);
tie_setting(s.joy_6, ui.joy_6);
}
void TrackerControls::doOK() {
int idx = ui.joylist->currentIndex();
joys def { "", "" };
auto val = _joys.value(idx, def);
s.guid = val.guid;
s.joyid = val.name;
s.b->save();
if (tracker)
tracker->reload();
this->close();
}
void TrackerControls::doCancel() {
s.b->reload();
this->close();
}
|