RetroArch/input/drivers/dinput.c

789 lines
20 KiB
C
Raw Normal View History

2012-04-21 21:13:50 +00:00
/* RetroArch - A frontend for libretro.
2014-01-01 00:50:59 +00:00
* Copyright (C) 2010-2014 - Hans-Kristian Arntzen
2016-01-10 03:33:01 +00:00
* Copyright (C) 2011-2016 - Daniel De Matteis
*
2012-04-21 21:13:50 +00:00
* RetroArch is free software: you can redistribute it and/or modify it under the terms
2011-06-10 14:55:05 +00:00
* of the GNU General Public License as published by the Free Software Found-
* ation, either version 3 of the License, or (at your option) any later version.
*
2012-04-21 21:13:50 +00:00
* RetroArch is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
2011-06-10 14:55:05 +00:00
* without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
* PURPOSE. See the GNU General Public License for more details.
*
2012-04-21 21:31:57 +00:00
* You should have received a copy of the GNU General Public License along with RetroArch.
2011-06-10 14:55:05 +00:00
* If not, see <http://www.gnu.org/licenses/>.
*/
#ifdef _MSC_VER
2012-11-15 08:40:31 +00:00
#pragma comment(lib, "dinput8")
#endif
2012-09-28 20:38:42 +00:00
#undef DIRECTINPUT_VERSION
#define DIRECTINPUT_VERSION 0x0800
2015-03-13 03:47:58 +00:00
#ifndef WM_MOUSEHWHEEL
#define WM_MOUSEHWHEEL 0x20e
#endif
2006-01-17 05:28:35 +00:00
#ifndef WM_MOUSEWHEEL
#define WM_MOUSEWHEEL 0x020A
#endif
2012-09-28 20:38:42 +00:00
#include <dinput.h>
#include <stdlib.h>
#include <stddef.h>
#include <string.h>
#include <boolean.h>
#include <windowsx.h>
2016-09-11 11:21:56 +00:00
#ifdef HAVE_CONFIG_H
#include "../../config.h"
#endif
2016-09-05 16:31:32 +00:00
#include "../../configuration.h"
2015-11-23 11:03:38 +00:00
#include "../../verbosity.h"
2016-12-03 05:14:33 +00:00
#include "../../tasks/tasks_internal.h"
2016-12-07 07:10:02 +00:00
#include "../../gfx/video_driver.h"
#include "../input_config.h"
#include "../input_joypad_driver.h"
2015-01-12 05:16:52 +00:00
#include "../input_keymaps.h"
2011-06-10 14:55:05 +00:00
/* Keep track of which pad indexes are 360 controllers.
* Not static, will be read in xinput_joypad.c
* -1 = not xbox pad, otherwise 0..3
*/
int g_xinput_pad_indexes[MAX_USERS];
bool g_xinput_block_pads;
2014-09-09 16:15:17 +00:00
/* Context has to be global as joypads also ride on this context. */
LPDIRECTINPUT8 g_dinput_ctx;
2012-09-28 20:38:42 +00:00
2013-11-05 19:49:04 +00:00
struct pointer_status
{
int pointer_id;
int pointer_x;
int pointer_y;
struct pointer_status *next;
};
2012-09-30 09:26:26 +00:00
struct dinput_input
{
bool blocked;
2012-09-30 09:26:26 +00:00
LPDIRECTINPUTDEVICE8 keyboard;
2012-10-28 09:42:20 +00:00
LPDIRECTINPUTDEVICE8 mouse;
const input_device_driver_t *joypad;
2012-09-30 09:26:26 +00:00
uint8_t state[256];
2012-10-28 09:42:20 +00:00
int window_pos_x;
int window_pos_y;
2012-10-28 09:42:20 +00:00
int mouse_x;
2015-10-08 08:16:28 +00:00
int mouse_last_x;
2012-10-28 09:42:20 +00:00
int mouse_y;
2015-10-08 08:16:28 +00:00
int mouse_last_y;
2015-03-12 12:35:37 +00:00
bool mouse_l, mouse_r, mouse_m, mouse_wu, mouse_wd, mouse_hwu, mouse_hwd;
2014-09-09 16:15:17 +00:00
struct pointer_status pointer_head; /* dummy head for easier iteration */
2012-09-30 09:26:26 +00:00
};
2015-04-08 00:02:10 +00:00
void dinput_destroy_context(void)
2012-09-30 09:26:26 +00:00
{
if (!g_dinput_ctx)
return;
IDirectInput8_Release(g_dinput_ctx);
g_dinput_ctx = NULL;
2012-09-30 09:26:26 +00:00
}
2015-04-08 00:04:02 +00:00
bool dinput_init_context(void)
2012-09-30 09:26:26 +00:00
{
2015-12-04 09:41:05 +00:00
bool context_initialized = false;
if (g_dinput_ctx)
2012-09-30 09:26:26 +00:00
return true;
CoInitialize(NULL);
2014-09-09 16:15:17 +00:00
/* Who said we shouldn't have same call signature in a COM API? <_< */
2015-11-14 20:58:19 +00:00
#ifdef __cplusplus
2015-12-04 09:41:05 +00:00
context_initialized = (SUCCEEDED(DirectInput8Create(
2015-11-14 20:58:19 +00:00
GetModuleHandle(NULL), DIRECTINPUT_VERSION, IID_IDirectInput8,
2015-12-04 09:41:05 +00:00
(void**)&g_dinput_ctx, NULL)));
2015-11-14 20:58:19 +00:00
#else
2015-12-04 09:41:05 +00:00
context_initialized = (SUCCEEDED(DirectInput8Create(
2015-11-14 20:58:19 +00:00
GetModuleHandle(NULL), DIRECTINPUT_VERSION, &IID_IDirectInput8,
2015-12-04 09:41:05 +00:00
(void**)&g_dinput_ctx, NULL)));
2015-11-14 20:58:19 +00:00
#endif
2015-12-04 09:41:05 +00:00
2015-12-04 10:28:13 +00:00
if (!context_initialized)
2015-12-04 09:41:05 +00:00
goto error;
2012-09-30 09:26:26 +00:00
return true;
2015-12-04 09:41:05 +00:00
error:
RARCH_ERR("Failed to initialize DirectInput.\n");
return false;
2012-09-30 09:26:26 +00:00
}
static void *dinput_init(void)
{
struct dinput_input *di = NULL;
2015-03-20 21:32:09 +00:00
settings_t *settings = config_get_ptr();
2012-09-30 09:26:26 +00:00
if (!dinput_init_context())
{
RARCH_ERR("Failed to start DirectInput driver.\n");
2012-09-30 09:26:26 +00:00
return NULL;
}
2012-09-30 09:26:26 +00:00
di = (struct dinput_input*)calloc(1, sizeof(*di));
2012-09-30 09:26:26 +00:00
if (!di)
return NULL;
2015-11-14 20:58:19 +00:00
#ifdef __cplusplus
if (FAILED(IDirectInput8_CreateDevice(g_dinput_ctx, GUID_SysKeyboard, &di->keyboard, NULL)))
2014-01-11 17:09:03 +00:00
{
RARCH_ERR("Failed to create keyboard device.\n");
di->keyboard = NULL;
2014-01-11 17:09:03 +00:00
}
2015-11-14 20:58:19 +00:00
if (FAILED(IDirectInput8_CreateDevice(g_dinput_ctx, GUID_SysMouse, &di->mouse, NULL)))
2014-01-11 17:09:03 +00:00
{
RARCH_ERR("Failed to create mouse device.\n");
di->mouse = NULL;
2014-01-11 17:09:03 +00:00
}
2015-11-14 20:58:19 +00:00
#else
if (FAILED(IDirectInput8_CreateDevice(g_dinput_ctx, &GUID_SysKeyboard, &di->keyboard, NULL)))
{
RARCH_ERR("Failed to create keyboard device.\n");
di->keyboard = NULL;
}
if (FAILED(IDirectInput8_CreateDevice(g_dinput_ctx, &GUID_SysMouse, &di->mouse, NULL)))
{
RARCH_ERR("Failed to create mouse device.\n");
di->mouse = NULL;
}
#endif
2012-09-30 09:26:26 +00:00
if (di->keyboard)
{
IDirectInputDevice8_SetDataFormat(di->keyboard, &c_dfDIKeyboard);
IDirectInputDevice8_SetCooperativeLevel(di->keyboard,
2015-11-29 00:39:28 +00:00
(HWND)video_driver_window_get(), DISCL_NONEXCLUSIVE | DISCL_FOREGROUND);
IDirectInputDevice8_Acquire(di->keyboard);
}
2012-09-30 09:26:26 +00:00
if (di->mouse)
{
DIDATAFORMAT c_dfDIMouse2_custom = c_dfDIMouse2;
c_dfDIMouse2_custom.dwFlags = DIDF_ABSAXIS;
IDirectInputDevice8_SetDataFormat(di->mouse, &c_dfDIMouse2_custom);
2015-11-29 00:39:28 +00:00
IDirectInputDevice8_SetCooperativeLevel(di->mouse, (HWND)video_driver_window_get(),
DISCL_NONEXCLUSIVE | DISCL_FOREGROUND);
IDirectInputDevice8_Acquire(di->mouse);
}
2012-10-28 09:42:20 +00:00
input_keymaps_init_keyboard_lut(rarch_key_map_dinput);
di->joypad = input_joypad_init_driver(settings->input.joypad_driver, di);
2012-09-30 09:26:26 +00:00
return di;
}
2016-07-16 17:43:07 +00:00
#if __cplusplus
extern "C" {
#endif
bool doubleclick_on_titlebar_pressed(void);
void unset_doubleclick_on_titlebar(void);
#if __cplusplus
}
#endif
2016-07-16 15:44:21 +00:00
2012-09-30 09:26:26 +00:00
static void dinput_poll(void *data)
{
struct dinput_input *di = (struct dinput_input*)data;
2016-11-30 07:07:17 +00:00
if (!di)
return;
2012-09-30 09:26:26 +00:00
memset(di->state, 0, sizeof(di->state));
if (di->keyboard)
2012-09-30 09:26:26 +00:00
{
2014-09-09 16:15:17 +00:00
if (FAILED(IDirectInputDevice8_GetDeviceState(
di->keyboard, sizeof(di->state), di->state)))
{
IDirectInputDevice8_Acquire(di->keyboard);
2014-09-09 16:15:17 +00:00
if (FAILED(IDirectInputDevice8_GetDeviceState(
di->keyboard, sizeof(di->state), di->state)))
memset(di->state, 0, sizeof(di->state));
}
2012-09-30 09:26:26 +00:00
}
if (di->mouse)
2012-10-28 09:42:20 +00:00
{
DIMOUSESTATE2 mouse_state;
memset(&mouse_state, 0, sizeof(mouse_state));
2014-09-09 16:15:17 +00:00
if (FAILED(IDirectInputDevice8_GetDeviceState(
di->mouse, sizeof(mouse_state), &mouse_state)))
{
IDirectInputDevice8_Acquire(di->mouse);
2014-09-09 16:15:17 +00:00
if (FAILED(IDirectInputDevice8_GetDeviceState(
di->mouse, sizeof(mouse_state), &mouse_state)))
memset(&mouse_state, 0, sizeof(mouse_state));
}
2015-10-08 08:16:28 +00:00
di->mouse_last_x = di->mouse_x;
di->mouse_last_y = di->mouse_y;
2015-10-08 08:16:28 +00:00
di->mouse_x = di->window_pos_x;
di->mouse_y = di->window_pos_y;
if (!mouse_state.rgbButtons[0])
unset_doubleclick_on_titlebar();
if (doubleclick_on_titlebar_pressed())
di->mouse_l = 0;
else
2016-07-16 15:44:21 +00:00
di->mouse_l = mouse_state.rgbButtons[0];
di->mouse_r = mouse_state.rgbButtons[1];
di->mouse_m = mouse_state.rgbButtons[2];
/* No simple way to get absolute coordinates
2014-09-09 16:15:17 +00:00
* for RETRO_DEVICE_POINTER. Just use Win32 APIs. */
POINT point = {0};
GetCursorPos(&point);
2015-11-29 00:39:28 +00:00
ScreenToClient((HWND)video_driver_window_get(), &point);
di->mouse_x = point.x;
di->mouse_y = point.y;
2012-10-28 09:42:20 +00:00
}
if (di->joypad)
di->joypad->poll();
2012-09-30 09:26:26 +00:00
}
static bool dinput_keyboard_pressed(struct dinput_input *di, unsigned key)
{
unsigned sym;
2012-09-30 09:26:26 +00:00
if (key >= RETROK_LAST)
return false;
sym = input_keymaps_translate_rk_to_keysym((enum retro_key)key);
return di->state[sym] & 0x80;
2012-09-30 09:26:26 +00:00
}
2014-09-09 16:15:17 +00:00
static bool dinput_is_pressed(struct dinput_input *di,
const struct retro_keybind *binds,
2015-11-07 19:59:12 +00:00
unsigned port, unsigned id)
2012-09-30 09:26:26 +00:00
{
2017-01-10 02:44:53 +00:00
rarch_joypad_info_t joypad_info;
const struct retro_keybind *bind = &binds[id];
2017-01-10 02:44:53 +00:00
settings_t *settings = config_get_ptr();
2012-09-30 09:26:26 +00:00
if (id >= RARCH_BIND_LIST_END)
return false;
2017-01-10 02:44:53 +00:00
joypad_info.joy_idx = port;
joypad_info.auto_binds = settings->input.autoconf_binds[port];
joypad_info.axis_threshold = settings->input.axis_threshold;
2015-11-07 19:59:12 +00:00
if (!di->blocked && dinput_keyboard_pressed(di, bind->key))
return true;
2017-01-10 02:44:53 +00:00
if (binds && binds[id].valid && input_joypad_pressed(di->joypad, joypad_info, port, binds, id))
2015-11-07 19:59:12 +00:00
return true;
2015-11-07 19:59:12 +00:00
return false;
2012-09-30 09:26:26 +00:00
}
static int16_t dinput_pressed_analog(struct dinput_input *di,
const struct retro_keybind *binds,
2014-10-20 18:31:00 +00:00
unsigned idx, unsigned id)
{
const struct retro_keybind *bind_minus, *bind_plus;
int16_t pressed_minus = 0, pressed_plus = 0;
unsigned id_minus = 0, id_plus = 0;
2014-10-20 18:31:00 +00:00
input_conv_analog_id_to_bind_id(idx, id, &id_minus, &id_plus);
bind_minus = &binds[id_minus];
bind_plus = &binds[id_plus];
if (!bind_minus->valid || !bind_plus->valid)
return 0;
if (dinput_keyboard_pressed(di, bind_minus->key))
pressed_minus = -0x7fff;
if (dinput_keyboard_pressed(di, bind_plus->key))
pressed_plus = 0x7fff;
return pressed_plus + pressed_minus;
}
2015-11-07 19:59:12 +00:00
static bool dinput_meta_key_pressed(void *data, int key)
2015-07-17 01:31:51 +00:00
{
return false;
}
2012-10-28 09:42:20 +00:00
static int16_t dinput_lightgun_state(struct dinput_input *di, unsigned id)
{
switch (id)
{
case RETRO_DEVICE_ID_LIGHTGUN_X:
2015-10-08 08:16:28 +00:00
return di->mouse_x - di->mouse_last_x;
2012-10-28 09:42:20 +00:00
case RETRO_DEVICE_ID_LIGHTGUN_Y:
2015-10-08 08:16:28 +00:00
return di->mouse_y - di->mouse_last_y;
2012-10-28 09:42:20 +00:00
case RETRO_DEVICE_ID_LIGHTGUN_TRIGGER:
return di->mouse_l;
case RETRO_DEVICE_ID_LIGHTGUN_CURSOR:
return di->mouse_m;
case RETRO_DEVICE_ID_LIGHTGUN_TURBO:
return di->mouse_r;
case RETRO_DEVICE_ID_LIGHTGUN_START:
return di->mouse_m && di->mouse_r;
2012-10-28 09:42:20 +00:00
case RETRO_DEVICE_ID_LIGHTGUN_PAUSE:
return di->mouse_m && di->mouse_l;
2012-10-28 09:42:20 +00:00
}
2014-09-09 16:15:17 +00:00
return 0;
2012-10-28 09:42:20 +00:00
}
static int16_t dinput_mouse_state(struct dinput_input *di, unsigned id)
{
int16_t state = 0;
2012-10-28 09:42:20 +00:00
switch (id)
{
case RETRO_DEVICE_ID_MOUSE_X:
2015-10-08 08:16:28 +00:00
return di->mouse_x - di->mouse_last_x;
2012-10-28 09:42:20 +00:00
case RETRO_DEVICE_ID_MOUSE_Y:
2015-10-08 08:16:28 +00:00
return di->mouse_y - di->mouse_last_y;
2012-10-28 09:42:20 +00:00
case RETRO_DEVICE_ID_MOUSE_LEFT:
return di->mouse_l;
case RETRO_DEVICE_ID_MOUSE_RIGHT:
return di->mouse_r;
case RETRO_DEVICE_ID_MOUSE_WHEELUP:
if (di->mouse_wu)
state = 1;
di->mouse_wu = false;
return state;
case RETRO_DEVICE_ID_MOUSE_WHEELDOWN:
if (di->mouse_wd)
state = 1;
di->mouse_wd = false;
return state;
2015-03-12 12:35:37 +00:00
case RETRO_DEVICE_ID_MOUSE_HORIZ_WHEELUP:
if (di->mouse_hwu)
state = 1;
di->mouse_hwu = false;
return state;
2015-03-12 12:35:37 +00:00
case RETRO_DEVICE_ID_MOUSE_HORIZ_WHEELDOWN:
if (di->mouse_hwd)
state = 1;
di->mouse_hwd = false;
return state;
2014-04-25 21:44:53 +00:00
case RETRO_DEVICE_ID_MOUSE_MIDDLE:
return di->mouse_m;
2012-10-28 09:42:20 +00:00
}
2014-09-09 16:15:17 +00:00
return 0;
2012-10-28 09:42:20 +00:00
}
2015-10-08 08:16:28 +00:00
static int16_t dinput_mouse_state_screen(struct dinput_input *di, unsigned id)
{
switch (id)
{
case RETRO_DEVICE_ID_MOUSE_X:
return di->mouse_x;
case RETRO_DEVICE_ID_MOUSE_Y:
return di->mouse_y;
default:
2015-11-14 07:21:42 +00:00
break;
2015-10-08 08:16:28 +00:00
}
return dinput_mouse_state(di, id);
}
2014-09-09 16:15:17 +00:00
static int16_t dinput_pointer_state(struct dinput_input *di,
2014-10-20 18:31:00 +00:00
unsigned idx, unsigned id, bool screen)
2012-10-28 09:42:20 +00:00
{
bool pointer_down, inside;
int x, y;
struct video_viewport vp = {0};
2013-11-05 19:49:04 +00:00
int16_t res_x = 0, res_y = 0, res_screen_x = 0, res_screen_y = 0;
unsigned num = 0;
2013-11-05 19:49:04 +00:00
struct pointer_status *check_pos = di->pointer_head.next;
2014-10-20 18:31:00 +00:00
while (check_pos && num < idx)
2013-11-05 19:49:04 +00:00
{
num++;
check_pos = check_pos->next;
2013-11-05 19:49:04 +00:00
}
2014-10-20 18:31:00 +00:00
if (!check_pos && idx > 0) /* idx = 0 has mouse fallback. */
2012-12-27 11:26:13 +00:00
return 0;
x = di->mouse_x;
y = di->mouse_y;
pointer_down = di->mouse_l;
if (check_pos)
{
x = check_pos->pointer_x;
y = check_pos->pointer_y;
pointer_down = true;
}
2013-11-05 19:49:04 +00:00
if (!(video_driver_translate_coord_viewport_wrap(&vp, x, y,
&res_x, &res_y, &res_screen_x, &res_screen_y)))
2012-10-28 09:42:20 +00:00
return 0;
2013-01-11 15:23:04 +00:00
if (screen)
{
res_x = res_screen_x;
res_y = res_screen_y;
2013-01-11 15:23:04 +00:00
}
inside = (res_x >= -0x7fff) && (res_y >= -0x7fff);
2012-10-28 09:42:20 +00:00
if (!inside)
return 0;
switch (id)
{
case RETRO_DEVICE_ID_POINTER_X:
return res_x;
case RETRO_DEVICE_ID_POINTER_Y:
return res_y;
case RETRO_DEVICE_ID_POINTER_PRESSED:
2013-11-05 19:49:04 +00:00
return pointer_down;
2012-10-28 09:42:20 +00:00
default:
2015-11-14 07:21:42 +00:00
break;
2012-10-28 09:42:20 +00:00
}
2015-11-14 07:21:42 +00:00
return 0;
2012-10-28 09:42:20 +00:00
}
2012-09-30 09:26:26 +00:00
static int16_t dinput_input_state(void *data,
const struct retro_keybind **binds, unsigned port,
2014-10-20 18:31:00 +00:00
unsigned device, unsigned idx, unsigned id)
2012-09-30 09:26:26 +00:00
{
rarch_joypad_info_t joypad_info;
int16_t ret;
struct dinput_input *di = (struct dinput_input*)data;
settings_t *settings = config_get_ptr();
joypad_info.joy_idx = port;
joypad_info.auto_binds = settings->input.autoconf_binds[port];
joypad_info.axis_threshold = settings->input.axis_threshold;
2012-09-30 09:26:26 +00:00
switch (device)
{
case RETRO_DEVICE_JOYPAD:
return dinput_is_pressed(di, binds[port], port, id);
2012-09-30 09:26:26 +00:00
case RETRO_DEVICE_KEYBOARD:
return dinput_keyboard_pressed(di, id);
case RETRO_DEVICE_ANALOG:
2016-10-26 21:05:14 +00:00
if (binds[port])
2016-11-06 10:59:37 +00:00
{
2016-10-26 21:05:14 +00:00
ret = dinput_pressed_analog(di, binds[port], idx, id);
2016-11-06 10:59:37 +00:00
if (!ret)
ret = input_joypad_analog(di->joypad, joypad_info,
port,
idx, id, settings->input.binds[port]);
2016-11-06 10:59:37 +00:00
return ret;
}
return 0;
2012-09-30 09:26:26 +00:00
2012-10-28 09:42:20 +00:00
case RETRO_DEVICE_MOUSE:
return dinput_mouse_state(di, id);
2015-10-08 08:16:28 +00:00
case RARCH_DEVICE_MOUSE_SCREEN:
2015-11-07 19:59:12 +00:00
return dinput_mouse_state_screen(di, id);
2015-10-08 08:16:28 +00:00
2012-10-28 09:42:20 +00:00
case RETRO_DEVICE_POINTER:
2013-01-11 15:23:04 +00:00
case RARCH_DEVICE_POINTER_SCREEN:
2014-10-20 18:31:00 +00:00
return dinput_pointer_state(di, idx, id,
2014-09-09 16:15:17 +00:00
device == RARCH_DEVICE_POINTER_SCREEN);
2012-10-28 09:42:20 +00:00
2012-09-30 09:26:26 +00:00
case RETRO_DEVICE_LIGHTGUN:
2012-10-28 09:42:20 +00:00
return dinput_lightgun_state(di, id);
2012-09-30 09:26:26 +00:00
}
return 0;
2012-09-30 09:26:26 +00:00
}
/* These are defined in later SDKs, thus ifdeffed. */
2013-11-05 19:49:04 +00:00
#ifndef WM_POINTERUPDATE
#define WM_POINTERUPDATE 0x0245
#endif
2013-11-05 19:49:04 +00:00
#ifndef WM_POINTERDOWN
#define WM_POINTERDOWN 0x0246
#endif
2013-11-05 19:49:04 +00:00
#ifndef WM_POINTERUP
#define WM_POINTERUP 0x0247
#endif
2013-11-05 19:49:04 +00:00
#ifndef GET_POINTERID_WPARAM
2014-09-09 16:15:17 +00:00
#define GET_POINTERID_WPARAM(wParam) (LOWORD(wParam))
2013-11-05 19:49:04 +00:00
#endif
2014-09-09 16:15:17 +00:00
/* Stores x/y in client coordinates. */
static void dinput_pointer_store_pos(
struct pointer_status *pointer, WPARAM lParam)
2013-11-05 19:49:04 +00:00
{
POINT point;
2013-11-05 19:49:04 +00:00
point.x = GET_X_LPARAM(lParam);
point.y = GET_Y_LPARAM(lParam);
2015-11-29 00:39:28 +00:00
ScreenToClient((HWND)video_driver_window_get(), &point);
2013-11-05 19:49:04 +00:00
pointer->pointer_x = point.x;
pointer->pointer_y = point.y;
}
static void dinput_add_pointer(struct dinput_input *di,
2014-09-09 16:15:17 +00:00
struct pointer_status *new_pointer)
2013-11-05 19:49:04 +00:00
{
struct pointer_status *insert_pos = NULL;
2013-11-05 19:49:04 +00:00
new_pointer->next = NULL;
insert_pos = &di->pointer_head;
2013-11-05 19:49:04 +00:00
while (insert_pos->next)
insert_pos = insert_pos->next;
insert_pos->next = new_pointer;
}
static void dinput_delete_pointer(struct dinput_input *di, int pointer_id)
2013-11-05 19:49:04 +00:00
{
struct pointer_status *check_pos = &di->pointer_head;
2013-11-05 19:49:04 +00:00
while (check_pos && check_pos->next)
{
if (check_pos->next->pointer_id == pointer_id)
{
struct pointer_status *to_delete = check_pos->next;
2013-11-05 19:49:04 +00:00
check_pos->next = check_pos->next->next;
free(to_delete);
}
check_pos = check_pos->next;
}
}
static struct pointer_status *dinput_find_pointer(
struct dinput_input *di, int pointer_id)
2013-11-05 19:49:04 +00:00
{
struct pointer_status *check_pos = di->pointer_head.next;
2013-11-05 19:49:04 +00:00
while (check_pos)
{
if (check_pos->pointer_id == pointer_id)
break;
check_pos = check_pos->next;
}
2013-11-05 19:49:04 +00:00
return check_pos;
}
static void dinput_clear_pointers(struct dinput_input *di)
2013-11-05 19:49:04 +00:00
{
struct pointer_status *pointer = &di->pointer_head;
2013-11-05 19:49:04 +00:00
while (pointer->next)
{
struct pointer_status *del = pointer->next;
2013-11-05 19:49:04 +00:00
pointer->next = pointer->next->next;
free(del);
}
}
#ifdef __cplusplus
extern "C"
#endif
bool dinput_handle_message(void *dinput, UINT message, WPARAM wParam, LPARAM lParam)
{
struct dinput_input *di = (struct dinput_input *)dinput;
2015-03-20 21:32:09 +00:00
settings_t *settings = config_get_ptr();
/* WM_POINTERDOWN : Arrives for each new touch event
* with a new ID - add to list.
* WM_POINTERUP : Arrives once the pointer is no
* longer down - remove from list.
* WM_POINTERUPDATE : arrives for both pressed and
* hovering pointers - ignore hovering
2013-11-05 19:49:04 +00:00
*/
2014-09-09 16:15:17 +00:00
2013-11-05 19:49:04 +00:00
switch (message)
{
case WM_MOUSEMOVE:
2015-11-28 17:39:43 +00:00
di->window_pos_x = GET_X_LPARAM(lParam);
di->window_pos_y = GET_Y_LPARAM(lParam);
break;
2014-01-16 07:17:20 +00:00
case WM_POINTERDOWN:
{
2015-11-28 17:39:43 +00:00
struct pointer_status *new_pointer =
(struct pointer_status *)malloc(sizeof(struct pointer_status));
if (!new_pointer)
{
RARCH_ERR("dinput_handle_message: pointer allocation in WM_POINTERDOWN failed.\n");
return false;
}
new_pointer->pointer_id = GET_POINTERID_WPARAM(wParam);
dinput_pointer_store_pos(new_pointer, lParam);
dinput_add_pointer(di, new_pointer);
return true;
}
2014-01-16 07:17:20 +00:00
case WM_POINTERUP:
2015-11-28 17:39:43 +00:00
{
int pointer_id = GET_POINTERID_WPARAM(wParam);
dinput_delete_pointer(di, pointer_id);
return true;
}
2014-01-16 07:17:20 +00:00
case WM_POINTERUPDATE:
2015-11-28 17:39:43 +00:00
{
int pointer_id = GET_POINTERID_WPARAM(wParam);
struct pointer_status *pointer = dinput_find_pointer(di, pointer_id);
if (pointer)
dinput_pointer_store_pos(pointer, lParam);
return true;
}
2014-01-16 07:17:20 +00:00
case WM_DEVICECHANGE:
2015-11-28 17:39:43 +00:00
if (di->joypad)
di->joypad->destroy();
di->joypad = input_joypad_init_driver(settings->input.joypad_driver, di);
2006-01-17 05:28:35 +00:00
break;
case WM_MOUSEWHEEL:
2015-11-28 17:39:43 +00:00
if (((short) HIWORD(wParam))/120 > 0)
di->mouse_wu = true;
if (((short) HIWORD(wParam))/120 < 0)
di->mouse_wd = true;
break;
2015-03-12 12:35:37 +00:00
case WM_MOUSEHWHEEL:
2015-11-28 17:39:43 +00:00
{
if (((short) HIWORD(wParam))/120 > 0)
di->mouse_hwu = true;
if (((short) HIWORD(wParam))/120 < 0)
di->mouse_hwd = true;
}
break;
2013-11-05 19:49:04 +00:00
}
2015-03-20 21:32:09 +00:00
2013-11-05 19:49:04 +00:00
return false;
}
2012-09-30 09:26:26 +00:00
static void dinput_free(void *data)
{
struct dinput_input *di = (struct dinput_input*)data;
LPDIRECTINPUT8 hold_ctx = g_dinput_ctx;
2012-09-30 09:26:26 +00:00
if (di)
{
2014-09-09 16:15:17 +00:00
/* Prevent a joypad driver to kill our context prematurely. */
g_dinput_ctx = NULL;
2014-01-16 07:17:20 +00:00
if (di->joypad)
di->joypad->destroy();
g_dinput_ctx = hold_ctx;
2012-09-30 09:26:26 +00:00
2014-09-09 16:15:17 +00:00
/* Clear any leftover pointers. */
dinput_clear_pointers(di);
2013-11-05 19:49:04 +00:00
2012-09-30 09:26:26 +00:00
if (di->keyboard)
IDirectInputDevice8_Release(di->keyboard);
2012-10-28 09:42:20 +00:00
if (di->mouse)
IDirectInputDevice8_Release(di->mouse);
2012-09-30 09:26:26 +00:00
free(di);
}
dinput_destroy_context();
}
2013-04-04 20:35:05 +00:00
static void dinput_grab_mouse(void *data, bool state)
{
struct dinput_input *di = (struct dinput_input*)data;
2013-04-04 20:35:05 +00:00
IDirectInputDevice8_Unacquire(di->mouse);
IDirectInputDevice8_SetCooperativeLevel(di->mouse,
2015-11-29 00:39:28 +00:00
(HWND)video_driver_window_get(),
2013-04-04 20:35:05 +00:00
state ?
(DISCL_EXCLUSIVE | DISCL_FOREGROUND) :
2013-04-04 20:56:52 +00:00
(DISCL_NONEXCLUSIVE | DISCL_FOREGROUND));
2013-04-04 20:35:05 +00:00
IDirectInputDevice8_Acquire(di->mouse);
}
2014-09-09 16:15:17 +00:00
static bool dinput_set_rumble(void *data, unsigned port,
enum retro_rumble_effect effect, uint16_t strength)
{
struct dinput_input *di = (struct dinput_input*)data;
if (!di)
return false;
return input_joypad_set_rumble(di->joypad, port, effect, strength);
}
static const input_device_driver_t *dinput_get_joypad_driver(void *data)
{
struct dinput_input *di = (struct dinput_input*)data;
if (!di)
return NULL;
return di->joypad;
}
2013-11-02 22:36:06 +00:00
static uint64_t dinput_get_capabilities(void *data)
{
uint64_t caps = 0;
caps |= (1 << RETRO_DEVICE_JOYPAD);
caps |= (1 << RETRO_DEVICE_MOUSE);
caps |= (1 << RETRO_DEVICE_KEYBOARD);
caps |= (1 << RETRO_DEVICE_LIGHTGUN);
caps |= (1 << RETRO_DEVICE_POINTER);
caps |= (1 << RETRO_DEVICE_ANALOG);
return caps;
}
static bool dinput_keyboard_mapping_is_blocked(void *data)
{
struct dinput_input *di = (struct dinput_input*)data;
if (!di)
return false;
return di->blocked;
}
static void dinput_keyboard_mapping_set_block(void *data, bool value)
{
struct dinput_input *di = (struct dinput_input*)data;
if (!di)
return;
di->blocked = value;
}
2014-09-11 05:37:39 +00:00
input_driver_t input_dinput = {
2012-09-30 09:26:26 +00:00
dinput_init,
dinput_poll,
dinput_input_state,
2015-07-17 01:31:51 +00:00
dinput_meta_key_pressed,
2012-09-30 09:26:26 +00:00
dinput_free,
2013-03-15 09:43:42 +00:00
NULL,
NULL,
2013-11-02 22:36:06 +00:00
dinput_get_capabilities,
2012-09-30 09:26:26 +00:00
"dinput",
2013-04-04 20:35:05 +00:00
dinput_grab_mouse,
NULL,
dinput_set_rumble,
dinput_get_joypad_driver,
2015-11-16 01:39:38 +00:00
NULL,
dinput_keyboard_mapping_is_blocked,
dinput_keyboard_mapping_set_block,
2012-09-30 09:26:26 +00:00
};