2015-05-24 04:55:12 +00:00
|
|
|
// Copyright 2014 Dolphin Emulator Project
|
2015-05-17 23:08:10 +00:00
|
|
|
// Licensed under GPLv2+
|
2014-12-10 09:45:45 +00:00
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2015-04-26 21:53:36 +00:00
|
|
|
#include <functional>
|
2015-01-26 12:54:54 +00:00
|
|
|
|
2016-01-13 03:34:13 +00:00
|
|
|
#include "Common/CommonTypes.h"
|
|
|
|
|
2015-05-08 21:28:03 +00:00
|
|
|
struct GCPadStatus;
|
2014-12-10 09:45:45 +00:00
|
|
|
|
2015-12-31 17:09:47 +00:00
|
|
|
namespace GCAdapter
|
2014-12-10 09:45:45 +00:00
|
|
|
{
|
2016-01-06 06:57:08 +00:00
|
|
|
enum ControllerTypes
|
|
|
|
{
|
2016-06-24 08:43:46 +00:00
|
|
|
CONTROLLER_NONE = 0,
|
|
|
|
CONTROLLER_WIRED = 1,
|
|
|
|
CONTROLLER_WIRELESS = 2
|
2016-01-06 06:57:08 +00:00
|
|
|
};
|
2014-12-10 09:45:45 +00:00
|
|
|
void Init();
|
2015-11-08 17:13:58 +00:00
|
|
|
void ResetRumble();
|
2014-12-10 09:45:45 +00:00
|
|
|
void Shutdown();
|
2015-04-26 21:53:36 +00:00
|
|
|
void SetAdapterCallback(std::function<void(void)> func);
|
|
|
|
void StartScanThread();
|
|
|
|
void StopScanThread();
|
2016-08-02 01:16:00 +00:00
|
|
|
GCPadStatus Input(int chan);
|
2014-12-13 05:14:18 +00:00
|
|
|
void Output(int chan, u8 rumble_command);
|
2014-12-10 09:45:45 +00:00
|
|
|
bool IsDetected();
|
|
|
|
bool IsDriverDetected();
|
2015-12-31 17:09:47 +00:00
|
|
|
bool DeviceConnected(int chan);
|
2019-03-29 11:15:58 +00:00
|
|
|
void ResetDeviceType(int chan);
|
2015-12-31 17:09:47 +00:00
|
|
|
bool UseAdapter();
|
2014-12-10 09:45:45 +00:00
|
|
|
|
2016-06-24 08:43:46 +00:00
|
|
|
} // end of namespace GCAdapter
|