mirror of
https://github.com/hrydgard/ppsspp.git
synced 2024-11-23 21:39:52 +00:00
21 lines
411 B
C++
21 lines
411 B
C++
#pragma once
|
|
|
|
#include "InputDevice.h"
|
|
#include "Xinput.h"
|
|
|
|
|
|
class XinputDevice : public InputDevice {
|
|
public:
|
|
XinputDevice();
|
|
~XinputDevice();
|
|
virtual int UpdateState();
|
|
virtual bool IsPad() { return true; }
|
|
|
|
private:
|
|
void UpdatePad(int pad, const XINPUT_STATE &state);
|
|
void ApplyButtons(int pad, const XINPUT_STATE &state);
|
|
int check_delay[4]{};
|
|
XINPUT_STATE prevState[4]{};
|
|
u32 prevButtons[4]{};
|
|
};
|