DEADSOFTWARE

game: less references to HEADLESS
[d2df-sdl.git] / src / game / sdl2 / g_system.pas
1 (* Copyright (C) Doom 2D: Forever Developers
2 *
3 * This program is free software: you can redistribute it and/or modify
4 * it under the terms of the GNU General Public License as published by
5 * the Free Software Foundation, version 3 of the License ONLY.
6 *
7 * This program is distributed in the hope that it will be useful,
8 * but WITHOUT ANY WARRANTY; without even the implied warranty of
9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10 * GNU General Public License for more details.
11 *
12 * You should have received a copy of the GNU General Public License
13 * along with this program. If not, see <http://www.gnu.org/licenses/>.
14 *)
15 {$INCLUDE ../shared/a_modes.inc}
16 unit g_system;
18 interface
20 uses Utils;
22 (* --- Graphics --- *)
23 function sys_GetDisplayModes (bpp: Integer): SSArray;
24 function sys_SetDisplayMode (w, h, bpp: Integer; fullscreen, maximized: Boolean): Boolean;
25 procedure sys_EnableVSync (yes: Boolean);
26 procedure sys_Repaint;
28 (* --- Input --- *)
29 function sys_HandleInput (): Boolean;
30 procedure sys_RequestQuit;
32 {$IFDEF ENABLE_TOUCH}
33 function sys_IsTextInputActive (): Boolean;
34 procedure sys_ShowKeyboard (yes: Boolean);
35 {$ENDIF}
37 (* --- Init --- *)
38 procedure sys_Init;
39 procedure sys_Final;
41 var (* hooks *)
42 sys_CharPress: procedure (ch: AnsiChar) = nil;
43 sys_ScreenResize: procedure (w, h: Integer) = nil;
45 implementation
47 uses
48 {$IFDEF ENABLE_HOLMES}
49 sdlcarcass,
50 {$ENDIF}
51 {$IFDEF ENABLE_RENDER}
52 r_render,
53 {$ENDIF}
54 {$IFDEF ENABLE_MENU}
55 g_gui,
56 {$ENDIF}
57 SysUtils, SDL2, Math, ctypes,
58 e_log, e_input, e_sound,
59 g_options, g_console, g_game, g_basic
60 ;
62 const
63 GameTitle = 'Doom 2D: Forever (SDL 2, %s)';
65 var
66 window: PSDL_Window;
67 context: TSDL_GLContext;
68 display, wx, wy: Integer;
69 wc: Boolean;
70 JoystickHandle: array [0..e_MaxJoys - 1] of PSDL_Joystick;
71 JoystickHatState: array [0..e_MaxJoys - 1, 0..e_MaxJoyHats - 1, HAT_LEFT..HAT_DOWN] of Boolean;
72 JoystickZeroAxes: array [0..e_MaxJoys - 1, 0..e_MaxJoyAxes - 1] of Integer;
74 {$IFDEF ENABLE_TOUCH}
75 var (* touch *)
76 angleFire: Boolean;
77 keyFinger: array [VK_FIRSTKEY..VK_LASTKEY] of Integer;
78 {$ENDIF}
80 (* --------- Graphics --------- *)
82 function GetTitle (): AnsiString;
83 var info: AnsiString;
84 begin
85 info := g_GetBuildHash(false);
86 if info = 'custom build' then
87 info := info + ' by ' + g_GetBuilderName() + ' ' + GAME_BUILDDATE + ' ' + GAME_BUILDTIME;
88 result := Format(GameTitle, [info]);
89 end;
91 function InitWindow (w, h, bpp: Integer; fullScreen, maximized: Boolean): Boolean;
92 var flags: UInt32; x, y: cint; title: AnsiString;
93 begin
94 // note: on window close make: if assigned(oglDeinitCB) then oglDeinitCB;
95 e_LogWritefln('InitWindow %s %s %s %s', [w, h, bpp, fullScreen]);
96 result := false;
97 if window = nil then
98 begin
99 {$IFDEF USE_GLES1}
100 SDL_GL_SetAttribute(SDL_GL_CONTEXT_MAJOR_VERSION, 1);
101 SDL_GL_SetAttribute(SDL_GL_CONTEXT_MINOR_VERSION, 1);
102 SDL_GL_SetAttribute(SDL_GL_CONTEXT_PROFILE_MASK, SDL_GL_CONTEXT_PROFILE_ES);
103 {$ELSE}
104 SDL_GL_SetAttribute(SDL_GL_CONTEXT_MAJOR_VERSION, 2);
105 SDL_GL_SetAttribute(SDL_GL_CONTEXT_MINOR_VERSION, 1);
106 SDL_GL_SetAttribute(SDL_GL_RED_SIZE, 8);
107 SDL_GL_SetAttribute(SDL_GL_GREEN_SIZE, 8);
108 SDL_GL_SetAttribute(SDL_GL_BLUE_SIZE, 8);
109 SDL_GL_SetAttribute(SDL_GL_DEPTH_SIZE, 16);
110 SDL_GL_SetAttribute(SDL_GL_DOUBLEBUFFER, 1);
111 SDL_GL_SetAttribute(SDL_GL_STENCIL_SIZE, 8); // lights; it is enough to have 1-bit stencil buffer for lighting, but...
112 {$ENDIF}
113 flags := SDL_WINDOW_OPENGL or SDL_WINDOW_RESIZABLE;
114 if fullScreen then flags := flags or SDL_WINDOW_FULLSCREEN;
115 if maximized then flags := flags or SDL_WINDOW_MAXIMIZED;
116 if wc then
117 begin
118 x := SDL_WINDOWPOS_CENTERED;
119 y := SDL_WINDOWPOS_CENTERED
120 end
121 else
122 begin
123 x := wx;
124 y := wy
125 end;
126 title := GetTitle();
127 window := SDL_CreateWindow(PChar(title), x, y, w, h, flags);
128 if window <> nil then
129 begin
130 context := SDL_GL_CreateContext(window);
131 if context <> nil then
132 begin
133 if (fullscreen = false) and (maximized = false) and (wc = false) then
134 begin
135 SDL_GetWindowPosition(window, @x, @y);
136 wx := x; wy := y
137 end;
138 gFullScreen := fullscreen;
139 gWinMaximized := maximized;
140 gRC_FullScreen := fullscreen;
141 gRC_Maximized := maximized;
142 if @sys_ScreenResize <> nil then
143 sys_ScreenResize(w, h);
144 result := true
145 end
146 else
147 begin
148 // SDL_DestroyWindow(window);
149 e_LogWritefln('SDL: unable to create OpenGL context: %s', [SDL_GetError])
150 end
151 end
152 else
153 begin
154 e_LogWritefln('SDL: unable to create window: %s', [SDL_GetError])
155 end
156 end
157 else
158 begin
159 if fullScreen then flags := SDL_WINDOW_FULLSCREEN else flags := 0;
160 SDL_SetWindowFullscreen(window, flags);
161 SDL_SetWindowSize(window, w, h);
162 if maximized then SDL_MaximizeWindow(window);
163 // always reset to center when changing fullscreen->windowed for safety purposes
164 if wc or (gFullscreen and not fullscreen) or (gWinMaximized and not maximized) then
165 begin
166 x := SDL_WINDOWPOS_CENTERED;
167 y := SDL_WINDOWPOS_CENTERED
168 end
169 else
170 begin
171 x := wx;
172 y := wy
173 end;
174 SDL_SetWindowPosition(window, x, y);
175 if (fullscreen = false) and (maximized = false) and (wc = false) then
176 begin
177 SDL_GetWindowPosition(window, @x, @y);
178 wx := x; wy := y
179 end;
180 gFullScreen := fullscreen;
181 gWinMaximized := maximized;
182 gRC_FullScreen := fullscreen;
183 gRC_Maximized := maximized;
184 if @sys_ScreenResize <> nil then
185 sys_ScreenResize(w, h);
186 result := true
187 end
188 end;
190 procedure sys_Repaint;
191 begin
192 SDL_GL_SwapWindow(window)
193 end;
195 procedure sys_EnableVSync (yes: Boolean);
196 begin
197 if yes then
198 SDL_GL_SetSwapInterval(1)
199 else
200 SDL_GL_SetSwapInterval(0)
201 end;
203 function sys_GetDisplayModes (bpp: Integer): SSArray;
204 var i, count, num, pw, ph: Integer; m: TSDL_DisplayMode;
205 begin
206 result := nil;
207 num := SDL_GetNumDisplayModes(display);
208 if num < 0 then
209 e_LogWritefln('SDL: unable to get numer of available display modes: %s', [SDL_GetError]);
210 if num > 0 then
211 begin
212 e_LogWritefln('Video modes for display %s:', [display]);
213 SetLength(result, num);
214 i := 0; count := 0; pw := 0; ph := 0;
215 while i < num do
216 begin
217 SDL_GetDisplayMode(display, i, @m);
218 if ((pw <> m.w) or (ph <> m.h)) then
219 begin
220 e_LogWritefln('* %sx%sx%s@%s', [m.w, m.h, SDL_BITSPERPIXEL(m.format), m.refresh_rate]);
221 pw := m.w; ph := m.h;
222 result[count] := IntToStr(m.w) + 'x' + IntToStr(m.h);
223 Inc(count);
224 end
225 else
226 begin
227 e_LogWritefln('- %sx%sx%s@%s', [m.w, m.h, SDL_BITSPERPIXEL(m.format), m.refresh_rate]);
228 end;
229 Inc(i)
230 end;
231 SetLength(result, count)
232 end
233 end;
235 function sys_SetDisplayMode (w, h, bpp: Integer; fullScreen, maximized: Boolean): Boolean;
236 begin
237 result := InitWindow(w, h, bpp, fullScreen, maximized)
238 end;
240 (* --------- Joystick --------- *)
242 procedure HandleJoyButton (var ev: TSDL_JoyButtonEvent);
243 var down: Boolean; key: Integer;
244 begin
245 if (ev.which < e_MaxJoys) and (ev.button < e_MaxJoyBtns) then
246 begin
247 key := e_JoyButtonToKey(ev.which, ev.button);
248 down := ev.type_ = SDL_JOYBUTTONDOWN;
249 if g_dbg_input then
250 e_LogWritefln('Input Debug: jbutton, joy=%s, button=%s, keycode=%s, press=%s', [ev.which, ev.button, key, down]);
251 e_KeyUpDown(key, down);
252 g_Console_ProcessBind(key, down)
253 end
254 else
255 begin
256 if g_dbg_input then
257 begin
258 down := ev.type_ = SDL_JOYBUTTONDOWN;
259 e_LogWritefln('Input Debug: NOT IN RANGE! jbutton, joy=%s, button=%s, press=%s', [ev.which, ev.button, down])
260 end
261 end
262 end;
264 procedure HandleJoyAxis (var ev: TSDL_JoyAxisEvent);
265 var key, minuskey: Integer;
266 begin
267 if (ev.which < e_MaxJoys) and (ev.axis < e_MaxJoyAxes) then
268 begin
269 key := e_JoyAxisToKey(ev.which, ev.axis, AX_PLUS);
270 minuskey := e_JoyAxisToKey(ev.which, ev.axis, AX_MINUS);
272 if g_dbg_input then
273 e_LogWritefln('Input Debug: jaxis, joy=%s, axis=%s, value=%s, zeroaxes=%s, deadzone=%s', [ev.which, ev.axis, ev.value, JoystickZeroAxes[ev.which, ev.axis], e_JoystickDeadzones[ev.which]]);
275 if ev.value < JoystickZeroAxes[ev.which, ev.axis] - e_JoystickDeadzones[ev.which] then
276 begin
277 if (e_KeyPressed(key)) then
278 begin
279 e_KeyUpDown(key, False);
280 g_Console_ProcessBind(key, False)
281 end;
282 e_KeyUpDown(minuskey, True);
283 g_Console_ProcessBind(minuskey, True)
284 end
285 else if ev.value > JoystickZeroAxes[ev.which, ev.axis] + e_JoystickDeadzones[ev.which] then
286 begin
287 if (e_KeyPressed(minuskey)) then
288 begin
289 e_KeyUpDown(minuskey, False);
290 g_Console_ProcessBind(minuskey, False)
291 end;
292 e_KeyUpDown(key, True);
293 g_Console_ProcessBind(key, True)
294 end
295 else
296 begin
297 if (e_KeyPressed(minuskey)) then
298 begin
299 e_KeyUpDown(minuskey, False);
300 g_Console_ProcessBind(minuskey, False)
301 end;
302 if (e_KeyPressed(key)) then
303 begin
304 e_KeyUpDown(key, False);
305 g_Console_ProcessBind(key, False)
306 end
307 end
308 end
309 else
310 begin
311 if g_dbg_input then
312 e_LogWritefln('Input Debug: NOT IN RANGE! jaxis, joy=%s, axis=%s, value=%s, zeroaxes=%s, deadzone=%s', [ev.which, ev.axis, ev.value, JoystickZeroAxes[ev.which, ev.axis], e_JoystickDeadzones[ev.which]])
313 end
314 end;
316 procedure HandleJoyHat (var ev: TSDL_JoyHatEvent);
317 var
318 down: Boolean;
319 i, key: Integer;
320 hat: array [HAT_LEFT..HAT_DOWN] of Boolean;
321 begin
322 if (ev.which < e_MaxJoys) and (ev.hat < e_MaxJoyHats) then
323 begin
324 if g_dbg_input then
325 e_LogWritefln('Input Debug: jhat, joy=%s, hat=%s, value=%s', [ev.which, ev.hat, ev.value]);
326 hat[HAT_UP] := LongBool(ev.value and SDL_HAT_UP);
327 hat[HAT_DOWN] := LongBool(ev.value and SDL_HAT_DOWN);
328 hat[HAT_LEFT] := LongBool(ev.value and SDL_HAT_LEFT);
329 hat[HAT_RIGHT] := LongBool(ev.value and SDL_HAT_RIGHT);
330 for i := HAT_LEFT to HAT_DOWN do
331 begin
332 if JoystickHatState[ev.which, ev.hat, i] <> hat[i] then
333 begin
334 down := hat[i];
335 key := e_JoyHatToKey(ev.which, ev.hat, i);
336 e_KeyUpDown(key, down);
337 g_Console_ProcessBind(key, down)
338 end
339 end;
340 JoystickHatState[ev.which, ev.hat] := hat
341 end
342 else
343 begin
344 if g_dbg_input then
345 e_LogWritefln('Input Debug: NOT IN RANGE! jhat, joy=%s, hat=%s, value=%s', [ev.which, ev.hat, ev.value])
346 end
347 end;
349 procedure HandleJoyAdd (var ev: TSDL_JoyDeviceEvent);
350 var i: Integer;
351 begin
352 if (ev.which < e_MaxJoys) then
353 begin
354 JoystickHandle[ev.which] := SDL_JoystickOpen(ev.which);
355 if JoystickHandle[ev.which] <> nil then
356 begin
357 e_LogWritefln('Added Joystick %s', [ev.which]);
358 e_JoystickAvailable[ev.which] := True;
359 for i := 0 to Min(SDL_JoystickNumAxes(JoystickHandle[ev.which]), e_MaxJoyAxes) - 1 do
360 JoystickZeroAxes[ev.which, i] := SDL_JoystickGetAxis(JoystickHandle[ev.which], i)
361 end
362 else
363 begin
364 e_LogWritefln('Warning! Failed to open Joystick %s', [ev.which])
365 end
366 end
367 else
368 begin
369 e_LogWritefln('Warning! Added Joystick %s, but we support only <= %s', [ev.which, e_MaxJoys])
370 end
371 end;
373 procedure HandleJoyRemove (var ev: TSDL_JoyDeviceEvent);
374 begin
375 e_LogWritefln('Removed Joystick %s', [ev.which]);
376 if (ev.which < e_MaxJoys) then
377 begin
378 e_JoystickAvailable[ev.which] := False;
379 if JoystickHandle[ev.which] <> nil then
380 SDL_JoystickClose(JoystickHandle[ev.which]);
381 JoystickHandle[ev.which] := nil
382 end
383 end;
385 (* --------- Touch --------- *)
387 {$IFDEF ENABLE_TOUCH}
388 function sys_IsTextInputActive (): Boolean;
389 begin
390 Result := SDL_IsTextInputActive() = SDL_True
391 end;
393 procedure sys_ShowKeyboard (yes: Boolean);
394 begin
395 if g_dbg_input then
396 e_LogWritefln('g_Touch_ShowKeyboard(%s)', [yes]);
397 (* on desktop we always receive text (needed for cheats) *)
398 if yes or (SDL_HasScreenKeyboardSupport() = SDL_FALSE) then
399 SDL_StartTextInput
400 else
401 SDL_StopTextInput
402 end;
404 procedure HandleTouch (const ev: TSDL_TouchFingerEvent);
405 var
406 x, y, i, finger: Integer;
408 function IntersectControl(ctl, xx, yy: Integer): Boolean;
409 {$IFDEF ENABLE_RENDER}
410 var x, y, w, h: Integer; founded: Boolean;
411 {$ENDIF}
412 begin
413 {$IFDEF ENABLE_RENDER}
414 r_Render_GetKeyRect(ctl, x, y, w, h, founded);
415 Result := founded and (xx >= x) and (yy >= y) and (xx <= x + w) and (yy <= y + h);
416 {$ELSE}
417 Result := False
418 {$ENDIF}
419 end;
421 procedure KeyUp (finger, i: Integer);
422 begin
423 if g_dbg_input then
424 e_LogWritefln('Input Debug: g_touch.KeyUp, finger=%s, key=%s', [finger, i]);
426 keyFinger[i] := 0;
427 e_KeyUpDown(i, False);
428 g_Console_ProcessBind(i, False);
430 (* up/down + fire hack *)
431 {$IFDEF ENABLE_MENU}
432 if g_touch_fire and (gGameSettings.GameType <> GT_NONE) and (g_ActiveWindow = nil) and angleFire then
433 {$ELSE}
434 if g_touch_fire and (gGameSettings.GameType <> GT_NONE) and angleFire then
435 {$ENDIF}
436 begin
437 if (i = VK_UP) or (i = VK_DOWN) then
438 begin
439 angleFire := False;
440 keyFinger[VK_FIRE] := 0;
441 e_KeyUpDown(VK_FIRE, False);
442 g_Console_ProcessBind(VK_FIRE, False)
443 end
444 end
445 end;
447 procedure KeyDown (finger, i: Integer);
448 begin
449 if g_dbg_input then
450 e_LogWritefln('Input Debug: g_touch.KeyDown, finger=%s, key=%s', [finger, i]);
452 keyFinger[i] := finger;
453 e_KeyUpDown(i, True);
454 g_Console_ProcessBind(i, True);
456 (* up/down + fire hack *)
457 {$IFDEF ENABLE_MENU}
458 if g_touch_fire and (gGameSettings.GameType <> GT_NONE) and (g_ActiveWindow = nil) then
459 {$ELSE}
460 if g_touch_fire and (gGameSettings.GameType <> GT_NONE) then
461 {$ENDIF}
462 begin
463 if i = VK_UP then
464 begin
465 angleFire := True;
466 keyFinger[VK_FIRE] := -1;
467 e_KeyUpDown(VK_FIRE, True);
468 g_Console_ProcessBind(VK_FIRE, True)
469 end
470 else if i = VK_DOWN then
471 begin
472 angleFire := True;
473 keyFinger[VK_FIRE] := -1;
474 e_KeyUpDown(VK_FIRE, True);
475 g_Console_ProcessBind(VK_FIRE, True)
476 end
477 end
478 end;
480 procedure KeyMotion (finger, i: Integer);
481 begin
482 if keyFinger[i] <> finger then
483 begin
484 KeyUp(finger, i);
485 KeyDown(finger, i)
486 end
487 end;
489 begin
490 if not g_touch_enabled then
491 Exit;
493 finger := ev.fingerId + 2;
494 x := Trunc(ev.x * gWinSizeX);
495 y := Trunc(ev.y * gWinSizeY);
497 for i := VK_FIRSTKEY to VK_LASTKEY do
498 begin
499 if IntersectControl(i, x, y) then
500 begin
501 if ev.type_ = SDL_FINGERUP then
502 KeyUp(finger, i)
503 else if ev.type_ = SDL_FINGERMOTION then
504 KeyMotion(finger, i)
505 else if ev.type_ = SDL_FINGERDOWN then
506 keyDown(finger, i)
507 end
508 else if keyFinger[i] = finger then
509 begin
510 if ev.type_ = SDL_FINGERUP then
511 KeyUp(finger, i)
512 else if ev.type_ = SDL_FINGERMOTION then
513 KeyUp(finger, i)
514 end
515 end
516 end;
517 {$ENDIF} // TOUCH
519 (* --------- Input --------- *)
521 function HandleWindow (var ev: TSDL_WindowEvent): Boolean;
522 begin
523 result := false;
524 if g_dbg_input then
525 e_LogWritefln('Window Event: event = %s, data1 = %s, data2 = %s', [ev.event, ev.data1, ev.data2]);
526 case ev.event of
527 SDL_WINDOWEVENT_RESIZED:
528 if @sys_ScreenResize <> nil then
529 sys_ScreenResize(ev.data1, ev.data2);
530 SDL_WINDOWEVENT_EXPOSED: sys_Repaint;
531 SDL_WINDOWEVENT_CLOSE: result := true;
532 SDL_WINDOWEVENT_MOVED:
533 begin
534 wx := ev.data1;
535 wy := ev.data2
536 end;
537 SDL_WINDOWEVENT_FOCUS_LOST, SDL_WINDOWEVENT_MINIMIZED:
538 begin
539 e_UnpressAllKeys;
540 if gMuteWhenInactive then
541 e_MuteChannels(true);
542 {$IFDEF ENABLE_HOLMES}
543 if assigned(winBlurCB) then winBlurCB;
544 {$ENDIF}
545 end;
546 SDL_WINDOWEVENT_FOCUS_GAINED, SDL_WINDOWEVENT_MAXIMIZED, SDL_WINDOWEVENT_RESTORED:
547 begin
548 if ev.event = SDL_WINDOWEVENT_MAXIMIZED then
549 begin
550 gWinMaximized := true;
551 gRC_Maximized := true
552 end
553 else if ev.event = SDL_WINDOWEVENT_RESTORED then
554 begin
555 gWinMaximized := false;
556 gRC_Maximized := false
557 end;
558 e_MuteChannels(false);
559 {$IFDEF ENABLE_HOLMES}
560 if assigned(winFocusCB) then winFocusCB;
561 {$ENDIF}
562 end;
563 end
564 end;
566 procedure HandleKeyboard (var ev: TSDL_KeyboardEvent);
567 var down: Boolean; key: Integer;
568 begin
569 key := ev.keysym.scancode;
570 down := (ev.type_ = SDL_KEYDOWN);
571 if key = SDL_SCANCODE_AC_BACK then
572 key := SDL_SCANCODE_ESCAPE;
573 {$IFDEF ENABLE_HOLMES}
574 if fuiOnSDLEvent(PSDL_Event(@ev)^) then
575 begin
576 // event eaten, but...
577 if not down then e_KeyUpDown(key, false);
578 exit;
579 end;
580 {$ENDIF}
581 if ev._repeat = 0 then
582 begin
583 if g_dbg_input then
584 e_LogWritefln('Input Debug: keysym, press=%s, scancode=%s', [down, key]);
585 e_KeyUpDown(key, down);
586 g_Console_ProcessBind(key, down);
587 end
588 else
589 begin
590 if g_dbg_input then
591 e_LogWritefln('Input Debug: keyrep, scancode=%s', [key]);
592 g_Console_ProcessBindRepeat(key);
593 end
594 end;
596 procedure HandleTextInput (var ev: TSDL_TextInputEvent);
597 var ch: UnicodeChar; sch: AnsiChar;
598 begin
599 Utf8ToUnicode(@ch, PChar(ev.text), 1);
600 sch := AnsiChar(wchar2win(ch));
601 if g_dbg_input then
602 e_LogWritefln('Input Debug: text, text="%s", ch = %s, sch = %s', [ev.text, Ord(ch), Ord(sch)]);
603 if @sys_CharPress <> nil then
604 if IsValid1251(Word(ch)) and IsPrintable1251(ch) then
605 sys_CharPress(sch)
606 end;
608 function sys_HandleInput (): Boolean;
609 var ev: TSDL_Event;
610 begin
611 result := false;
612 ZeroMemory(@ev, sizeof(ev));
613 while SDL_PollEvent(@ev) <> 0 do
614 begin
615 case ev.type_ of
616 SDL_QUITEV: result := true;
617 SDL_WINDOWEVENT: result := HandleWindow(ev.window);
618 SDL_KEYUP, SDL_KEYDOWN: HandleKeyboard(ev.key);
619 SDL_JOYBUTTONDOWN, SDL_JOYBUTTONUP: HandleJoyButton(ev.jbutton);
620 SDL_JOYAXISMOTION: HandleJoyAxis(ev.jaxis);
621 SDL_JOYHATMOTION: HandleJoyHat(ev.jhat);
622 SDL_JOYDEVICEADDED: HandleJoyAdd(ev.jdevice);
623 SDL_JOYDEVICEREMOVED: HandleJoyRemove(ev.jdevice);
624 SDL_TEXTINPUT: HandleTextInput(ev.text);
625 {$IFDEF ENABLE_TOUCH}
626 SDL_FINGERMOTION, SDL_FINGERDOWN, SDL_FINGERUP: HandleTouch(ev.tfinger);
627 {$ENDIF}
628 {$IFDEF ENABLE_HOLMES}
629 SDL_MOUSEBUTTONDOWN, SDL_MOUSEBUTTONUP, SDL_MOUSEWHEEL, SDL_MOUSEMOTION: fuiOnSDLEvent(ev);
630 {$ENDIF}
631 end
632 end
633 end;
635 procedure sys_RequestQuit;
636 var ev: TSDL_Event;
637 begin
638 ev.type_ := SDL_QUITEV;
639 SDL_PushEvent(@ev)
640 end;
642 (* --------- Init --------- *)
644 procedure sys_Init;
645 var flags: UInt32;
646 begin
647 e_WriteLog('Init SDL2', TMsgType.Notify);
648 {$IFDEF HEADLESS}
649 {$IFDEF USE_SDLMIXER}
650 flags := SDL_INIT_TIMER or SDL_INIT_AUDIO or $00004000;
651 {$ELSE}
652 flags := SDL_INIT_TIMER or $00004000;
653 {$ENDIF}
654 {$ELSE}
655 flags := SDL_INIT_TIMER or SDL_INIT_VIDEO;
656 {$ENDIF}
657 SDL_SetHint(SDL_HINT_ACCELEROMETER_AS_JOYSTICK, '0');
658 if SDL_Init(flags) <> 0 then
659 raise Exception.Create('SDL: Init failed: ' + SDL_GetError);
660 {$IFNDEF HEADLESS}
661 if SDL_InitSubSystem(SDL_INIT_JOYSTICK) <> 0 then
662 e_LogWritefln('SDL: Init subsystem failed: %s', [SDL_GetError()]);
663 {$ENDIF}
664 SDL_ShowCursor(SDL_DISABLE);
665 {$IFDEF ENABLE_TOUCH}
666 sys_ShowKeyboard(FALSE);
667 g_touch_enabled := SDL_GetNumTouchDevices() > 0;
668 {$ELSE}
669 g_touch_enabled := False;
670 {$ENDIF}
671 end;
673 procedure sys_Final;
674 begin
675 e_WriteLog('Releasing SDL2', TMsgType.Notify);
676 if context <> nil then
677 begin
678 SDL_GL_DeleteContext(context);
679 context := nil;
680 end;
681 if window <> nil then
682 begin
683 SDL_DestroyWindow(window);
684 window := nil;
685 end;
686 SDL_Quit
687 end;
689 initialization
690 conRegVar('sdl2_display_index', @display, 'use display index as base', '');
691 conRegVar('sdl2_window_x', @wx, 'window position x', '');
692 conRegVar('sdl2_window_y', @wy, 'window position y', '');
693 conRegVar('sdl2_window_center', @wc, 'force window creation at center', '');
694 display := 0;
695 wx := SDL_WINDOWPOS_CENTERED;
696 wy := SDL_WINDOWPOS_CENTERED;
697 wc := false
698 end.