mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-01-07 09:10:00 +01:00
27 lines
676 B
C++
27 lines
676 B
C++
#pragma once
|
|
#include "PadHandler.h"
|
|
|
|
class PadManager
|
|
{
|
|
bool m_inited;
|
|
std::unique_ptr<PadHandlerBase> m_pad_handler;
|
|
|
|
public:
|
|
PadManager();
|
|
~PadManager();
|
|
|
|
void Init(const u32 max_connect);
|
|
void Close();
|
|
|
|
std::vector<Pad>& GetPads() { return m_pad_handler->GetPads(); }
|
|
PadInfo& GetInfo() { return m_pad_handler->GetInfo(); }
|
|
std::vector<Button>& GetButtons(const u32 pad) { return m_pad_handler->GetButtons(pad); }
|
|
|
|
bool IsInited() const { return m_inited; }
|
|
};
|
|
|
|
typedef int(*GetPadHandlerCountCb)();
|
|
typedef PadHandlerBase*(*GetPadHandlerCb)(int i);
|
|
|
|
void SetGetPadHandlerCountCallback(GetPadHandlerCountCb cb);
|
|
void SetGetPadHandlerCallback(GetPadHandlerCb cb); |