fallout2-ce/src/dinput.cc

103 lines
1.4 KiB
C++
Raw Normal View History

2022-05-19 01:51:26 -07:00
#include "dinput.h"
2022-05-23 01:44:49 -07:00
#include <SDL.h>
2022-05-19 01:51:26 -07:00
// 0x4E0400
bool directInputInit()
{
2022-05-23 01:44:49 -07:00
if (SDL_InitSubSystem(SDL_INIT_EVENTS) != 0) {
2022-05-19 01:51:26 -07:00
return false;
}
if (!mouseDeviceInit()) {
goto err;
}
if (!keyboardDeviceInit()) {
goto err;
}
return true;
err:
2022-05-23 01:44:49 -07:00
directInputFree();
2022-05-19 01:51:26 -07:00
return false;
}
// 0x4E0478
void directInputFree()
{
2022-05-23 01:44:49 -07:00
SDL_QuitSubSystem(SDL_INIT_EVENTS);
2022-05-19 01:51:26 -07:00
}
// 0x4E04E8
bool mouseDeviceAcquire()
{
return true;
}
// 0x4E0514
bool mouseDeviceUnacquire()
{
return true;
}
// 0x4E053C
bool mouseDeviceGetData(MouseData* mouseState)
{
2022-05-23 01:44:49 -07:00
Uint32 buttons = SDL_GetRelativeMouseState(&(mouseState->x), &(mouseState->y));
mouseState->buttons[0] = (buttons & SDL_BUTTON(SDL_BUTTON_LEFT)) != 0;
mouseState->buttons[1] = (buttons & SDL_BUTTON(SDL_BUTTON_RIGHT)) != 0;
2022-05-19 01:51:26 -07:00
return true;
}
// 0x4E05A8
bool keyboardDeviceAcquire()
{
return true;
}
// 0x4E05D4
bool keyboardDeviceUnacquire()
{
return true;
}
// 0x4E05FC
bool keyboardDeviceReset()
{
2022-05-23 01:44:49 -07:00
SDL_FlushEvents(SDL_KEYDOWN, SDL_TEXTINPUT);
2022-05-19 01:51:26 -07:00
return true;
}
// 0x4E0650
bool keyboardDeviceGetData(KeyboardData* keyboardData)
{
2022-05-23 01:44:49 -07:00
return true;
2022-05-19 01:51:26 -07:00
}
// 0x4E070C
bool mouseDeviceInit()
{
2022-05-23 01:44:49 -07:00
return SDL_SetRelativeMouseMode(SDL_TRUE) == 0;
2022-05-19 01:51:26 -07:00
}
// 0x4E078C
void mouseDeviceFree()
{
}
// 0x4E07B8
bool keyboardDeviceInit()
{
return true;
}
// 0x4E0874
void keyboardDeviceFree()
{
}