blob: 6683f8b9210ed127d697808d83d2c6c86778db01 (
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) 2012-2018 Team Kodi
* This file is part of Kodi - https://kodi.tv
*
* SPDX-License-Identifier: GPL-2.0-or-later
* See LICENSES/README.md for more information.
*/
#include "PeripheralImon.h"
#include "input/InputManager.h"
#include "settings/Settings.h"
#include "utils/log.h"
using namespace PERIPHERALS;
std::atomic<long> CPeripheralImon::m_lCountOfImonsConflictWithDInput(0L);
CPeripheralImon::CPeripheralImon(CPeripherals& manager,
const PeripheralScanResult& scanResult,
CPeripheralBus* bus)
: CPeripheralHID(manager, scanResult, bus)
{
m_features.push_back(FEATURE_IMON);
m_bImonConflictsWithDInput = false;
}
void CPeripheralImon::OnDeviceRemoved()
{
if (m_bImonConflictsWithDInput)
{
if (--m_lCountOfImonsConflictWithDInput == 0)
ActionOnImonConflict(false);
}
}
bool CPeripheralImon::InitialiseFeature(const PeripheralFeature feature)
{
if (feature == FEATURE_IMON)
{
#if defined(TARGET_WINDOWS)
if (HasSetting("disable_winjoystick") && GetSettingBool("disable_winjoystick"))
m_bImonConflictsWithDInput = true;
else
#endif // TARGET_WINDOWS
m_bImonConflictsWithDInput = false;
if (m_bImonConflictsWithDInput)
{
++m_lCountOfImonsConflictWithDInput;
ActionOnImonConflict(true);
}
return CPeripheral::InitialiseFeature(feature);
}
return CPeripheralHID::InitialiseFeature(feature);
}
void CPeripheralImon::AddSetting(const std::string& strKey,
const std::shared_ptr<const CSetting>& setting,
int order)
{
#if !defined(TARGET_WINDOWS)
if (strKey.compare("disable_winjoystick") != 0)
#endif // !TARGET_WINDOWS
CPeripheralHID::AddSetting(strKey, setting, order);
}
void CPeripheralImon::OnSettingChanged(const std::string& strChangedSetting)
{
if (strChangedSetting.compare("disable_winjoystick") == 0)
{
if (m_bImonConflictsWithDInput && !GetSettingBool("disable_winjoystick"))
{
m_bImonConflictsWithDInput = false;
if (--m_lCountOfImonsConflictWithDInput == 0)
ActionOnImonConflict(false);
}
else if (!m_bImonConflictsWithDInput && GetSettingBool("disable_winjoystick"))
{
m_bImonConflictsWithDInput = true;
++m_lCountOfImonsConflictWithDInput;
ActionOnImonConflict(true);
}
}
}
void CPeripheralImon::ActionOnImonConflict(bool deviceInserted /*= true*/)
{
}
|