Link DolphinIController.cpp, start matching CSmallAllocPool

Former-commit-id: 228319e2a5
This commit is contained in:
2022-09-11 11:45:19 -07:00
parent 4f851a605b
commit 6b306c1121
12 changed files with 362 additions and 36 deletions

View File

@@ -0,0 +1,26 @@
#ifndef __CDOLPHINCONTROLLER_HPP__
#define __CDOLPHINCONTROLLER_HPP__
#include "Kyoto/Input/IController.hpp"
class CDolphinController : public IController {
public:
CDolphinController();
void Poll();
uint GetDeviceCount() const;
CControllerGamepadData& GetGamepadData(int controller);
u32 GetControllerType(int) const;
void SetMotorState(EIOPort port, EMotorState state);
bool Initialize();
private:
PADStatus x4_status[4];
CControllerGamepadData x34_gamepadStates[4];
EMotorState x194_motorStates[4];
u32 x1a4_controllerTypes[4];
u32 x1b4_controllerTypePollTime[4];
u32 x1c4_;
u32 x1c8_invalidControllers;
u32 x1cc_;
};
#endif // __CDOLPHINCONTROLLER_HPP__