DEADSOFTWARE

fixed passing thru disabled walls
[d2df-sdl.git] / src / game / g_window.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, either version 3 of the License, or
6 * (at your option) any later version.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public License
14 * along with this program. If not, see <http://www.gnu.org/licenses/>.
15 *)
16 {$INCLUDE ../shared/a_modes.inc}
17 unit g_window;
19 interface
21 uses
22 wadreader;
24 function SDLMain(): Integer;
25 function GetTimer(): Int64;
26 procedure ResetTimer();
27 function CreateGLWindow(Title: PChar): Boolean;
28 procedure KillGLWindow();
29 procedure PushExitEvent();
30 function ProcessMessage(): Boolean;
31 procedure ProcessLoading();
32 procedure ReDrawWindow();
33 procedure SwapBuffers();
34 procedure Sleep(ms: LongWord);
35 function GetDisplayModes(dBPP: DWORD; var SelRes: DWORD): SArray;
36 function g_Window_SetDisplay(PreserveGL: Boolean = False): Boolean;
37 function g_Window_SetSize(W, H: Word; FScreen: Boolean): Boolean;
39 var
40 gwin_dump_extensions: Boolean = false;
41 gwin_has_stencil: Boolean = false;
42 gwin_k8_enable_light_experiments: Boolean = false;
45 implementation
47 uses
48 {$IFDEF WINDOWS}Windows,{$ENDIF}
49 SDL2, GL, GLExt, e_graphics, e_log, g_main,
50 g_console, SysUtils, e_input, g_options, g_game,
51 g_basic, g_textures, e_sound, g_sound, g_menu, ENet, g_net,
52 g_map, g_gfx, g_monsters, g_holmes;
54 var
55 h_Wnd: PSDL_Window;
56 h_GL: TSDL_GLContext;
57 wFlags: LongWord = 0;
58 Time, Time_Delta, Time_Old: Int64;
59 flag: Boolean;
60 wTitle: PChar = nil;
61 wNeedTimeReset: Boolean = False;
62 //wWindowCreated: Boolean = False;
63 //wCursorShown: Boolean = False;
64 wMinimized: Boolean = False;
65 //wNeedFree: Boolean = True;
66 wLoadingProgress: Boolean = False;
67 wLoadingQuit: Boolean = False;
68 {wWinPause: Byte = 0;}
69 {$IFNDEF WINDOWS}
70 ticksOverflow: Int64 = -1;
71 lastTicks: Uint32 = 0; // to detect overflow
72 {$ENDIF}
73 curMsButState: Word = 0;
74 curKbState: Word = 0;
75 curMsX: Integer = 0;
76 curMsY: Integer = 0;
78 const
79 // TODO: move this to a separate file
80 CP1251: array [0..127] of Word = (
81 $0402,$0403,$201A,$0453,$201E,$2026,$2020,$2021,$20AC,$2030,$0409,$2039,$040A,$040C,$040B,$040F,
82 $0452,$2018,$2019,$201C,$201D,$2022,$2013,$2014,$003F,$2122,$0459,$203A,$045A,$045C,$045B,$045F,
83 $00A0,$040E,$045E,$0408,$00A4,$0490,$00A6,$00A7,$0401,$00A9,$0404,$00AB,$00AC,$00AD,$00AE,$0407,
84 $00B0,$00B1,$0406,$0456,$0491,$00B5,$00B6,$00B7,$0451,$2116,$0454,$00BB,$0458,$0405,$0455,$0457,
85 $0410,$0411,$0412,$0413,$0414,$0415,$0416,$0417,$0418,$0419,$041A,$041B,$041C,$041D,$041E,$041F,
86 $0420,$0421,$0422,$0423,$0424,$0425,$0426,$0427,$0428,$0429,$042A,$042B,$042C,$042D,$042E,$042F,
87 $0430,$0431,$0432,$0433,$0434,$0435,$0436,$0437,$0438,$0439,$043A,$043B,$043C,$043D,$043E,$043F,
88 $0440,$0441,$0442,$0443,$0444,$0445,$0446,$0447,$0448,$0449,$044A,$044B,$044C,$044D,$044E,$044F
89 );
91 // TODO: make a transition table or something
92 function WCharToCP1251(wc: Word): Word;
93 var
94 n: Word;
95 begin
96 Result := 0;
97 for n := 0 to 127 do
98 if CP1251[n] = wc then begin Result := n; break end;
99 Result := Result + 128;
100 end;
102 function g_Window_SetDisplay(PreserveGL: Boolean = False): Boolean;
103 var
104 mode, cmode: TSDL_DisplayMode;
105 begin
106 {$IFDEF HEADLESS}
107 Result := True;
108 Exit;
109 {$ENDIF}
111 Result := False;
113 e_WriteLog('Setting display mode...', MSG_NOTIFY);
115 wFlags := SDL_WINDOW_OPENGL or SDL_WINDOW_RESIZABLE;
116 if gFullscreen then wFlags := wFlags or SDL_WINDOW_FULLSCREEN;
117 if gWinMaximized then wFlags := wFlags or SDL_WINDOW_MAXIMIZED;
119 if h_Wnd <> nil then
120 begin
121 SDL_DestroyWindow(h_Wnd);
122 h_Wnd := nil;
123 end;
125 if gFullscreen then
126 begin
127 mode.w := gScreenWidth;
128 mode.h := gScreenHeight;
129 mode.format := 0;
130 mode.refresh_rate := 0;
131 mode.driverdata := nil;
132 if SDL_GetClosestDisplayMode(0, @mode, @cmode) = nil then
133 begin
134 gScreenWidth := 800;
135 gScreenHeight := 600;
136 end
137 else
138 begin
139 gScreenWidth := cmode.w;
140 gScreenHeight := cmode.h;
141 end;
142 end;
144 h_Wnd := SDL_CreateWindow(PChar(wTitle), gWinRealPosX, gWinRealPosY, gScreenWidth, gScreenHeight, wFlags);
145 if h_Wnd = nil then Exit;
147 SDL_GL_MakeCurrent(h_Wnd, h_GL);
148 SDL_ShowCursor(SDL_DISABLE);
150 Result := True;
151 end;
153 procedure ReShowCursor();
154 begin
155 // TODO: what was this for?
156 end;
158 function GetDisplayModes(dBPP: DWORD; var SelRes: DWORD): SArray;
159 var
160 mode: TSDL_DisplayMode;
161 res, i, k, n, pw, ph: Integer;
162 begin
163 SetLength(Result, 0);
164 {$IFDEF HEADLESS}Exit;{$ENDIF}
165 k := 0; SelRes := 0;
166 n := SDL_GetNumDisplayModes(0);
167 pw := 0; ph := 0;
168 for i := 0 to n do
169 begin
170 res := SDL_GetDisplayMode(0, i, @mode);
171 if res < 0 then continue;
172 if SDL_BITSPERPIXEL(mode.format) = gBPP then continue;
173 if (mode.w = pw) and (mode.h = ph) then continue;
174 if (mode.w = gScreenWidth) and (mode.h = gScreenHeight) then
175 SelRes := k;
176 Inc(k);
177 SetLength(Result, k);
178 Result[k-1] := IntToStr(mode.w) + 'x' + IntToStr(mode.h);
179 pw := mode.w; ph := mode.h
180 end;
182 e_WriteLog('SDL: Got ' + IntToStr(k) + ' resolutions.', MSG_NOTIFY);
183 end;
185 procedure Sleep(ms: LongWord);
186 begin
187 SDL_Delay(ms);
188 end;
190 procedure ChangeWindowSize();
191 begin
192 gWinSizeX := gScreenWidth;
193 gWinSizeY := gScreenHeight;
194 {$IFDEF HEADLESS}Exit;{$ENDIF}
195 e_ResizeWindow(gScreenWidth, gScreenHeight);
196 g_Game_SetupScreenSize();
197 g_Menu_Reset();
198 g_Game_ClearLoading();
199 g_Holmes_VidModeChanged();
200 end;
202 function g_Window_SetSize(W, H: Word; FScreen: Boolean): Boolean;
203 var
204 Preserve: Boolean;
205 begin
206 Result := False;
207 {$IFDEF HEADLESS}Exit;{$ENDIF}
208 Preserve := False;
210 if (gScreenWidth <> W) or (gScreenHeight <> H) then
211 begin
212 Result := True;
213 gScreenWidth := W;
214 gScreenHeight := H;
215 end;
217 if gFullscreen <> FScreen then
218 begin
219 Result := True;
220 gFullscreen := FScreen;
221 Preserve := True;
222 end;
224 if Result then
225 begin
226 g_Window_SetDisplay(Preserve);
227 ChangeWindowSize();
228 end;
229 end;
231 function WindowEventHandler(ev: TSDL_WindowEvent): Boolean;
232 var
233 wActivate, wDeactivate: Boolean;
234 begin
235 Result := False;
236 wActivate := False;
237 wDeactivate := False;
239 case ev.event of
240 SDL_WINDOWEVENT_MOVED:
241 begin
242 if not (gFullscreen or gWinMaximized) then
243 begin
244 gWinRealPosX := ev.data1;
245 gWinRealPosY := ev.data2;
246 end;
247 end;
249 SDL_WINDOWEVENT_MINIMIZED:
250 begin
251 curMsButState := 0;
252 curKbState := 0;
253 if not wMinimized then
254 begin
255 e_ResizeWindow(0, 0);
256 wMinimized := True;
258 if g_debug_WinMsgs then
259 begin
260 g_Console_Add('Now minimized');
261 e_WriteLog('[DEBUG] WinMsgs: Now minimized', MSG_NOTIFY);
262 end;
263 wDeactivate := True;
264 end;
265 end;
267 SDL_WINDOWEVENT_RESIZED:
268 begin
269 curMsButState := 0;
270 curKbState := 0;
271 gScreenWidth := ev.data1;
272 gScreenHeight := ev.data2;
273 ChangeWindowSize();
274 SwapBuffers();
275 if g_debug_WinMsgs then
276 begin
277 g_Console_Add('Resized to ' + IntToStr(ev.data1) + 'x' + IntToStr(ev.data2));
278 e_WriteLog('[DEBUG] WinMsgs: Resized to ' + IntToStr(ev.data1) + 'x' + IntToStr(ev.data2), MSG_NOTIFY);
279 end;
280 end;
282 SDL_WINDOWEVENT_EXPOSED:
283 SwapBuffers();
285 SDL_WINDOWEVENT_MAXIMIZED:
286 begin
287 curMsButState := 0;
288 curKbState := 0;
289 if wMinimized then
290 begin
291 e_ResizeWindow(gScreenWidth, gScreenHeight);
292 wMinimized := False;
293 wActivate := True;
294 end;
295 if not gWinMaximized then
296 begin
297 gWinMaximized := True;
298 if g_debug_WinMsgs then
299 begin
300 g_Console_Add('Now maximized');
301 e_WriteLog('[DEBUG] WinMsgs: Now maximized', MSG_NOTIFY);
302 end;
303 end;
304 end;
306 SDL_WINDOWEVENT_RESTORED:
307 begin
308 curMsButState := 0;
309 curKbState := 0;
310 if wMinimized then
311 begin
312 e_ResizeWindow(gScreenWidth, gScreenHeight);
313 wMinimized := False;
314 wActivate := True;
315 end;
316 if gWinMaximized then
317 gWinMaximized := False;
318 if g_debug_WinMsgs then
319 begin
320 g_Console_Add('Now restored');
321 e_WriteLog('[DEBUG] WinMsgs: Now restored', MSG_NOTIFY);
322 end;
323 end;
325 SDL_WINDOWEVENT_FOCUS_GAINED:
326 begin
327 curMsButState := 0;
328 curKbState := 0;
329 wActivate := True;
330 //e_WriteLog('window gained focus!', MSG_NOTIFY);
331 g_Holmes_WindowFocused();
332 end;
334 SDL_WINDOWEVENT_FOCUS_LOST:
335 begin
336 curMsButState := 0;
337 curKbState := 0;
338 wDeactivate := True;
339 //e_WriteLog('window lost focus!', MSG_NOTIFY);
340 g_Holmes_WindowBlured();
341 end;
342 end;
344 if wDeactivate then
345 begin
346 if gWinActive then
347 begin
348 e_WriteLog('deactivating window', MSG_NOTIFY);
349 e_EnableInput := False;
350 e_ClearInputBuffer();
352 if gMuteWhenInactive then
353 begin
354 //e_WriteLog('deactivating sounds', MSG_NOTIFY);
355 e_MuteChannels(True);
356 end;
358 if g_debug_WinMsgs then
359 begin
360 g_Console_Add('Now inactive');
361 e_WriteLog('[DEBUG] WinMsgs: Now inactive', MSG_NOTIFY);
362 end;
364 gWinActive := False;
365 end;
366 end
367 else if wActivate then
368 begin
369 if not gWinActive then
370 begin
371 //e_WriteLog('activating window', MSG_NOTIFY);
372 e_EnableInput := True;
374 if gMuteWhenInactive then
375 begin
376 //e_WriteLog('activating sounds', MSG_NOTIFY);
377 e_MuteChannels(False);
378 end;
380 if g_debug_WinMsgs then
381 begin
382 g_Console_Add('Now active');
383 e_WriteLog('[DEBUG] WinMsgs: Now active', MSG_NOTIFY);
384 end;
386 gWinActive := True;
387 end;
388 end;
389 end;
391 function EventHandler(ev: TSDL_Event): Boolean;
392 var
393 key, keychr: Word;
394 uc: UnicodeChar;
395 //joy: Integer;
396 msev: THMouseEvent;
397 kbev: THKeyEvent;
399 function buildBut (b: Byte): Word;
400 begin
401 result := 0;
402 case b of
403 SDL_BUTTON_LEFT: result := result or THMouseEvent.Left;
404 SDL_BUTTON_MIDDLE: result := result or THMouseEvent.Middle;
405 SDL_BUTTON_RIGHT: result := result or THMouseEvent.Right;
406 end;
407 end;
409 procedure updateKBState ();
410 var
411 kbstate: PUint8;
412 begin
413 curKbState := 0;
414 kbstate := SDL_GetKeyboardState(nil);
415 if (kbstate[SDL_SCANCODE_LCTRL] <> 0) or (kbstate[SDL_SCANCODE_RCTRL] <> 0) then curKbState := curKbState or THKeyEvent.ModCtrl;
416 if (kbstate[SDL_SCANCODE_LALT] <> 0) or (kbstate[SDL_SCANCODE_RALT] <> 0) then curKbState := curKbState or THKeyEvent.ModAlt;
417 if (kbstate[SDL_SCANCODE_LSHIFT] <> 0) or (kbstate[SDL_SCANCODE_RSHIFT] <> 0) then curKbState := curKbState or THKeyEvent.ModShift;
418 end;
420 begin
421 Result := False;
422 updateKBState();
424 case ev.type_ of
425 SDL_WINDOWEVENT:
426 Result := WindowEventHandler(ev.window);
428 SDL_QUITEV:
429 begin
430 if gExit <> EXIT_QUIT then
431 begin
432 if not wLoadingProgress then
433 begin
434 g_Game_Free();
435 g_Game_Quit();
436 end
437 else
438 wLoadingQuit := True;
439 end;
440 Result := True;
441 end;
443 SDL_KEYDOWN, SDL_KEYUP:
444 begin
445 key := ev.key.keysym.scancode;
446 if (g_holmes_enabled) then
447 begin
448 if (ev.type_ = SDL_KEYDOWN) then kbev.kind := THKeyEvent.Press else kbev.kind := THKeyEvent.Release;
449 kbev.scan := ev.key.keysym.scancode;
450 kbev.sym := ev.key.keysym.sym;
451 kbev.bstate := curMsButState;
452 kbev.kstate := curKbState;
453 if g_Holmes_keyEvent(kbev) then exit;
454 end;
455 if (ev.type_ = SDL_KEYDOWN) then KeyPress(key);
456 end;
458 SDL_MOUSEBUTTONDOWN, SDL_MOUSEBUTTONUP:
459 begin
460 msev.dx := ev.button.x-curMsX;
461 msev.dy := ev.button.y-curMsY;
462 curMsX := ev.button.x;
463 curMsY := ev.button.y;
464 if (ev.type_ = SDL_MOUSEBUTTONDOWN) then msev.kind := THMouseEvent.Press else msev.kind := THMouseEvent.Release;
465 msev.but := buildBut(ev.button.button);
466 msev.x := curMsX;
467 msev.y := curMsY;
468 if (msev.but <> 0) then
469 begin
470 // ev.button.clicks: Byte
471 curMsButState := curMsButState or msev.but;
472 msev.bstate := curMsButState;
473 msev.kstate := curKbState;
474 if (g_holmes_enabled) then g_Holmes_mouseEvent(msev);
475 end;
476 end;
477 SDL_MOUSEWHEEL:
478 begin
479 if (ev.wheel.y <> 0) then
480 begin
481 msev.dx := 0;
482 msev.dy := ev.wheel.y;
483 msev.kind := THMouseEvent.Press;
484 if (ev.wheel.y < 0) then msev.but := THMouseEvent.WheelUp else msev.but := THMouseEvent.WheelDown;
485 msev.x := curMsX;
486 msev.y := curMsY;
487 msev.bstate := curMsButState;
488 msev.kstate := curKbState;
489 if (g_holmes_enabled) then g_Holmes_mouseEvent(msev);
490 end;
491 end;
492 SDL_MOUSEMOTION:
493 begin
494 msev.dx := ev.button.x-curMsX;
495 msev.dy := ev.button.y-curMsY;
496 curMsX := ev.button.x;
497 curMsY := ev.button.y;
498 msev.kind := THMouseEvent.Motion;
499 msev.but := 0;
500 msev.x := curMsX;
501 msev.y := curMsY;
502 msev.bstate := curMsButState;
503 msev.kstate := curKbState;
504 if (g_holmes_enabled) then g_Holmes_mouseEvent(msev);
505 end;
507 SDL_TEXTINPUT:
508 begin
509 Utf8ToUnicode(@uc, PChar(ev.text.text), 1);
510 keychr := Word(uc);
511 if (keychr > 127) then keychr := WCharToCP1251(keychr);
512 CharPress(Chr(keychr));
513 end;
515 // other key presses and joysticks are handled in e_input
516 end;
517 end;
519 procedure SwapBuffers();
520 begin
521 {$IFDEF HEADLESS}Exit;{$ENDIF}
522 SDL_GL_SwapWindow(h_Wnd);
523 end;
525 procedure KillGLWindow();
526 begin
527 if h_Wnd <> nil then SDL_DestroyWindow(h_Wnd);
528 if h_GL <> nil then SDL_GL_DeleteContext(h_GL);
529 h_Wnd := nil;
530 h_GL := nil;
531 //wWindowCreated := False;
532 end;
534 function CreateGLWindow(Title: PChar): Boolean;
535 //var
536 // flags: LongWord;
537 begin
538 Result := False;
540 gWinSizeX := gScreenWidth;
541 gWinSizeY := gScreenHeight;
543 wTitle := Title;
544 e_WriteLog('Creating window', MSG_NOTIFY);
546 if not g_Window_SetDisplay() then
547 begin
548 KillGLWindow();
549 e_WriteLog('Window creation error (resolution not supported?)', MSG_FATALERROR);
550 exit;
551 end;
553 {$IFNDEF HEADLESS}
554 h_Gl := SDL_GL_CreateContext(h_Wnd);
555 if h_Gl = nil then Exit;
556 {$ENDIF}
557 //wWindowCreated := True;
559 e_ResizeWindow(gScreenWidth, gScreenHeight);
560 e_InitGL();
562 Result := True;
563 end;
565 {$IFDEF WINDOWS}
566 // windoze sux; in headless mode `GetTickCount()` (and SDL) returns shit
567 function GetTimer(): Int64;
568 var
569 F, C: Int64;
570 begin
571 QueryPerformanceFrequency(F);
572 QueryPerformanceCounter(C);
573 Result := Round(C/F*1000{000});
574 end;
575 {$ELSE}
576 function GetTimer(): Int64;
577 var
578 t: Uint32;
579 tt: Int64;
580 begin
581 t := SDL_GetTicks() {* 1000}; // TODO: do we really need microseconds here? k8: NOPE!
582 if ticksOverflow = -1 then
583 begin
584 ticksOverflow := 0;
585 lastTicks := t;
586 end
587 else
588 begin
589 if lastTicks > t then
590 begin
591 // overflow, increment overflow ;-)
592 ticksOverflow := ticksOverflow+(Int64($ffffffff)+Int64(1));
593 tt := (Int64($ffffffff)+Int64(1))+Int64(t);
594 t := Uint32(tt-lastTicks);
595 end;
596 end;
597 lastTicks := t;
598 result := ticksOverflow+Int64(t);
599 end;
600 {$ENDIF}
602 procedure ResetTimer();
603 begin
604 wNeedTimeReset := True;
605 end;
607 procedure PushExitEvent();
608 var
609 ev: TSDL_Event;
610 begin
611 ev.type_ := SDL_QUITEV;
612 SDL_PushEvent(@ev);
613 end;
615 procedure ProcessLoading();
616 var
617 ev: TSDL_Event;
618 ID: DWORD;
619 begin
620 FillChar(ev, SizeOf(ev), 0);
621 //wNeedFree := False;
622 wLoadingProgress := True;
623 while SDL_PollEvent(@ev) > 0 do
624 begin
625 if (ev.type_ = SDL_QUITEV) then
626 break;
627 end;
628 //wNeedFree := True;
630 if (ev.type_ = SDL_QUITEV) or (gExit = EXIT_QUIT) then
631 begin
632 wLoadingProgress := False;
633 exit;
634 end;
636 if not wMinimized then
637 begin
638 if g_Texture_Get('INTER', ID) then
639 e_DrawSize(ID, 0, 0, 0, False, False, gScreenWidth, gScreenHeight)
640 else
641 e_Clear(GL_COLOR_BUFFER_BIT, 0, 0, 0);
643 DrawLoadingStat();
644 SwapBuffers();
646 ReShowCursor();
647 end;
649 e_SoundUpdate();
651 if NetMode = NET_SERVER then
652 g_Net_Host_Update
653 else
654 if (NetMode = NET_CLIENT) and (NetState <> NET_STATE_AUTH) then
655 g_Net_Client_UpdateWhileLoading;
656 wLoadingProgress := False;
657 end;
659 function ProcessMessage(): Boolean;
660 var
661 i, t: Integer;
662 ev: TSDL_Event;
663 begin
664 Result := False;
665 FillChar(ev, SizeOf(ev), 0);
667 while SDL_PollEvent(@ev) > 0 do
668 begin
669 Result := EventHandler(ev);
670 if ev.type_ = SDL_QUITEV then exit;
671 end;
673 Time := GetTimer();
674 Time_Delta := Time - Time_Old;
676 flag := False;
678 if wNeedTimeReset then
679 begin
680 Time_Delta := 28{(27777 div 1000)};
681 wNeedTimeReset := False;
682 end;
684 g_Map_ProfilersBegin();
685 g_Mons_ProfilersBegin();
687 t := Time_Delta div 28{(27777 div 1000)};
688 if t > 0 then
689 begin
690 flag := True;
691 for i := 1 to t do
692 begin
693 if NetMode = NET_SERVER then g_Net_Host_Update()
694 else if NetMode = NET_CLIENT then g_Net_Client_Update();
695 Update();
696 end;
697 end
698 else
699 begin
700 if NetMode = NET_SERVER then g_Net_Host_Update()
701 else if NetMode = NET_CLIENT then g_Net_Client_Update();
702 end;
704 g_Map_ProfilersEnd();
705 g_Mons_ProfilersEnd();
707 if wLoadingQuit then
708 begin
709 g_Game_Free();
710 g_Game_Quit();
711 end;
713 if gExit = EXIT_QUIT then
714 begin
715 Result := True;
716 Exit;
717 end;
719 // Âðåìÿ ïðåäûäóùåãî îáíîâëåíèÿ:
720 if flag then
721 begin
722 Time_Old := Time - (Time_Delta mod 28{(27777 div 1000)});
723 if (not wMinimized) then
724 begin
725 Draw();
726 SwapBuffers();
727 ReShowCursor();
728 end;
729 end
730 else
731 Sleep(1);
733 e_SoundUpdate();
734 end;
736 procedure ReDrawWindow;
737 begin
738 SwapBuffers();
739 ReShowCursor();
740 end;
742 procedure InitOpenGL(VSync: Boolean);
743 var
744 v: Byte;
745 begin
746 {$IFDEF HEADLESS}Exit;{$ENDIF}
747 if VSync then v := 1 else v := 0;
748 SDL_GL_SetAttribute(SDL_GL_CONTEXT_MAJOR_VERSION, 2);
749 SDL_GL_SetAttribute(SDL_GL_CONTEXT_MINOR_VERSION, 1);
750 SDL_GL_SetAttribute(SDL_GL_RED_SIZE, 8);
751 SDL_GL_SetAttribute(SDL_GL_GREEN_SIZE, 8);
752 SDL_GL_SetAttribute(SDL_GL_BLUE_SIZE, 8);
753 SDL_GL_SetAttribute(SDL_GL_DEPTH_SIZE, 16);
754 SDL_GL_SetAttribute(SDL_GL_DOUBLEBUFFER, 1);
755 if gwin_k8_enable_light_experiments then
756 begin
757 SDL_GL_SetAttribute(SDL_GL_STENCIL_SIZE, 1); // lights; it is enough to have 1-bit stencil buffer for lighting
758 end;
759 SDL_GL_SetSwapInterval(v);
760 end;
762 function glHasExtension (name: AnsiString): Boolean;
763 var
764 exts: PChar;
765 i: Integer;
766 found: Boolean;
767 extName: ShortString;
768 begin
769 result := false;
770 if length(name) = 0 then exit;
771 exts := glGetString(GL_EXTENSIONS);
772 if exts = nil then exit;
773 while (exts[0] <> #0) and (exts[0] = ' ') do Inc(exts);
774 while exts[0] <> #0 do
775 begin
776 if gwin_dump_extensions then
777 begin
778 i := 0;
779 while (exts[i] <> #0) and (exts[i] <> ' ') do Inc(i);
780 if i > 255 then
781 begin
782 e_WriteLog('FUUUUUUUUUUUUU', MSG_WARNING);
783 end
784 else
785 begin
786 Move(exts^, extName[1], i);
787 extName[0] := Char(i);
788 e_WriteLog(Format('EXT: %s', [extName]), MSG_NOTIFY);
789 end;
790 end;
791 found := true;
792 for i := 0 to length(name)-1 do
793 begin
794 if exts[i] = #0 then begin found := false; break; end;
795 if exts[i] <> name[i+1] then begin found := false; break; end;
796 end;
797 if found and ((exts[length(name)] = #0) or (exts[length(name)] = ' ')) then begin result := true; exit; end;
798 while (exts[0] <> #0) and (exts[0] <> ' ') do Inc(exts);
799 while (exts[0] <> #0) and (exts[0] = ' ') do Inc(exts);
800 end;
801 end;
803 function SDLMain(): Integer;
804 var
805 idx: Integer;
806 ltmp: Integer;
807 begin
808 {$IFDEF HEADLESS}
809 e_NoGraphics := True;
810 {$ENDIF}
812 for idx := 1 to ParamCount do
813 begin
814 if ParamStr(idx) = '--opengl-dump-exts' then gwin_dump_extensions := true;
815 if ParamStr(idx) = '--twinkletwinkle' then gwin_k8_enable_light_experiments := true;
816 if ParamStr(idx) = '--jah' then g_profile_history_size := 100;
817 //if ParamStr(idx) = '--tree-draw' then gdbg_map_use_tree_draw := true;
818 //if ParamStr(idx) = '--grid-draw' then gdbg_map_use_tree_draw := false;
819 //if ParamStr(idx) = '--tree-coldet' then gdbg_map_use_tree_coldet := true;
820 //if ParamStr(idx) = '--grid-coldet' then gdbg_map_use_tree_coldet := false;
821 if ParamStr(idx) = '--no-particles' then gpart_dbg_enabled := false;
822 if ParamStr(idx) = '--no-los' then gmon_dbg_los_enabled := false;
824 if ParamStr(idx) = '--profile-render' then g_profile_frame_draw := true;
825 if ParamStr(idx) = '--profile-coldet' then g_profile_collision := true;
826 if ParamStr(idx) = '--profile-los' then g_profile_los := true;
828 if ParamStr(idx) = '--no-part-phys' then gpart_dbg_phys_enabled := false;
829 if ParamStr(idx) = '--no-part-physics' then gpart_dbg_phys_enabled := false;
830 if ParamStr(idx) = '--no-particles-phys' then gpart_dbg_phys_enabled := false;
831 if ParamStr(idx) = '--no-particles-physics' then gpart_dbg_phys_enabled := false;
832 if ParamStr(idx) = '--no-particle-phys' then gpart_dbg_phys_enabled := false;
833 if ParamStr(idx) = '--no-particle-physics' then gpart_dbg_phys_enabled := false;
835 if ParamStr(idx) = '--holmes' then begin g_holmes_enabled := true; g_Game_SetDebugMode(); end;
836 end;
838 //if gdbg_map_use_tree_draw then e_WriteLog('using TREE renderer', MSG_NOTIFY);
839 //if not gdbg_map_use_tree_draw then e_WriteLog('using GRID renderer', MSG_NOTIFY);
841 //if gdbg_map_use_tree_coldet then e_WriteLog('using TREE coldet', MSG_NOTIFY);
842 //if not gdbg_map_use_tree_coldet then e_WriteLog('using GRID coldet', MSG_NOTIFY);
844 e_WriteLog('Initializing OpenGL', MSG_NOTIFY);
845 InitOpenGL(gVSync);
847 e_WriteLog('Creating GL window', MSG_NOTIFY);
848 if not CreateGLWindow(PChar(Format('Doom 2D: Forever %s', [GAME_VERSION]))) then
849 begin
850 Result := 0;
851 exit;
852 end;
854 {EnumDisplayModes();}
856 if gwin_k8_enable_light_experiments then
857 begin
858 SDL_GL_GetAttribute(SDL_GL_STENCIL_SIZE, @ltmp);
859 e_WriteLog(Format('stencil buffer size: %d', [ltmp]), MSG_WARNING);
860 gwin_has_stencil := (ltmp > 0);
861 end
862 else
863 begin
864 gwin_has_stencil := false;
865 end;
867 if not glHasExtension('GL_ARB_texture_non_power_of_two') then
868 begin
869 e_WriteLog('Driver DID''T advertised NPOT textures support', MSG_WARNING);
870 glLegacyNPOT := true;
871 end
872 else
873 begin
874 e_WriteLog('Driver advertised NPOT textures support', MSG_NOTIFY);
875 glLegacyNPOT := false;
876 end;
877 gwin_dump_extensions := false;
879 Init();
880 Time_Old := GetTimer();
882 // Êîìàíäíàÿ ñòðîêà:
883 if ParamCount > 0 then
884 g_Game_Process_Params();
886 // Çàïðîñ ÿçûêà:
887 if (not gGameOn) and gAskLanguage then
888 g_Menu_AskLanguage();
890 e_WriteLog('Entering the main loop', MSG_NOTIFY);
892 while not ProcessMessage() do
893 { Main Loop } ;
895 Release();
896 KillGLWindow();
898 Result := 0;
899 end;
901 end.