mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-01-18 12:01:15 +01:00
6a75ea5653
ControllerEmu, the class, is essentially acting like a namespace for ControlGroup. This makes it impossible to forward declare any of the internals. It also globs a bunch of classes together which is kind of a pain to manage. This splits ControlGroup and the classes it contains into their own source files and situates them all within a namespace, which gets them out of global scope. Since this allows forward declarations for the once-internal classes, it now requires significantly less files to be rebuilt if anything is changed in the ControllerEmu portion of code. It does not split out the settings classes yet, however, as it would be preferable to make a settings base class that all settings derive from, but this would be a functional change -- this commit only intends to move around existing code. Extracting the settings class will be done in another commit.
51 lines
994 B
C++
51 lines
994 B
C++
// Copyright 2015 Dolphin Emulator Project
|
|
// Licensed under GPLv2+
|
|
// Refer to the license.txt file included.
|
|
|
|
#pragma once
|
|
|
|
#include <string>
|
|
|
|
#include "InputCommon/ControllerEmu/ControllerEmu.h"
|
|
|
|
struct KeyboardStatus;
|
|
|
|
namespace ControllerEmu
|
|
{
|
|
class ControlGroup;
|
|
class Buttons;
|
|
}
|
|
|
|
enum class KeyboardGroup
|
|
{
|
|
Kb0x,
|
|
Kb1x,
|
|
Kb2x,
|
|
Kb3x,
|
|
Kb4x,
|
|
Kb5x,
|
|
|
|
Options
|
|
};
|
|
|
|
class GCKeyboard : public ControllerEmu::EmulatedController
|
|
{
|
|
public:
|
|
explicit GCKeyboard(unsigned int index);
|
|
KeyboardStatus GetInput() const;
|
|
std::string GetName() const override;
|
|
ControllerEmu::ControlGroup* GetGroup(KeyboardGroup group);
|
|
void LoadDefaults(const ControllerInterface& ciface) override;
|
|
|
|
private:
|
|
ControllerEmu::Buttons* m_keys0x;
|
|
ControllerEmu::Buttons* m_keys1x;
|
|
ControllerEmu::Buttons* m_keys2x;
|
|
ControllerEmu::Buttons* m_keys3x;
|
|
ControllerEmu::Buttons* m_keys4x;
|
|
ControllerEmu::Buttons* m_keys5x;
|
|
ControllerEmu::ControlGroup* m_options;
|
|
|
|
const unsigned int m_index;
|
|
};
|