4e4f42377e3da2e59abb09b1967ce97add6ad01f
1 (* Copyright (C) Doom 2D: Forever Developers
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.
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.
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/>.
15 {$INCLUDE ../shared/a_modes.inc}
23 function sys_GetTicks (): Int64;
24 procedure sys_Delay (ms
: Integer);
26 (* --- Graphics --- *)
27 function sys_GetDisplayModes (bpp
: Integer): SSArray
;
28 function sys_SetDisplayMode (w
, h
, bpp
: Integer; fullscreen
, maximized
: Boolean): Boolean;
29 procedure sys_EnableVSync (yes
: Boolean);
30 procedure sys_Repaint
;
33 function sys_HandleInput (): Boolean;
34 procedure sys_RequestQuit
;
41 sys_CharPress
: procedure (ch
: AnsiChar) = nil;
47 (* --------- Utils --------- *)
49 function sys_GetTicks (): Int64;
51 Result
:= Round(TimeStampToMSecs(DateTimeToTimeStamp(Now())))
54 procedure sys_Delay (ms
: Integer);
59 (* --------- Graphics --------- *)
61 procedure sys_Repaint
;
65 procedure sys_EnableVSync (yes
: Boolean);
69 function sys_GetDisplayModes (bpp
: Integer): SSArray
;
74 function sys_SetDisplayMode (w
, h
, bpp
: Integer; fullscreen
, maximized
: Boolean): Boolean;
79 (* --------- Input --------- *)
81 function sys_HandleInput (): Boolean;
86 procedure sys_RequestQuit
;
90 (* --------- Init --------- *)