2016-08-09 22:48:22 +00:00
|
|
|
// Copyright 2016 Dolphin Emulator Project
|
2016-08-08 16:38:22 +00:00
|
|
|
// Licensed under GPLv2+
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2016-08-09 22:48:22 +00:00
|
|
|
#include <QuartzCore/QuartzCore.h>
|
|
|
|
|
2016-08-08 16:38:22 +00:00
|
|
|
#include "InputCommon/ControllerInterface/Device.h"
|
|
|
|
|
2019-06-17 20:39:24 +00:00
|
|
|
namespace ciface::Quartz
|
2016-08-08 16:38:22 +00:00
|
|
|
{
|
2016-08-10 02:59:45 +00:00
|
|
|
std::string KeycodeToName(const CGKeyCode keycode);
|
|
|
|
|
2016-08-08 16:38:22 +00:00
|
|
|
class KeyboardAndMouse : public Core::Device
|
|
|
|
{
|
|
|
|
private:
|
|
|
|
class Key : public Input
|
|
|
|
{
|
|
|
|
public:
|
2016-08-09 22:48:22 +00:00
|
|
|
explicit Key(CGKeyCode keycode);
|
2016-08-08 16:38:22 +00:00
|
|
|
std::string GetName() const override;
|
|
|
|
ControlState GetState() const override;
|
|
|
|
|
|
|
|
private:
|
|
|
|
CGKeyCode m_keycode;
|
2016-08-10 02:54:59 +00:00
|
|
|
std::string m_name;
|
2016-08-08 16:38:22 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
class Cursor : public Input
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
Cursor(u8 index, const float& axis, const bool positive)
|
|
|
|
: m_axis(axis), m_index(index), m_positive(positive)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
std::string GetName() const override;
|
|
|
|
bool IsDetectable() override { return false; }
|
|
|
|
ControlState GetState() const override;
|
|
|
|
|
|
|
|
private:
|
|
|
|
const float& m_axis;
|
|
|
|
const u8 m_index;
|
|
|
|
const bool m_positive;
|
|
|
|
};
|
|
|
|
|
|
|
|
class Button : public Input
|
|
|
|
{
|
|
|
|
public:
|
2016-08-09 22:48:22 +00:00
|
|
|
explicit Button(CGMouseButton button) : m_button(button) {}
|
2016-08-08 16:38:22 +00:00
|
|
|
std::string GetName() const override;
|
|
|
|
ControlState GetState() const override;
|
|
|
|
|
|
|
|
private:
|
|
|
|
CGMouseButton m_button;
|
|
|
|
};
|
|
|
|
|
|
|
|
public:
|
|
|
|
void UpdateInput() override;
|
|
|
|
|
2016-08-09 22:48:22 +00:00
|
|
|
explicit KeyboardAndMouse(void* window);
|
2016-08-08 16:38:22 +00:00
|
|
|
|
|
|
|
std::string GetName() const override;
|
|
|
|
std::string GetSource() const override;
|
|
|
|
|
|
|
|
private:
|
|
|
|
struct
|
|
|
|
{
|
|
|
|
float x, y;
|
|
|
|
} m_cursor;
|
|
|
|
|
|
|
|
uint32_t m_windowid;
|
|
|
|
};
|
2019-06-17 20:39:24 +00:00
|
|
|
} // namespace ciface::Quartz
|