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