mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-02-02 11:02:38 +01:00
896d7e5685
Also get rid of the typedef, since this is unnecessary in C++
39 lines
731 B
C++
39 lines
731 B
C++
// Copyright 2013 Dolphin Emulator Project
|
|
// Licensed under GPLv2
|
|
// Refer to the license.txt file included.
|
|
|
|
#pragma once
|
|
|
|
#include <string>
|
|
|
|
#include "InputCommon/ControllerEmu.h"
|
|
|
|
class GCPad : public ControllerEmu
|
|
{
|
|
public:
|
|
|
|
GCPad(const unsigned int index);
|
|
void GetInput(GCPadStatus* const pad);
|
|
void SetOutput(const u8 on);
|
|
void SetMotor(const u8 on);
|
|
|
|
bool GetMicButton() const;
|
|
|
|
std::string GetName() const override;
|
|
|
|
void LoadDefaults(const ControllerInterface& ciface) override;
|
|
|
|
private:
|
|
|
|
Buttons* m_buttons;
|
|
AnalogStick* m_main_stick;
|
|
AnalogStick* m_c_stick;
|
|
Buttons* m_dpad;
|
|
MixedTriggers* m_triggers;
|
|
ControlGroup* m_rumble;
|
|
ControlGroup* m_options;
|
|
|
|
const unsigned int m_index;
|
|
|
|
};
|