2023-04-27 22:19:39 -04:00
|
|
|
#ifndef LEGOINPUTMANAGER_H
|
|
|
|
#define LEGOINPUTMANAGER_H
|
|
|
|
|
2023-07-02 03:00:28 -04:00
|
|
|
#include "decomp.h"
|
2023-10-23 07:16:21 -04:00
|
|
|
#include "legoworld.h"
|
2023-07-02 02:53:54 -04:00
|
|
|
#include "mxpresenter.h"
|
2023-10-03 13:53:22 -04:00
|
|
|
#include "mxlist.h"
|
|
|
|
|
|
|
|
#include <dinput.h>
|
2023-06-19 01:36:07 -04:00
|
|
|
|
2023-07-02 02:53:54 -04:00
|
|
|
enum NotificationId
|
2023-04-27 22:19:39 -04:00
|
|
|
{
|
2023-06-19 00:02:00 -04:00
|
|
|
NONE = 0,
|
|
|
|
KEYDOWN = 7,
|
|
|
|
MOUSEUP = 8,
|
|
|
|
MOUSEDOWN = 9,
|
|
|
|
MOUSEMOVE = 10,
|
|
|
|
TIMER = 15
|
2023-04-27 22:19:39 -04:00
|
|
|
};
|
|
|
|
|
2023-10-03 13:53:22 -04:00
|
|
|
class LegoControlManager;
|
|
|
|
|
2023-06-29 04:10:08 -04:00
|
|
|
// VTABLE 0x100d8760
|
|
|
|
// SIZE 0x338
|
2023-07-02 02:53:54 -04:00
|
|
|
class LegoInputManager : public MxPresenter
|
2023-04-27 22:19:39 -04:00
|
|
|
{
|
|
|
|
public:
|
2023-06-29 04:10:08 -04:00
|
|
|
LegoInputManager();
|
|
|
|
virtual ~LegoInputManager() override;
|
|
|
|
|
2023-07-02 04:05:49 -04:00
|
|
|
__declspec(dllexport) void QueueEvent(NotificationId id, unsigned char p2, MxLong p3, MxLong p4, unsigned char p5);
|
2023-06-11 21:03:54 -04:00
|
|
|
__declspec(dllexport) void Register(MxCore *);
|
|
|
|
__declspec(dllexport) void UnRegister(MxCore *);
|
2023-04-27 22:19:39 -04:00
|
|
|
|
2023-09-21 14:51:24 -04:00
|
|
|
virtual MxResult Tickle() override; // vtable+0x8
|
2023-06-29 04:10:08 -04:00
|
|
|
|
2023-10-03 13:53:22 -04:00
|
|
|
void Destroy();
|
|
|
|
void CreateAndAcquireKeyboard(HWND hwnd);
|
|
|
|
void ReleaseDX();
|
|
|
|
MxResult GetJoystickId();
|
|
|
|
MxResult GetJoystickState(MxU32 *joystick_x, MxU32 *joystick_y, DWORD *buttons_state, MxU32 *pov_position);
|
|
|
|
void SetTimer();
|
|
|
|
void KillTimer();
|
2023-10-23 07:16:21 -04:00
|
|
|
void SetCamera(LegoCameraController *p_camera);
|
|
|
|
void ClearCamera();
|
|
|
|
void SetWorld(LegoWorld *p_world);
|
|
|
|
void ClearWorld();
|
|
|
|
|
|
|
|
inline void SetUnknown88(MxBool p_unk0x88) { m_unk0x88 = p_unk0x88; }
|
|
|
|
inline void SetUnknown336(MxBool p_unk0x336) { m_unk0x336 = p_unk0x336; }
|
2023-09-29 12:09:46 -04:00
|
|
|
|
2023-10-18 16:12:28 -04:00
|
|
|
inline LegoControlManager *GetControlManager() { return m_controlManager; }
|
2023-10-23 07:16:21 -04:00
|
|
|
inline LegoWorld *GetWorld() { return m_world; }
|
2023-10-18 16:12:28 -04:00
|
|
|
|
2023-10-03 13:53:22 -04:00
|
|
|
//private:
|
|
|
|
MxCriticalSection m_criticalSection;
|
|
|
|
MxList<undefined4> *m_unk0x5c; // list or hash table
|
2023-10-23 07:16:21 -04:00
|
|
|
LegoCameraController *m_camera;
|
|
|
|
LegoWorld *m_world;
|
2023-10-03 13:53:22 -04:00
|
|
|
MxList<undefined4> *m_unk0x68; // list or hash table
|
|
|
|
undefined4 m_unk0x6c;
|
|
|
|
undefined4 m_unk0x70;
|
|
|
|
undefined4 m_unk0x74;
|
|
|
|
UINT m_timer;
|
|
|
|
UINT m_timeout;
|
|
|
|
undefined m_unk0x80;
|
|
|
|
undefined m_unk0x81;
|
|
|
|
LegoControlManager* m_controlManager;
|
|
|
|
MxBool m_unk0x88;
|
|
|
|
IDirectInput *m_directInput;
|
|
|
|
IDirectInputDevice *m_directInputDevice;
|
|
|
|
undefined m_unk0x94;
|
|
|
|
undefined4 m_unk0x98;
|
|
|
|
undefined m_unk0x9c[0xF8];
|
|
|
|
undefined m_unk0x194;
|
|
|
|
MxBool m_unk0x195;
|
|
|
|
MxS32 m_joyid;
|
|
|
|
MxS32 m_joystickIndex;
|
|
|
|
JOYCAPS m_joyCaps;
|
2023-06-23 14:45:25 -04:00
|
|
|
MxBool m_useJoystick;
|
2023-10-03 13:53:22 -04:00
|
|
|
MxBool m_unk0x335;
|
|
|
|
MxBool m_unk0x336;
|
2023-04-27 22:19:39 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // LEGOINPUTMANAGER_H
|