SDL  2.0
SDL_mirevents.c
Go to the documentation of this file.
1 /*
2  Simple DirectMedia Layer
3  Copyright (C) 1997-2018 Sam Lantinga <slouken@libsdl.org>
4 
5  This software is provided 'as-is', without any express or implied
6  warranty. In no event will the authors be held liable for any damages
7  arising from the use of this software.
8 
9  Permission is granted to anyone to use this software for any purpose,
10  including commercial applications, and to alter it and redistribute it
11  freely, subject to the following restrictions:
12 
13  1. The origin of this software must not be misrepresented; you must not
14  claim that you wrote the original software. If you use this software
15  in a product, an acknowledgment in the product documentation would be
16  appreciated but is not required.
17  2. Altered source versions must be plainly marked as such, and must not be
18  misrepresented as being the original software.
19  3. This notice may not be removed or altered from any source distribution.
20 */
21 
22 /*
23  Contributed by Brandon Schaefer, <brandon.schaefer@canonical.com>
24 */
25 
26 #include "../../SDL_internal.h"
27 
28 #if SDL_VIDEO_DRIVER_MIR
29 
30 #include "../../events/SDL_events_c.h"
31 #include "../../events/SDL_keyboard_c.h"
32 #include "../../events/SDL_touch_c.h"
33 #include "../../events/scancodes_xfree86.h"
34 
35 #include "SDL_mirevents.h"
36 #include "SDL_mirwindow.h"
37 
38 #include <xkbcommon/xkbcommon.h>
39 
40 #include "SDL_mirdyn.h"
41 
42 static void
43 HandleKeyText(int32_t key_code)
44 {
45  char text[8];
46  int size = 0;
47 
48  size = MIR_xkb_keysym_to_utf8(key_code, text, sizeof text);
49 
50  if (size > 0) {
51  text[size] = '\0';
53  }
54 }
55 
56 /* FIXME
57  Mir still needs to implement its IM API, for now we assume
58  a single key press produces a character.
59 */
60 static void
61 HandleKeyEvent(MirKeyboardEvent const* key_event, SDL_Window* window)
62 {
63  xkb_keysym_t key_code;
64  Uint8 key_state;
65  int event_scancode;
66  uint32_t sdl_scancode = SDL_SCANCODE_UNKNOWN;
67 
68  MirKeyboardAction action = MIR_mir_keyboard_event_action(key_event);
69 
70  key_state = SDL_PRESSED;
71  key_code = MIR_mir_keyboard_event_key_code(key_event);
72  event_scancode = MIR_mir_keyboard_event_scan_code(key_event);
73 
74  if (action == mir_keyboard_action_up)
75  key_state = SDL_RELEASED;
76 
77  if (event_scancode < SDL_arraysize(xfree86_scancode_table2))
78  sdl_scancode = xfree86_scancode_table2[event_scancode];
79 
80  if (sdl_scancode != SDL_SCANCODE_UNKNOWN)
81  SDL_SendKeyboardKey(key_state, sdl_scancode);
82 
83  if (key_state == SDL_PRESSED)
84  HandleKeyText(key_code);
85 }
86 
87 static void
88 HandleMouseButton(SDL_Window* sdl_window, Uint8 state, MirPointerEvent const* pointer)
89 {
90  uint32_t sdl_button = SDL_BUTTON_LEFT;
91  MirPointerButton button_state = mir_pointer_button_primary;
92 
93  static uint32_t old_button_states = 0;
94  uint32_t new_button_states = MIR_mir_pointer_event_buttons(pointer);
95 
96  // XOR on our old button states vs our new states to get the newley pressed/released button
97  button_state = new_button_states ^ old_button_states;
98 
99  switch (button_state) {
100  case mir_pointer_button_primary:
101  sdl_button = SDL_BUTTON_LEFT;
102  break;
103  case mir_pointer_button_secondary:
104  sdl_button = SDL_BUTTON_RIGHT;
105  break;
106  case mir_pointer_button_tertiary:
107  sdl_button = SDL_BUTTON_MIDDLE;
108  break;
109  case mir_pointer_button_forward:
110  sdl_button = SDL_BUTTON_X1;
111  break;
112  case mir_pointer_button_back:
113  sdl_button = SDL_BUTTON_X2;
114  break;
115  default:
116  break;
117  }
118 
119  old_button_states = new_button_states;
120 
121  SDL_SendMouseButton(sdl_window, 0, state, sdl_button);
122 }
123 
124 static void
125 HandleMouseMotion(SDL_Window* sdl_window, int x, int y)
126 {
127  SDL_Mouse* mouse = SDL_GetMouse();
128  SDL_SendMouseMotion(sdl_window, 0, mouse->relative_mode, x, y);
129 }
130 
131 static void
132 HandleTouchPress(int device_id, int source_id, SDL_bool down, float x, float y, float pressure)
133 {
134  SDL_SendTouch(device_id, source_id, down, x, y, pressure);
135 }
136 
137 static void
138 HandleTouchMotion(int device_id, int source_id, float x, float y, float pressure)
139 {
140  SDL_SendTouchMotion(device_id, source_id, x, y, pressure);
141 }
142 
143 static void
144 HandleMouseScroll(SDL_Window* sdl_window, float hscroll, float vscroll)
145 {
146  SDL_SendMouseWheel(sdl_window, 0, hscroll, vscroll, SDL_MOUSEWHEEL_NORMAL);
147 }
148 
149 static void
150 AddTouchDevice(int device_id)
151 {
152  if (SDL_AddTouch(device_id, "") < 0)
153  SDL_SetError("Error: can't add touch %s, %d", __FILE__, __LINE__);
154 }
155 
156 static void
157 HandleTouchEvent(MirTouchEvent const* touch, int device_id, SDL_Window* sdl_window)
158 {
159  int i, point_count;
160  point_count = MIR_mir_touch_event_point_count(touch);
161 
162  AddTouchDevice(device_id);
163 
164  for (i = 0; i < point_count; i++) {
165  int id = MIR_mir_touch_event_id(touch, i);
166 
167  int width = sdl_window->w;
168  int height = sdl_window->h;
169 
170  float x = MIR_mir_touch_event_axis_value(touch, i, mir_touch_axis_x);
171  float y = MIR_mir_touch_event_axis_value(touch, i, mir_touch_axis_y);
172 
173  float n_x = x / width;
174  float n_y = y / height;
175 
176  float pressure = MIR_mir_touch_event_axis_value(touch, i, mir_touch_axis_pressure);
177 
178  switch (MIR_mir_touch_event_action(touch, i)) {
179  case mir_touch_action_up:
180  HandleTouchPress(device_id, id, SDL_FALSE, n_x, n_y, pressure);
181  break;
182  case mir_touch_action_down:
183  HandleTouchPress(device_id, id, SDL_TRUE, n_x, n_y, pressure);
184  break;
185  case mir_touch_action_change:
186  HandleTouchMotion(device_id, id, n_x, n_y, pressure);
187  break;
188  case mir_touch_actions:
189  break;
190  }
191  }
192 }
193 
194 static void
195 HandleMouseEvent(MirPointerEvent const* pointer, SDL_Window* sdl_window)
196 {
197  SDL_SetMouseFocus(sdl_window);
198 
199  switch (MIR_mir_pointer_event_action(pointer)) {
200  case mir_pointer_action_button_down:
201  HandleMouseButton(sdl_window, SDL_PRESSED, pointer);
202  break;
203  case mir_pointer_action_button_up:
204  HandleMouseButton(sdl_window, SDL_RELEASED, pointer);
205  break;
206  case mir_pointer_action_motion: {
207  int x, y;
208  float hscroll, vscroll;
209  SDL_Mouse* mouse = SDL_GetMouse();
210  x = MIR_mir_pointer_event_axis_value(pointer, mir_pointer_axis_x);
211  y = MIR_mir_pointer_event_axis_value(pointer, mir_pointer_axis_y);
212 
213  if (mouse) {
214  if (mouse->relative_mode) {
215  int relative_x = MIR_mir_pointer_event_axis_value(pointer, mir_pointer_axis_relative_x);
216  int relative_y = MIR_mir_pointer_event_axis_value(pointer, mir_pointer_axis_relative_y);
217  HandleMouseMotion(sdl_window, relative_x, relative_y);
218  }
219  else if (mouse->x != x || mouse->y != y) {
220  HandleMouseMotion(sdl_window, x, y);
221  }
222  }
223 
224  hscroll = MIR_mir_pointer_event_axis_value(pointer, mir_pointer_axis_hscroll);
225  vscroll = MIR_mir_pointer_event_axis_value(pointer, mir_pointer_axis_vscroll);
226  if (vscroll != 0 || hscroll != 0)
227  HandleMouseScroll(sdl_window, hscroll, vscroll);
228  }
229  break;
230  case mir_pointer_action_leave:
232  break;
233  case mir_pointer_action_enter:
234  default:
235  break;
236  }
237 }
238 
239 static void
240 HandleInput(MirInputEvent const* input_event, SDL_Window* window)
241 {
242  switch (MIR_mir_input_event_get_type(input_event)) {
243  case (mir_input_event_type_key):
244  HandleKeyEvent(MIR_mir_input_event_get_keyboard_event(input_event), window);
245  break;
246  case (mir_input_event_type_pointer):
247  HandleMouseEvent(MIR_mir_input_event_get_pointer_event(input_event), window);
248  break;
249  case (mir_input_event_type_touch):
250  HandleTouchEvent(MIR_mir_input_event_get_touch_event(input_event),
251  MIR_mir_input_event_get_device_id(input_event),
252  window);
253  break;
254  default:
255  break;
256  }
257 }
258 
259 static void
260 HandleResize(MirResizeEvent const* resize_event, SDL_Window* window)
261 {
262  int new_w = MIR_mir_resize_event_get_width (resize_event);
263  int new_h = MIR_mir_resize_event_get_height(resize_event);
264 
265  int old_w = window->w;
266  int old_h = window->h;
267 
268  if (new_w != old_w || new_h != old_h)
269  SDL_SendWindowEvent(window, SDL_WINDOWEVENT_RESIZED, new_w, new_h);
270 }
271 
272 static void
273 HandleWindow(MirWindowEvent const* event, SDL_Window* window)
274 {
275  MirWindowAttrib attrib = MIR_mir_window_event_get_attribute(event);
276  int value = MIR_mir_window_event_get_attribute_value(event);
277 
278  if (attrib == mir_window_attrib_focus) {
279  if (value == mir_window_focus_state_focused) {
280  SDL_SetKeyboardFocus(window);
281  }
282  else if (value == mir_window_focus_state_unfocused) {
284  }
285  }
286 }
287 
288 static void
289 MIR_HandleClose(SDL_Window* window) {
291 }
292 
293 void
294 MIR_HandleEvent(MirWindow* mirwindow, MirEvent const* ev, void* context)
295 {
296  MirEventType event_type = MIR_mir_event_get_type(ev);
297  SDL_Window* window = (SDL_Window*)context;
298 
299  if (window) {
300  switch (event_type) {
301  case (mir_event_type_input):
302  HandleInput(MIR_mir_event_get_input_event(ev), window);
303  break;
304  case (mir_event_type_resize):
305  HandleResize(MIR_mir_event_get_resize_event(ev), window);
306  break;
307  case (mir_event_type_window):
308  HandleWindow(MIR_mir_event_get_window_event(ev), window);
309  break;
310  case (mir_event_type_close_window):
311  MIR_HandleClose(window);
312  break;
313  default:
314  break;
315  }
316  }
317 }
318 
319 #endif /* SDL_VIDEO_DRIVER_MIR */
320 
321 /* vi: set ts=4 sw=4 expandtab: */
SDL_Mouse * SDL_GetMouse(void)
Definition: SDL_mouse.c:144
void SDL_SetKeyboardFocus(SDL_Window *window)
Definition: SDL_keyboard.c:630
GLint GLint GLint GLint GLint x
Definition: SDL_opengl.h:1574
signed int int32_t
#define SDL_BUTTON_RIGHT
Definition: SDL_mouse.h:284
struct xkb_state * state
static screen_context_t context
Definition: video.c:25
int SDL_SendTouch(SDL_TouchID id, SDL_FingerID fingerid, SDL_bool down, float x, float y, float pressure)
Definition: SDL_touch.c:222
static const SDL_Scancode xfree86_scancode_table2[]
int SDL_SendWindowEvent(SDL_Window *window, Uint8 windowevent, int data1, int data2)
#define SDL_BUTTON_X1
Definition: SDL_mouse.h:285
void SDL_SetMouseFocus(SDL_Window *window)
Definition: SDL_mouse.c:177
void MIR_HandleEvent(MirWindow *, MirEvent const *ev, void *context)
GLint GLint GLsizei width
Definition: SDL_opengl.h:1572
int SDL_SendKeyboardKey(Uint8 state, SDL_Scancode scancode)
Definition: SDL_keyboard.c:679
int SDL_SendTouchMotion(SDL_TouchID id, SDL_FingerID fingerid, float x, float y, float pressure)
Definition: SDL_touch.c:284
int SDL_SendMouseMotion(SDL_Window *window, SDL_MouseID mouseID, int relative, int x, int y)
Definition: SDL_mouse.c:263
#define SDL_BUTTON_LEFT
Definition: SDL_mouse.h:282
uint8_t Uint8
Definition: SDL_stdinc.h:179
int SDL_SendKeyboardText(const char *text)
Definition: SDL_keyboard.c:789
struct _cl_event * event
SDL_bool relative_mode
Definition: SDL_mouse_c.h:87
GLsizei const GLfloat * value
#define SDL_BUTTON_MIDDLE
Definition: SDL_mouse.h:283
GLint GLint GLint GLint GLint GLint y
Definition: SDL_opengl.h:1574
GLsizei const void * pointer
int SDL_AddTouch(SDL_TouchID touchID, const char *name)
Definition: SDL_touch.c:136
GLsizeiptr size
return Display return Display Bool Bool int int int return Display XEvent Bool(*) XPointer return Display return Display Drawable _Xconst char unsigned int unsigned int return Display Pixmap Pixmap XColor XColor unsigned int unsigned int return Display _Xconst char char int char return Display Visual unsigned int int int char unsigned int unsigned int in i)
Definition: SDL_x11sym.h:50
#define NULL
Definition: begin_code.h:164
SDL_bool
Definition: SDL_stdinc.h:161
int SDL_SendMouseWheel(SDL_Window *window, SDL_MouseID mouseID, float x, float y, SDL_MouseWheelDirection direction)
Definition: SDL_mouse.c:538
unsigned int uint32_t
#define SDL_SetError
static char text[MAX_TEXT_LENGTH]
Definition: testime.c:47
GLint GLint GLsizei GLsizei height
Definition: SDL_opengl.h:1572
EGLSurface EGLNativeWindowType * window
Definition: eglext.h:1025
The type used to identify a window.
Definition: SDL_sysvideo.h:73
#define SDL_arraysize(array)
Definition: SDL_stdinc.h:115
#define SDL_PRESSED
Definition: SDL_events.h:50
#define SDL_BUTTON_X2
Definition: SDL_mouse.h:286
#define SDL_RELEASED
Definition: SDL_events.h:49
set set set set set set set set set set set set set set set set set set set set *set set set macro pixldst op &r &cond WK op &r &cond WK op &r &cond WK else op &m &cond &ia op &r &cond WK else op &m &cond &ia elseif elseif else error unsupported base if elseif elseif else error unsupported unaligned pixldst unaligned endm macro pixst base base else pixldst base endif endm macro PF base if bpp PF set rept prefetch_distance PF set OFFSET endr endif endm macro preload_leading_step2 base if bpp ifc DST PF PF else if bpp lsl PF PF lsl PF PF lsl PF PF PF else PF lsl PF lsl PF lsl PF endif SIZE macro preload_middle scratch_holds_offset if bpp if else PF PF endif endif endif endm macro preload_trailing base if bpp if bpp *pix_per_block PF PF lsl PF PF PF PF PF else PF lsl PF lsl PF PF PF PF PF base if bpp if narrow_case &&bpp<=dst_w_bpp) PF bic, WK0, base, #31 PF pld, [WK0] PF add, WK1, base, X, LSL #bpp_shift PF sub, WK1, WK1, #1 PF bic, WK1, WK1, #31 PF cmp, WK1, WK0 PF beq, 90f PF pld, [WK1]90:.else PF bic, WK0, base, #31 PF pld, [WK0] PF add, WK1, base, X, lsl #bpp_shift PF sub, WK1, WK1, #1 PF bic, WK1, WK1, #31 PF cmp, WK1, WK0 PF beq, 92f91:PF add, WK0, WK0, #32 PF cmp, WK0, WK1 PF pld, [WK0] PF bne, 91b92:.endif .endif.endm.macro conditional_process1_helper cond, process_head, process_tail, numbytes, firstreg, unaligned_src, unaligned_mask, decrementx process_head cond, numbytes, firstreg, unaligned_src, unaligned_mask, 0 .if decrementx sub &cond X, X, #8 *numbytes/dst_w_bpp .endif process_tail cond, numbytes, firstreg .if !((flags) &FLAG_PROCESS_DOES_STORE) pixst cond, numbytes, firstreg, DST .endif.endm.macro conditional_process1 cond, process_head, process_tail, numbytes, firstreg, unaligned_src, unaligned_mask, decrementx .if(flags) &FLAG_BRANCH_OVER .ifc cond, mi bpl 100f .endif .ifc cond, cs bcc 100f .endif .ifc cond, ne beq 100f .endif conditional_process1_helper, process_head, process_tail, numbytes, firstreg, unaligned_src, unaligned_mask, decrementx100:.else conditional_process1_helper cond, process_head, process_tail, numbytes, firstreg, unaligned_src, unaligned_mask, decrementx .endif.endm.macro conditional_process2 test, cond1, cond2, process_head, process_tail, numbytes1, numbytes2, firstreg1, firstreg2, unaligned_src, unaligned_mask, decrementx .if(flags) &(FLAG_DST_READWRITE|FLAG_BRANCH_OVER|FLAG_PROCESS_CORRUPTS_PSR|FLAG_PROCESS_DOES_STORE) test conditional_process1 cond1, process_head, process_tail, numbytes1, firstreg1, unaligned_src, unaligned_mask, decrementx .if(flags) &FLAG_PROCESS_CORRUPTS_PSR test .endif conditional_process1 cond2, process_head, process_tail, numbytes2, firstreg2, unaligned_src, unaligned_mask, decrementx .else test process_head cond1, numbytes1, firstreg1, unaligned_src, unaligned_mask, 0 process_head cond2, numbytes2, firstreg2, unaligned_src, unaligned_mask, 0 .if decrementx sub &cond1 X, X, #8 *numbytes1/dst_w_bpp sub &cond2 X, X, #8 *numbytes2/dst_w_bpp .endif process_tail cond1, numbytes1, firstreg1 process_tail cond2, numbytes2, firstreg2 pixst cond1, numbytes1, firstreg1, DST pixst cond2, numbytes2, firstreg2, DST .endif.endm.macro test_bits_1_0_ptr .if(flags) &FLAG_PROCESS_CORRUPTS_WK0 movs SCRATCH, X, lsl #32-1 .else movs SCRATCH, WK0, lsl #32-1 .endif.endm.macro test_bits_3_2_ptr .if(flags) &FLAG_PROCESS_CORRUPTS_WK0 movs SCRATCH, X, lsl #32-3 .else movs SCRATCH, WK0, lsl #32-3 .endif.endm.macro leading_15bytes process_head, process_tail .set DECREMENT_X, 1 .if(flags) &FLAG_PROCESS_CORRUPTS_WK0 .set DECREMENT_X, 0 sub X, X, WK0, lsr #dst_bpp_shift str X, [sp, #LINE_SAVED_REG_COUNT *4] mov X, WK0 .endif .if dst_w_bpp==8 conditional_process2 test_bits_1_0_ptr, mi, cs, process_head, process_tail, 1, 2, 1, 2, 1, 1, DECREMENT_X .elseif dst_w_bpp==16 test_bits_1_0_ptr conditional_process1 cs, process_head, process_tail, 2, 2, 1, 1, DECREMENT_X .endif conditional_process2 test_bits_3_2_ptr, mi, cs, process_head, process_tail, 4, 8, 1, 2, 1, 1, DECREMENT_X .if(flags) &FLAG_PROCESS_CORRUPTS_WK0 ldr X, [sp, #LINE_SAVED_REG_COUNT *4] .endif.endm.macro test_bits_3_2_pix movs SCRATCH, X, lsl #dst_bpp_shift+32-3.endm.macro test_bits_1_0_pix .if dst_w_bpp==8 movs SCRATCH, X, lsl #dst_bpp_shift+32-1 .else movs SCRATCH, X, lsr #1 .endif.endm.macro trailing_15bytes process_head, process_tail, unaligned_src, unaligned_mask conditional_process2 test_bits_3_2_pix, cs, mi, process_head, process_tail, 8, 4, 0, 2, unaligned_src, unaligned_mask, 0 .if dst_w_bpp==16 test_bits_1_0_pix conditional_process1 cs, process_head, process_tail, 2, 0, unaligned_src, unaligned_mask, 0 .elseif dst_w_bpp==8 conditional_process2 test_bits_1_0_pix, cs, mi, process_head, process_tail, 2, 1, 0, 1, unaligned_src, unaligned_mask, 0 .endif.endm.macro wide_case_inner_loop process_head, process_tail, unaligned_src, unaligned_mask, dst_alignment110:.set SUBBLOCK, 0 .rept pix_per_block *dst_w_bpp/128 process_head, 16, 0, unaligned_src, unaligned_mask, 1 .if(src_bpp > 0) &&(mask_bpp==0) &&((flags) &FLAG_PROCESS_PRESERVES_SCRATCH) preload_middle src_bpp, SRC, 1 .elseif(src_bpp==0) &&(mask_bpp > 0) &&((flags) &FLAG_PROCESS_PRESERVES_SCRATCH) preload_middle mask_bpp, MASK, 1 .else preload_middle src_bpp, SRC, 0 preload_middle mask_bpp, MASK, 0 .endif .if(dst_r_bpp > 0) &&((SUBBLOCK % 2)==0) &&(((flags) &FLAG_NO_PRELOAD_DST)==0) PF pld, [DST, #32 *prefetch_distance - dst_alignment] .endif process_tail, 16, 0 .if !((flags) &FLAG_PROCESS_DOES_STORE) pixst, 16, 0, DST .endif .set SUBBLOCK, SUBBLOCK+1 .endr subs X, X, #pix_per_block bhs 110b.endm.macro wide_case_inner_loop_and_trailing_pixels process_head, process_tail, process_inner_loop, exit_label, unaligned_src, unaligned_mask .if dst_r_bpp > tst bne process_inner_loop DST_PRELOAD_BIAS endif preload_trailing SRC preload_trailing MASK DST endif add medium_case_inner_loop_and_trailing_pixels unaligned_mask endm macro medium_case_inner_loop_and_trailing_pixels DST endif subs bhs tst beq exit_label trailing_15bytes unaligned_mask endm macro narrow_case_inner_loop_and_trailing_pixels unaligned_mask tst conditional_process1 trailing_15bytes unaligned_mask endm macro switch_on_alignment action
int SDL_SendMouseButton(SDL_Window *window, SDL_MouseID mouseID, Uint8 state, Uint8 button)
Definition: SDL_mouse.c:532