mirror of
https://github.com/AxioDL/boo.git
synced 2025-06-06 22:53:39 +00:00
Merge pull request #31 from lioncash/hid
HIDParser: Use std::array where applicable
This commit is contained in:
commit
4d1c7d444d
@ -1,8 +1,8 @@
|
||||
#include "boo/inputdev/HIDParser.hpp"
|
||||
|
||||
#include <algorithm>
|
||||
#include <array>
|
||||
#include <map>
|
||||
#include <type_traits>
|
||||
|
||||
#undef min
|
||||
#undef max
|
||||
@ -13,11 +13,14 @@ namespace boo {
|
||||
* http://www.usb.org/developers/hidpage/HID1_11.pdf
|
||||
*/
|
||||
|
||||
static const char* UsagePageNames[] = {"Undefined", "Generic Desktop", "Simulation", "VR", "Sport",
|
||||
constexpr std::array<const char*, 14> UsagePageNames{
|
||||
"Undefined", "Generic Desktop", "Simulation", "VR", "Sport",
|
||||
"Game Controls", "Generic Device", "Keyboard", "LEDs", "Button",
|
||||
"Ordinal", "Telephony", "Consumer", "Digitizer"};
|
||||
"Ordinal", "Telephony", "Consumer", "Digitizer",
|
||||
};
|
||||
|
||||
static const char* GenericDesktopUsages[] = {"Undefined",
|
||||
constexpr std::array<const char*, 182> GenericDesktopUsages{
|
||||
"Undefined",
|
||||
"Pointer",
|
||||
"Mouse",
|
||||
"Reserved",
|
||||
@ -198,9 +201,11 @@ static const char* GenericDesktopUsages[] = {"Undefined",
|
||||
"System Display External",
|
||||
"System Display Both",
|
||||
"System Display Dual",
|
||||
"System Display Toggle Int/Ext"};
|
||||
"System Display Toggle Int/Ext",
|
||||
};
|
||||
|
||||
static const char* GameUsages[] = {"Undefined",
|
||||
constexpr std::array<const char*, 58> GameUsages{
|
||||
"Undefined",
|
||||
"3D Game Controller",
|
||||
"Pinball Device",
|
||||
"Gun Device",
|
||||
@ -257,7 +262,8 @@ static const char* GameUsages[] = {"Undefined",
|
||||
"Gun Safety",
|
||||
"Gemepad Fire/Jump",
|
||||
nullptr,
|
||||
"Gamepad Trigger"};
|
||||
"Gamepad Trigger",
|
||||
};
|
||||
|
||||
enum class HIDCollectionType : uint8_t {
|
||||
Physical,
|
||||
@ -382,21 +388,31 @@ HIDMainItem::HIDMainItem(uint32_t flags, HIDUsagePage usagePage, HIDUsage usage,
|
||||
, m_reportSize(reportSize) {}
|
||||
|
||||
const char* HIDMainItem::GetUsagePageName() const {
|
||||
if (int(m_usagePage) >= std::extent<decltype(UsagePageNames)>::value)
|
||||
const auto index = size_t(m_usagePage);
|
||||
|
||||
if (index >= UsagePageNames.size()) {
|
||||
return nullptr;
|
||||
return UsagePageNames[int(m_usagePage)];
|
||||
}
|
||||
|
||||
return UsagePageNames[index];
|
||||
}
|
||||
|
||||
const char* HIDMainItem::GetUsageName() const {
|
||||
const auto index = size_t(m_usage);
|
||||
|
||||
switch (m_usagePage) {
|
||||
case HIDUsagePage::GenericDesktop:
|
||||
if (int(m_usage) >= std::extent<decltype(GenericDesktopUsages)>::value)
|
||||
if (index >= GenericDesktopUsages.size()) {
|
||||
return nullptr;
|
||||
return GenericDesktopUsages[int(m_usage)];
|
||||
}
|
||||
return GenericDesktopUsages[index];
|
||||
|
||||
case HIDUsagePage::Game:
|
||||
if (int(m_usage) >= std::extent<decltype(GameUsages)>::value)
|
||||
if (index >= GameUsages.size()) {
|
||||
return nullptr;
|
||||
return GameUsages[int(m_usage)];
|
||||
}
|
||||
return GameUsages[index];
|
||||
|
||||
default:
|
||||
return nullptr;
|
||||
}
|
||||
@ -445,17 +461,17 @@ HIDParser::ParserStatus HIDParser::Parse(const PHIDP_PREPARSED_DATA descriptorDa
|
||||
USHORT length = caps.NumberInputButtonCaps;
|
||||
std::vector<HIDP_BUTTON_CAPS> bCaps(caps.NumberInputButtonCaps, HIDP_BUTTON_CAPS());
|
||||
HidP_GetButtonCaps(HidP_Input, bCaps.data(), &length, descriptorData);
|
||||
for (const HIDP_BUTTON_CAPS& caps : bCaps) {
|
||||
if (caps.IsRange) {
|
||||
int usage = caps.Range.UsageMin;
|
||||
for (int i = caps.Range.DataIndexMin; i <= caps.Range.DataIndexMax; ++i, ++usage) {
|
||||
inputItems.insert(std::make_pair(
|
||||
i, HIDMainItem(caps.BitField, HIDUsagePage(caps.UsagePage), HIDUsage(usage), std::make_pair(0, 1), 1)));
|
||||
for (const HIDP_BUTTON_CAPS& buttonCaps : bCaps) {
|
||||
if (buttonCaps.IsRange) {
|
||||
int usage = buttonCaps.Range.UsageMin;
|
||||
for (int i = buttonCaps.Range.DataIndexMin; i <= buttonCaps.Range.DataIndexMax; ++i, ++usage) {
|
||||
inputItems.emplace(i, HIDMainItem(buttonCaps.BitField, HIDUsagePage(buttonCaps.UsagePage), HIDUsage(usage),
|
||||
std::make_pair(0, 1), 1));
|
||||
}
|
||||
} else {
|
||||
inputItems.insert(std::make_pair(caps.NotRange.DataIndex,
|
||||
HIDMainItem(caps.BitField, HIDUsagePage(caps.UsagePage),
|
||||
HIDUsage(caps.NotRange.Usage), std::make_pair(0, 1), 1)));
|
||||
inputItems.emplace(buttonCaps.NotRange.DataIndex,
|
||||
HIDMainItem(buttonCaps.BitField, HIDUsagePage(buttonCaps.UsagePage),
|
||||
HIDUsage(buttonCaps.NotRange.Usage), std::make_pair(0, 1), 1));
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -465,19 +481,19 @@ HIDParser::ParserStatus HIDParser::Parse(const PHIDP_PREPARSED_DATA descriptorDa
|
||||
USHORT length = caps.NumberInputValueCaps;
|
||||
std::vector<HIDP_VALUE_CAPS> vCaps(caps.NumberInputValueCaps, HIDP_VALUE_CAPS());
|
||||
HidP_GetValueCaps(HidP_Input, vCaps.data(), &length, descriptorData);
|
||||
for (const HIDP_VALUE_CAPS& caps : vCaps) {
|
||||
if (caps.IsRange) {
|
||||
int usage = caps.Range.UsageMin;
|
||||
for (int i = caps.Range.DataIndexMin; i <= caps.Range.DataIndexMax; ++i, ++usage) {
|
||||
inputItems.insert(
|
||||
std::make_pair(i, HIDMainItem(caps.BitField, HIDUsagePage(caps.UsagePage), HIDUsage(usage),
|
||||
std::make_pair(caps.LogicalMin, caps.LogicalMax), caps.BitSize)));
|
||||
for (const HIDP_VALUE_CAPS& valueCaps : vCaps) {
|
||||
if (valueCaps.IsRange) {
|
||||
int usage = valueCaps.Range.UsageMin;
|
||||
for (int i = valueCaps.Range.DataIndexMin; i <= valueCaps.Range.DataIndexMax; ++i, ++usage) {
|
||||
inputItems.emplace(i, HIDMainItem(valueCaps.BitField, HIDUsagePage(valueCaps.UsagePage), HIDUsage(usage),
|
||||
std::make_pair(valueCaps.LogicalMin, valueCaps.LogicalMax),
|
||||
valueCaps.BitSize));
|
||||
}
|
||||
} else {
|
||||
inputItems.insert(
|
||||
std::make_pair(caps.NotRange.DataIndex,
|
||||
HIDMainItem(caps.BitField, HIDUsagePage(caps.UsagePage), HIDUsage(caps.NotRange.Usage),
|
||||
HIDRange(caps.LogicalMin, caps.LogicalMax), caps.BitSize)));
|
||||
inputItems.emplace(valueCaps.NotRange.DataIndex,
|
||||
HIDMainItem(valueCaps.BitField, HIDUsagePage(valueCaps.UsagePage),
|
||||
HIDUsage(valueCaps.NotRange.Usage),
|
||||
HIDRange(valueCaps.LogicalMin, valueCaps.LogicalMax), valueCaps.BitSize));
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -806,9 +822,9 @@ void HIDParser::ScanValues(const std::function<bool(const HIDMainItem& item, int
|
||||
continue;
|
||||
int32_t value = 0;
|
||||
if (it != end) {
|
||||
const HIDP_DATA& data = *it;
|
||||
if (data.DataIndex == idx) {
|
||||
value = data.RawValue;
|
||||
const HIDP_DATA& hidData = *it;
|
||||
if (hidData.DataIndex == idx) {
|
||||
value = hidData.RawValue;
|
||||
++it;
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user