Merge pull request #12850 from jordan-woyak/device-sorting

ControllerInterface: Adjust sort priorities to ensure default keyboard-mouse device is first.
This commit is contained in:
Admiral H. Curtiss 2024-06-15 21:12:08 +02:00 committed by GitHub
commit ed4a09fa56
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
6 changed files with 15 additions and 1 deletions

View file

@ -4,6 +4,7 @@
#pragma once
#include <chrono>
#include <limits>
#include <memory>
#include <mutex>
#include <optional>
@ -147,6 +148,7 @@ public:
// A higher priority means it will be one of the first ones (smaller index), making it more
// likely to be index 0, which is automatically set as the default device when there isn't one.
// Every platform should have at least one device with priority >= 0.
static constexpr int DEFAULT_DEVICE_SORT_PRIORITY = std::numeric_limits<int>::max();
virtual int GetSortPriority() const { return 0; }
const std::vector<Input*>& Inputs() const { return m_inputs; }

View file

@ -281,7 +281,7 @@ std::string KeyboardMouse::GetSource() const
// Give this device a higher priority to make sure it shows first
int KeyboardMouse::GetSortPriority() const
{
return 5;
return DEFAULT_DEVICE_SORT_PRIORITY;
}
bool KeyboardMouse::IsVirtualDevice() const

View file

@ -69,6 +69,7 @@ public:
std::string GetName() const override;
std::string GetSource() const override;
int GetSortPriority() const override;
private:
void MainThreadInitialization(void* view);

View file

@ -289,6 +289,11 @@ std::string KeyboardAndMouse::GetSource() const
return Quartz::GetSourceName();
}
int KeyboardAndMouse::GetSortPriority() const
{
return DEFAULT_DEVICE_SORT_PRIORITY;
}
ControlState KeyboardAndMouse::Cursor::GetState() const
{
return std::max(0.0, ControlState(m_axis) / (m_positive ? 1.0 : -1.0));

View file

@ -421,6 +421,11 @@ std::string KeyboardMouse::GetSource() const
return std::string(SOURCE_NAME);
}
int KeyboardMouse::GetSortPriority() const
{
return DEFAULT_DEVICE_SORT_PRIORITY;
}
KeyboardMouse::Key::Key(Display* const display, KeyCode keycode, const char* keyboard)
: m_display(display), m_keyboard(keyboard), m_keycode(keycode)
{

View file

@ -120,6 +120,7 @@ public:
std::string GetName() const override;
std::string GetSource() const override;
int GetSortPriority() const override;
private:
Window m_window;