X-Git-Url: https://deadsoftware.ru/gitweb?a=blobdiff_plain;f=src%2Fgame%2Fg_window.pas;h=f7770bbb7511f0fcd3fb9d9b7a7637e856820689;hb=c21a8185eec05fa8e15d243ef475888c8d9cd699;hp=f711ab2149a49a1ca504bb506c1c84c32ae44eef;hpb=cd0837a23eed9896737537add1a93d878a227840;p=d2df-sdl.git diff --git a/src/game/g_window.pas b/src/game/g_window.pas index f711ab2..f7770bb 100644 --- a/src/game/g_window.pas +++ b/src/game/g_window.pas @@ -1,4 +1,19 @@ -{$MODE DELPHI} +(* Copyright (C) DooM 2D:Forever Developers + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + *) +{$INCLUDE ../shared/a_modes.inc} unit g_window; interface @@ -21,13 +36,19 @@ function GetDisplayModes(dBPP: DWORD; var SelRes: DWORD): SArray; function g_Window_SetDisplay(PreserveGL: Boolean = False): Boolean; function g_Window_SetSize(W, H: Word; FScreen: Boolean): Boolean; +var + gwin_dump_extensions: Boolean = false; + gwin_has_stencil: Boolean = false; + gwin_k8_enable_light_experiments: Boolean = false; + implementation uses {$IFDEF WINDOWS}Windows,{$ENDIF} SDL2, GL, GLExt, e_graphics, e_log, g_main, g_console, SysUtils, e_input, g_options, g_game, - g_basic, g_textures, e_sound, g_sound, g_menu, ENet, g_net; + g_basic, g_textures, e_sound, g_sound, g_menu, ENet, g_net, + g_map, g_gfx; var h_Wnd: PSDL_Window; @@ -553,11 +574,13 @@ begin if wNeedTimeReset then begin - Time_Delta := (27777 div 1000); + Time_Delta := 28{(27777 div 1000)}; wNeedTimeReset := False; end; - t := Time_Delta div (27777 div 1000); + g_Map_ProfilersBegin(); + + t := Time_Delta div 28{(27777 div 1000)}; if t > 0 then begin flag := True; @@ -574,6 +597,8 @@ begin else if NetMode = NET_CLIENT then g_Net_Client_Update(); end; + g_Map_ProfilersEnd(); + if wLoadingQuit then begin g_Game_Free(); @@ -589,7 +614,7 @@ begin // Âðåìÿ ïðåäûäóùåãî îáíîâëåíèÿ: if flag then begin - Time_Old := Time - (Time_Delta mod (27777 div 1000)); + Time_Old := Time - (Time_Delta mod 28{(27777 div 1000)}); if (not wMinimized) then begin Draw(); @@ -622,15 +647,92 @@ begin SDL_GL_SetAttribute(SDL_GL_BLUE_SIZE, 8); SDL_GL_SetAttribute(SDL_GL_DEPTH_SIZE, 16); SDL_GL_SetAttribute(SDL_GL_DOUBLEBUFFER, 1); + if gwin_k8_enable_light_experiments then + begin + SDL_GL_SetAttribute(SDL_GL_STENCIL_SIZE, 1); // lights; it is enough to have 1-bit stencil buffer for lighting + end; SDL_GL_SetSwapInterval(v); end; +function glHasExtension (name: AnsiString): Boolean; +var + exts: PChar; + i: Integer; + found: Boolean; + extName: ShortString; +begin + result := false; + if length(name) = 0 then exit; + exts := glGetString(GL_EXTENSIONS); + if exts = nil then exit; + while (exts[0] <> #0) and (exts[0] = ' ') do Inc(exts); + while exts[0] <> #0 do + begin + if gwin_dump_extensions then + begin + i := 0; + while (exts[i] <> #0) and (exts[i] <> ' ') do Inc(i); + if i > 255 then + begin + e_WriteLog('FUUUUUUUUUUUUU', MSG_WARNING); + end + else + begin + Move(exts^, extName[1], i); + extName[0] := Char(i); + e_WriteLog(Format('EXT: %s', [extName]), MSG_NOTIFY); + end; + end; + found := true; + for i := 0 to length(name)-1 do + begin + if exts[i] = #0 then begin found := false; break; end; + if exts[i] <> name[i+1] then begin found := false; break; end; + end; + if found and ((exts[length(name)] = #0) or (exts[length(name)] = ' ')) then begin result := true; exit; end; + while (exts[0] <> #0) and (exts[0] <> ' ') do Inc(exts); + while (exts[0] <> #0) and (exts[0] = ' ') do Inc(exts); + end; +end; + function SDLMain(): Integer; +var + idx: Integer; + ltmp: Integer; begin {$IFDEF HEADLESS} e_NoGraphics := True; {$ENDIF} + for idx := 1 to ParamCount do + begin + if ParamStr(idx) = '--opengl-dump-exts' then gwin_dump_extensions := true; + if ParamStr(idx) = '--twinkletwinkle' then gwin_k8_enable_light_experiments := true; + if ParamStr(idx) = '--jah' then g_profile_history_size := 100; + //if ParamStr(idx) = '--tree-draw' then gdbg_map_use_tree_draw := true; + //if ParamStr(idx) = '--grid-draw' then gdbg_map_use_tree_draw := false; + //if ParamStr(idx) = '--tree-coldet' then gdbg_map_use_tree_coldet := true; + //if ParamStr(idx) = '--grid-coldet' then gdbg_map_use_tree_coldet := false; + if ParamStr(idx) = '--no-particles' then gpart_dbg_enabled := false; + if ParamStr(idx) = '--no-los' then gmon_dbg_los_enabled := false; + + if ParamStr(idx) = '--no-part-phys' then gpart_dbg_phys_enabled := false; + if ParamStr(idx) = '--no-part-physics' then gpart_dbg_phys_enabled := false; + if ParamStr(idx) = '--no-particles-phys' then gpart_dbg_phys_enabled := false; + if ParamStr(idx) = '--no-particles-physics' then gpart_dbg_phys_enabled := false; + if ParamStr(idx) = '--no-particle-phys' then gpart_dbg_phys_enabled := false; + if ParamStr(idx) = '--no-particle-physics' then gpart_dbg_phys_enabled := false; + end; + + //if gdbg_map_use_tree_draw then e_WriteLog('using TREE renderer', MSG_NOTIFY); + //if not gdbg_map_use_tree_draw then e_WriteLog('using GRID renderer', MSG_NOTIFY); + + //if gdbg_map_use_tree_coldet then e_WriteLog('using TREE coldet', MSG_NOTIFY); + //if not gdbg_map_use_tree_coldet then e_WriteLog('using GRID coldet', MSG_NOTIFY); + + e_WriteLog('Initializing OpenGL', MSG_NOTIFY); + InitOpenGL(gVSync); + e_WriteLog('Creating GL window', MSG_NOTIFY); if not CreateGLWindow(PChar(Format('Doom 2D: Forever %s', [GAME_VERSION]))) then begin @@ -638,11 +740,31 @@ begin exit; end; - e_WriteLog('Initializing OpenGL', MSG_NOTIFY); - InitOpenGL(gVSync); - {EnumDisplayModes();} + if gwin_k8_enable_light_experiments then + begin + SDL_GL_GetAttribute(SDL_GL_STENCIL_SIZE, @ltmp); + e_WriteLog(Format('stencil buffer size: %d', [ltmp]), MSG_WARNING); + gwin_has_stencil := (ltmp > 0); + end + else + begin + gwin_has_stencil := false; + end; + + if not glHasExtension('GL_ARB_texture_non_power_of_two') then + begin + e_WriteLog('Driver DID''T advertised NPOT textures support', MSG_WARNING); + glLegacyNPOT := true; + end + else + begin + e_WriteLog('Driver advertised NPOT textures support', MSG_NOTIFY); + glLegacyNPOT := false; + end; + gwin_dump_extensions := false; + Init(); Time_Old := GetTimer();