Mesen-SX/Windows/DirectInputManager.h

47 lines
1.2 KiB
C
Raw Normal View History

2019-02-13 14:10:36 -05:00
#pragma once
#include "stdafx.h"
#include <dinput.h>
#include "../Utilities/SimpleLock.h"
class Console;
struct DirectInputData
{
LPDIRECTINPUTDEVICE8 joystick;
DIJOYSTATE2 state;
DIJOYSTATE2 defaultState;
bool stateValid;
DIDEVICEINSTANCE instanceInfo;
};
class DirectInputManager
{
private:
static HWND _hWnd;
shared_ptr<Console> _console;
bool _needToUpdate = false;
bool _requestUpdate = false;
static LPDIRECTINPUT8 _directInput;
static vector<DirectInputData> _joysticks;
static vector<DirectInputData> _joysticksToAdd;
static std::vector<GUID> _processedGuids;
static std::vector<GUID> _xinputDeviceGuids;
void Initialize();
void UpdateInputState(DirectInputData& joystick);
static bool ProcessDevice(const DIDEVICEINSTANCE* pdidInstance);
static bool IsXInputDevice(const GUID* pGuidProductFromDirectInput);
static int __stdcall EnumJoysticksCallback(const DIDEVICEINSTANCE* pdidInstance, void* pContext);
static int __stdcall EnumObjectsCallback(const DIDEVICEOBJECTINSTANCE* pdidoi, void* pContext);
public:
DirectInputManager(shared_ptr<Console> console, HWND window);
~DirectInputManager();
void RefreshState();
void UpdateDeviceList();
int GetJoystickCount();
bool IsPressed(int port, int button);
};