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
|
/*
* Copyright (C) 2005-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 "PeripheralHID.h"
#include "guilib/LocalizeStrings.h"
#include "input/InputManager.h"
#include "peripherals/Peripherals.h"
#include "utils/log.h"
using namespace PERIPHERALS;
CPeripheralHID::CPeripheralHID(CPeripherals& manager,
const PeripheralScanResult& scanResult,
CPeripheralBus* bus)
: CPeripheral(manager, scanResult, bus)
{
m_strDeviceName = scanResult.m_strDeviceName.empty() ? g_localizeStrings.Get(35001)
: scanResult.m_strDeviceName;
m_features.push_back(FEATURE_HID);
}
CPeripheralHID::~CPeripheralHID(void)
{
if (!m_strKeymap.empty() && !GetSettingBool("do_not_use_custom_keymap"))
{
CLog::Log(LOGDEBUG, "{} - switching active keymapping to: default", __FUNCTION__);
m_manager.GetInputManager().RemoveKeymap(m_strKeymap);
}
}
bool CPeripheralHID::InitialiseFeature(const PeripheralFeature feature)
{
if (feature == FEATURE_HID && !m_bInitialised)
{
m_bInitialised = true;
if (HasSetting("keymap"))
m_strKeymap = GetSettingString("keymap");
if (m_strKeymap.empty())
{
m_strKeymap = StringUtils::Format("v{}p{}", VendorIdAsString(), ProductIdAsString());
SetSetting("keymap", m_strKeymap);
}
if (!IsSettingVisible("keymap"))
SetSettingVisible("do_not_use_custom_keymap", false);
if (!m_strKeymap.empty())
{
bool bKeymapEnabled(!GetSettingBool("do_not_use_custom_keymap"));
if (bKeymapEnabled)
{
CLog::Log(LOGDEBUG, "{} - adding keymapping for: {}", __FUNCTION__, m_strKeymap);
m_manager.GetInputManager().AddKeymap(m_strKeymap);
}
else
{
CLog::Log(LOGDEBUG, "{} - removing keymapping for: {}", __FUNCTION__, m_strKeymap);
m_manager.GetInputManager().RemoveKeymap(m_strKeymap);
}
}
CLog::Log(LOGDEBUG, "{} - initialised HID device ({}:{})", __FUNCTION__, m_strVendorId,
m_strProductId);
}
return CPeripheral::InitialiseFeature(feature);
}
void CPeripheralHID::OnSettingChanged(const std::string& strChangedSetting)
{
if (m_bInitialised && ((StringUtils::EqualsNoCase(strChangedSetting, "keymap") &&
!GetSettingBool("do_not_use_custom_keymap")) ||
StringUtils::EqualsNoCase(strChangedSetting, "keymap_enabled")))
{
m_bInitialised = false;
InitialiseFeature(FEATURE_HID);
}
}
|