X-Git-Url: https://deadsoftware.ru/gitweb?a=blobdiff_plain;f=src%2Fgame%2Fg_window.pas;h=e3226eae84f4e6446f0474434e28d8b81782150c;hb=e452d337f0620b50d8d978b534437b2732134d8f;hp=33fc80c2969914e7f43c22d84edbc8c8d9ba55fb;hpb=cd0c726308c335c662384b41d9e23af0457290f7;p=d2df-sdl.git diff --git a/src/game/g_window.pas b/src/game/g_window.pas index 33fc80c..7774c0a 100644 --- a/src/game/g_window.pas +++ b/src/game/g_window.pas @@ -1,638 +1,388 @@ +(* 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, version 3 of the License ONLY. + * + * 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 uses - WADEDITOR; - -function SDLMain(): Integer; -function GetTimer(): Int64; -procedure ResetTimer(); -function CreateGLWindow(Title: PChar): Boolean; -procedure KillGLWindow(); -procedure PushExitEvent(); -function ProcessMessage(): Boolean; -procedure ProcessLoading(); -procedure ReDrawWindow(); -procedure SwapBuffers(); -procedure Sleep(ms: LongWord); -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; + utils; + +function SDLMain (): Integer; +procedure ResetTimer (); +procedure ProcessLoading (forceUpdate: Boolean=false); + +var + gwin_dump_extensions: Boolean = false; + gwin_has_stencil: Boolean = false; + gwin_k8_enable_light_experiments: Boolean = false; + g_dbg_aimline_on: Boolean = false; + g_dbg_input: Boolean = False; implementation uses - 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; +{$IFDEF WINDOWS}Windows,{$ENDIF} +{$IFDEF ENABLE_HOLMES} + g_holmes, sdlcarcass, fui_ctls, +{$ENDIF} +{$INCLUDE ../nogl/noGLuses.inc} + SysUtils, Classes, MAPDEF, Math, + e_graphics, e_log, e_texture, g_main, + g_console, e_input, g_options, g_game, + g_basic, g_textures, e_sound, g_sound, g_menu, ENet, g_net, + g_map, g_gfx, g_monsters, xprofiler, + g_touch, g_gui, g_system, g_netmaster; + + +const + ProgressUpdateMSecs = 35; //1;//100; var - h_Wnd: PSDL_Window; - h_GL: TSDL_GLContext; - wFlags: LongWord = 0; Time, Time_Delta, Time_Old: Int64; flag: Boolean; - wTitle: PChar = nil; - wNeedTimeReset: Boolean = False; - //wWindowCreated: Boolean = False; - //wCursorShown: Boolean = False; - wMinimized: Boolean = False; - //wNeedFree: Boolean = True; - wLoadingProgress: Boolean = False; - wLoadingQuit: Boolean = False; - {wWinPause: Byte = 0;} - ticksOverflow: Int64 = -1; - lastTicks: Uint32 = 0; // to detect overflow + wNeedTimeReset: Boolean = false; + wMinimized: Boolean = false; + wLoadingQuit: Boolean = false; -const - // TODO: move this to a separate file - CP1251: array [0..127] of Word = ( - $0402,$0403,$201A,$0453,$201E,$2026,$2020,$2021,$20AC,$2030,$0409,$2039,$040A,$040C,$040B,$040F, - $0452,$2018,$2019,$201C,$201D,$2022,$2013,$2014,$003F,$2122,$0459,$203A,$045A,$045C,$045B,$045F, - $00A0,$040E,$045E,$0408,$00A4,$0490,$00A6,$00A7,$0401,$00A9,$0404,$00AB,$00AC,$00AD,$00AE,$0407, - $00B0,$00B1,$0406,$0456,$0491,$00B5,$00B6,$00B7,$0451,$2116,$0454,$00BB,$0458,$0405,$0455,$0457, - $0410,$0411,$0412,$0413,$0414,$0415,$0416,$0417,$0418,$0419,$041A,$041B,$041C,$041D,$041E,$041F, - $0420,$0421,$0422,$0423,$0424,$0425,$0426,$0427,$0428,$0429,$042A,$042B,$042C,$042D,$042E,$042F, - $0430,$0431,$0432,$0433,$0434,$0435,$0436,$0437,$0438,$0439,$043A,$043B,$043C,$043D,$043E,$043F, - $0440,$0441,$0442,$0443,$0444,$0445,$0446,$0447,$0448,$0449,$044A,$044B,$044C,$044D,$044E,$044F - ); - -// TODO: make a transition table or something -function WCharToCP1251(wc: Word): Word; -var - n: Word; +procedure ResetTimer (); begin - Result := 0; - for n := 0 to 127 do - if CP1251[n] = wc then begin Result := n; break end; - Result := Result + 128; + wNeedTimeReset := true; end; -function g_Window_SetDisplay(PreserveGL: Boolean = False): Boolean; +{$IFNDEF HEADLESS} var - mode, cmode: TSDL_DisplayMode; -begin - Result := False; + prevLoadingUpdateTime: UInt64 = 0; +{$ENDIF} - e_WriteLog('Setting display mode...', MSG_NOTIFY); +procedure ProcessLoading (forceUpdate: Boolean=false); +{$IFNDEF HEADLESS} +var + stt: UInt64; +{$ENDIF} +begin + if sys_HandleInput() = True then + Exit; - wFlags := SDL_WINDOW_OPENGL or SDL_WINDOW_RESIZABLE; - if gFullscreen then wFlags := wFlags or SDL_WINDOW_FULLSCREEN; - if gWinMaximized then wFlags := wFlags or SDL_WINDOW_MAXIMIZED; - - if h_Wnd <> nil then - begin - SDL_DestroyWindow(h_Wnd); - h_Wnd := nil; - end; - - if gFullscreen then +{$IFNDEF HEADLESS} + if not wMinimized then begin - mode.w := gScreenWidth; - mode.h := gScreenHeight; - mode.format := 0; - mode.refresh_rate := 0; - mode.driverdata := nil; - if SDL_GetClosestDisplayMode(0, @mode, @cmode) = nil then - begin - gScreenWidth := 800; - gScreenHeight := 600; - end - else + if not forceUpdate then begin - gScreenWidth := cmode.w; - gScreenHeight := cmode.h; + stt := getTimeMilli(); + forceUpdate := (stt < prevLoadingUpdateTime) or (stt-prevLoadingUpdateTime >= ProgressUpdateMSecs); end; - end; - h_Wnd := SDL_CreateWindow(PChar(wTitle), gWinRealPosX, gWinRealPosY, gScreenWidth, gScreenHeight, wFlags); - if h_Wnd = nil then Exit; - - SDL_GL_MakeCurrent(h_Wnd, h_GL); - SDL_ShowCursor(SDL_DISABLE); - - Result := True; -end; + if forceUpdate then + begin + DrawMenuBackground('INTER'); + e_DarkenQuadWH(0, 0, gScreenWidth, gScreenHeight, 150); -procedure ReShowCursor(); -begin - // TODO: what was this for? -end; + DrawLoadingStat(); + g_Console_Draw(True); + sys_Repaint; + prevLoadingUpdateTime := getTimeMilli(); + end; + end; +{$ENDIF} -function GetDisplayModes(dBPP: DWORD; var SelRes: DWORD): SArray; -var - mode: TSDL_DisplayMode; - res, i, k, n, pw, ph: Integer; -begin - SetLength(Result, 0); + e_SoundUpdate(); - k := 0; SelRes := 0; - n := SDL_GetNumDisplayModes(0); - pw := 0; ph := 0; - for i := 0 to n do + if NetMode = NET_SERVER then + begin + g_Net_Host_Update(); + end + else begin - res := SDL_GetDisplayMode(0, i, @mode); - if res < 0 then continue; - if SDL_BITSPERPIXEL(mode.format) = gBPP then continue; - if (mode.w = pw) and (mode.h = ph) then continue; - if (mode.w = gScreenWidth) and (mode.h = gScreenHeight) then - SelRes := k; - Inc(k); - SetLength(Result, k); - Result[k-1] := IntToStr(mode.w) + 'x' + IntToStr(mode.h); - pw := mode.w; ph := mode.h + if (NetMode = NET_CLIENT) and (NetState <> NET_STATE_AUTH) then g_Net_Client_UpdateWhileLoading(); end; - - e_WriteLog('SDL: Got ' + IntToStr(k) + ' resolutions.', MSG_NOTIFY); -end; - -procedure Sleep(ms: LongWord); -begin - SDL_Delay(ms); end; -procedure ChangeWindowSize(); -begin - gWinSizeX := gScreenWidth; - gWinSizeY := gScreenHeight; - e_ResizeWindow(gScreenWidth, gScreenHeight); - g_Game_SetupScreenSize(); - g_Menu_Reset(); - g_Game_ClearLoading(); -end; -function g_Window_SetSize(W, H: Word; FScreen: Boolean): Boolean; +function ProcessMessage (): Boolean; var - Preserve: Boolean; + i, t: Integer; begin - Result := False; - Preserve := False; + result := sys_HandleInput(); - if (gScreenWidth <> W) or (gScreenHeight <> H) then - begin - Result := True; - gScreenWidth := W; - gScreenHeight := H; - end; + Time := sys_GetTicks(); + Time_Delta := Time-Time_Old; - if gFullscreen <> FScreen then - begin - Result := True; - gFullscreen := FScreen; - Preserve := True; - end; + flag := false; - if Result then + if wNeedTimeReset then begin - g_Window_SetDisplay(Preserve); - ChangeWindowSize(); + Time_Delta := 28; + wNeedTimeReset := false; end; -end; - -function WindowEventHandler(ev: TSDL_WindowEvent): Boolean; -var - wActivate, wDeactivate: Boolean; -begin - Result := False; - wActivate := False; - wDeactivate := False; - - case ev.event of - SDL_WINDOWEVENT_MOVED: - begin - if not (gFullscreen or gWinMaximized) then - begin - gWinRealPosX := ev.data1; - gWinRealPosY := ev.data2; - end; - end; - - SDL_WINDOWEVENT_MINIMIZED: - begin - if not wMinimized then - begin - e_ResizeWindow(0, 0); - wMinimized := True; - - if g_debug_WinMsgs then - begin - g_Console_Add('Now minimized'); - e_WriteLog('[DEBUG] WinMsgs: Now minimized', MSG_NOTIFY); - end; - wDeactivate := True; - end; - end; - - SDL_WINDOWEVENT_RESIZED: - begin - gScreenWidth := ev.data1; - gScreenHeight := ev.data2; - ChangeWindowSize(); - SwapBuffers(); - if g_debug_WinMsgs then - begin - g_Console_Add('Resized to ' + IntToStr(ev.data1) + 'x' + IntToStr(ev.data2)); - e_WriteLog('[DEBUG] WinMsgs: Resized to ' + IntToStr(ev.data1) + 'x' + IntToStr(ev.data2), MSG_NOTIFY); - end; - end; - - SDL_WINDOWEVENT_EXPOSED: - SwapBuffers(); - - SDL_WINDOWEVENT_MAXIMIZED: - begin - if wMinimized then - begin - e_ResizeWindow(gScreenWidth, gScreenHeight); - wMinimized := False; - wActivate := True; - end; - if not gWinMaximized then - begin - gWinMaximized := True; - if g_debug_WinMsgs then - begin - g_Console_Add('Now maximized'); - e_WriteLog('[DEBUG] WinMsgs: Now maximized', MSG_NOTIFY); - end; - end; - end; - - SDL_WINDOWEVENT_RESTORED: - begin - if wMinimized then - begin - e_ResizeWindow(gScreenWidth, gScreenHeight); - wMinimized := False; - wActivate := True; - end; - if gWinMaximized then - gWinMaximized := False; - if g_debug_WinMsgs then - begin - g_Console_Add('Now restored'); - e_WriteLog('[DEBUG] WinMsgs: Now restored', MSG_NOTIFY); - end; - end; - SDL_WINDOWEVENT_FOCUS_GAINED: - begin - wActivate := True; - //e_WriteLog('window gained focus!', MSG_NOTIFY); - end; + g_Map_ProfilersBegin(); + g_Mons_ProfilersBegin(); - SDL_WINDOWEVENT_FOCUS_LOST: - begin - wDeactivate := True; - //e_WriteLog('window lost focus!', MSG_NOTIFY); - end; - end; - - if wDeactivate then + t := Time_Delta div 28; + if (t > 0) then begin - if gWinActive then + flag := true; + for i := 1 to t do begin - e_WriteLog('deactivating window', MSG_NOTIFY); - e_EnableInput := False; - e_ClearInputBuffer(); - - if gMuteWhenInactive then - begin - //e_WriteLog('deactivating sounds', MSG_NOTIFY); - e_MuteChannels(True); - end; - - if g_debug_WinMsgs then - begin - g_Console_Add('Now inactive'); - e_WriteLog('[DEBUG] WinMsgs: Now inactive', MSG_NOTIFY); - end; - - gWinActive := False; + if (NetMode = NET_SERVER) then g_Net_Host_Update() + else if (NetMode = NET_CLIENT) then g_Net_Client_Update(); + Update(); end; end - else if wActivate then + else begin - if not gWinActive then - begin - //e_WriteLog('activating window', MSG_NOTIFY); - e_EnableInput := True; - - if gMuteWhenInactive then - begin - //e_WriteLog('activating sounds', MSG_NOTIFY); - e_MuteChannels(False); - end; - - if g_debug_WinMsgs then - begin - g_Console_Add('Now active'); - e_WriteLog('[DEBUG] WinMsgs: Now active', MSG_NOTIFY); - end; - - gWinActive := True; - end; + if (NetMode = NET_SERVER) then g_Net_Host_Update() + else if (NetMode = NET_CLIENT) then g_Net_Client_Update(); end; -end; -function EventHandler(ev: TSDL_Event): Boolean; -var - key, keychr: Word; - uc: UnicodeChar; - //joy: Integer; -begin - Result := False; - case ev.type_ of - SDL_WINDOWEVENT: - Result := WindowEventHandler(ev.window); + if NetMode = NET_SERVER then g_Net_Flush(); - SDL_QUITEV: - begin - if gExit <> EXIT_QUIT then - begin - if not wLoadingProgress then - begin - g_Game_Free(); - g_Game_Quit(); - end - else - wLoadingQuit := True; - end; - Result := True; - end; + g_Map_ProfilersEnd(); + g_Mons_ProfilersEnd(); - SDL_KEYDOWN: - begin - key := ev.key.keysym.scancode; - KeyPress(key); - end; - - SDL_TEXTINPUT: - begin - Utf8ToUnicode(@uc, PChar(ev.text.text), 1); - keychr := Word(uc); - if (keychr > 127) then - keychr := WCharToCP1251(keychr); - CharPress(Chr(keychr)); - end; - - // other key presses and joysticks are handled in e_input + if wLoadingQuit then + begin + g_Game_Free(); + g_Game_Quit(); end; -end; - -procedure SwapBuffers(); -begin - SDL_GL_SwapWindow(h_Wnd); -end; - -procedure KillGLWindow(); -begin - if h_Wnd <> nil then SDL_DestroyWindow(h_Wnd); - if h_GL <> nil then SDL_GL_DeleteContext(h_GL); - h_Wnd := nil; - h_GL := nil; - //wWindowCreated := False; -end; -function CreateGLWindow(Title: PChar): Boolean; -//var -// flags: LongWord; -begin - Result := False; - - gWinSizeX := gScreenWidth; - gWinSizeY := gScreenHeight; - - wTitle := Title; - e_WriteLog('Creating window', MSG_NOTIFY); - - if not g_Window_SetDisplay() then + if (gExit = EXIT_QUIT) then begin - KillGLWindow(); - e_WriteLog('Window creation error (resolution not supported?)', MSG_FATALERROR); + result := true; exit; end; - h_Gl := SDL_GL_CreateContext(h_Wnd); - if h_Gl = nil then Exit; - - //wWindowCreated := True; - - e_ResizeWindow(gScreenWidth, gScreenHeight); - e_InitGL(); - - Result := True; -end; - -function GetTimer(): Int64; -var - t: Uint32; - tt: Int64; -begin - t := SDL_GetTicks() {* 1000}; // TODO: do we really need microseconds here? k8: NOPE! - if ticksOverflow = -1 then + // Âðåìÿ ïðåäûäóùåãî îáíîâëåíèÿ + if flag then begin - ticksOverflow := 0; - lastTicks := t; + Time_Old := Time - (Time_Delta mod 28); + if (not wMinimized) then + begin + Draw; + sys_Repaint + end end else begin - if lastTicks > t then - begin - // overflow, increment overflow ;-) - ticksOverflow := ticksOverflow+(Int64($ffffffff)+Int64(1)); - tt := (Int64($ffffffff)+Int64(1))+Int64(t); - t := Uint32(tt-lastTicks); - end; + sys_Delay(1) // release time slice, so we won't eat 100% CPU end; - lastTicks := t; - result := ticksOverflow+Int64(t); -end; -procedure ResetTimer(); -begin - wNeedTimeReset := True; + e_SoundUpdate(); end; -procedure PushExitEvent(); +function GLExtensionList (): SSArray; var - ev: TSDL_Event; + s: PChar; + i, j, num: GLint; begin - ev.type_ := SDL_QUITEV; - SDL_PushEvent(@ev); + result := nil; + s := glGetString(GL_EXTENSIONS); + if s <> nil then + begin + num := 0; + i := 0; + j := 0; + while (s[i] <> #0) and (s[i] = ' ') do Inc(i); + while (s[i] <> #0) do + begin + while (s[i] <> #0) and (s[i] <> ' ') do Inc(i); + SetLength(result, num+1); + result[num] := Copy(s, j+1, i-j); + while (s[i] <> #0) and (s[i] = ' ') do Inc(i); + j := i; + Inc(num); + end; + end; end; -procedure ProcessLoading(); +function GLExtensionSupported (ext: AnsiString): Boolean; var - ev: TSDL_Event; - ID: DWORD; + exts: SSArray; + e: AnsiString; begin - FillChar(ev, SizeOf(ev), 0); - //wNeedFree := False; - wLoadingProgress := True; - while SDL_PollEvent(@ev) > 0 do - begin - if (ev.type_ = SDL_QUITEV) then - break; - end; - //wNeedFree := True; - - if (ev.type_ = SDL_QUITEV) or (gExit = EXIT_QUIT) then - begin - wLoadingProgress := False; - exit; - end; - - if not wMinimized then + result := false; + exts := GLExtensionList(); + for e in exts do begin - if g_Texture_Get('INTER', ID) then - e_DrawSize(ID, 0, 0, 0, False, False, gScreenWidth, gScreenHeight) - else - e_Clear(GL_COLOR_BUFFER_BIT, 0, 0, 0); - - DrawLoadingStat(); - SwapBuffers(); - - ReShowCursor(); + //writeln('<', e, '> : [', ext, '] = ', strEquCI1251(e, ext)); + if (strEquCI1251(e, ext)) then begin result := true; exit; end; end; +end; - e_SoundUpdate(); - - if NetMode = NET_SERVER then - g_Net_Host_Update - else - if (NetMode = NET_CLIENT) and (NetState <> NET_STATE_AUTH) then - g_Net_Client_UpdateWhileLoading; - wLoadingProgress := False; +procedure PrintGLSupportedExtensions; +begin + e_LogWritefln('GL Vendor: %s', [glGetString(GL_VENDOR)]); + e_LogWritefln('GL Renderer: %s', [glGetString(GL_RENDERER)]); + e_LogWritefln('GL Version: %s', [glGetString(GL_VERSION)]); + e_LogWritefln('GL Shaders: %s', [glGetString(GL_SHADING_LANGUAGE_VERSION)]); + e_LogWritefln('GL Extensions: %s', [glGetString(GL_EXTENSIONS)]); end; -function ProcessMessage(): Boolean; +function SDLMain (): Integer; var - i, t: Integer; - ev: TSDL_Event; + idx: Integer; + arg: AnsiString; + mdfo: TStream; + {$IFDEF ENABLE_HOLMES} + itmp: Integer; + valres: Word; + {$ENDIF} begin - Result := False; - FillChar(ev, SizeOf(ev), 0); +{$IFDEF HEADLESS} + e_NoGraphics := true; +{$ENDIF} - while SDL_PollEvent(@ev) > 0 do + idx := 1; + while (idx <= ParamCount) do begin - Result := EventHandler(ev); - if ev.type_ = SDL_QUITEV then exit; - end; - - Time := GetTimer(); - Time_Delta := Time - Time_Old; - - flag := False; + arg := ParamStr(idx); + Inc(idx); + if arg = '--opengl-dump-exts' then gwin_dump_extensions := true; + //if arg = '--twinkletwinkle' then gwin_k8_enable_light_experiments := true; + if arg = '--jah' then g_profile_history_size := 100; + if arg = '--no-particles' then gpart_dbg_enabled := false; + if arg = '--no-los' then gmon_dbg_los_enabled := false; + + if arg = '--profile-render' then g_profile_frame_draw := true; + if arg = '--profile-coldet' then g_profile_collision := true; + if arg = '--profile-los' then g_profile_los := true; + + if arg = '--no-part-phys' then gpart_dbg_phys_enabled := false; + if arg = '--no-part-physics' then gpart_dbg_phys_enabled := false; + if arg = '--no-particles-phys' then gpart_dbg_phys_enabled := false; + if arg = '--no-particles-physics' then gpart_dbg_phys_enabled := false; + if arg = '--no-particle-phys' then gpart_dbg_phys_enabled := false; + if arg = '--no-particle-physics' then gpart_dbg_phys_enabled := false; + + if arg = '--debug-input' then g_dbg_input := True; + + {.$IF DEFINED(D2F_DEBUG)} + if arg = '--aimline' then g_dbg_aimline_on := true; + {.$ENDIF} + +{$IFDEF ENABLE_HOLMES} + if arg = '--holmes' then begin g_holmes_enabled := true; g_Game_SetDebugMode(); end; + + if (arg = '--holmes-ui-scale') or (arg = '-holmes-ui-scale') then + begin + if (idx <= ParamCount) then + begin + if not conParseFloat(fuiRenderScale, ParamStr(idx)) then fuiRenderScale := 1.0; + Inc(idx); + end; + end; - if wNeedTimeReset then - begin - Time_Delta := (27777 div 1000); - wNeedTimeReset := False; - end; + if (arg = '--holmes-font') or (arg = '-holmes-font') then + begin + if (idx <= ParamCount) then + begin + itmp := 0; + val(ParamStr(idx), itmp, valres); + {$IFNDEF HEADLESS} + if (valres = 0) and (not g_holmes_imfunctional) then + begin + case itmp of + 8: uiContext.font := 'win8'; + 14: uiContext.font := 'win14'; + 16: uiContext.font := 'win16'; + end; + end; + {$ELSE} + // fuck off, fpc! + itmp := itmp; + valres := valres; + {$ENDIF} + Inc(idx); + end; + end; +{$ENDIF} - t := Time_Delta div (27777 div 1000); - if t > 0 then - begin - flag := True; - for i := 1 to t do + if (arg = '--game-scale') or (arg = '-game-scale') then begin - if NetMode = NET_SERVER then g_Net_Host_Update() - else if NetMode = NET_CLIENT then g_Net_Client_Update(); - Update(); + if (idx <= ParamCount) then + begin + if not conParseFloat(g_dbg_scale, ParamStr(idx)) then g_dbg_scale := 1.0; + Inc(idx); + end; end; - end - else - begin - if NetMode = NET_SERVER then g_Net_Host_Update() - else if NetMode = NET_CLIENT then g_Net_Client_Update(); - end; - if wLoadingQuit then - begin - g_Game_Free(); - g_Game_Quit(); - end; + if (arg = '--write-mapdef') or (arg = '-write-mapdef') then + begin + mdfo := createDiskFile('mapdef.txt'); + mdfo.WriteBuffer(defaultMapDef[1], Length(defaultMapDef)); + mdfo.Free(); + Halt(0); + end; - if gExit = EXIT_QUIT then - begin - Result := True; - Exit; + if (arg = '--pixel-scale') or (arg = '-pixel-scale') then + begin + if (idx <= ParamCount) then + begin + if not conParseFloat(r_pixel_scale, ParamStr(idx)) then r_pixel_scale := 1.0; + Inc(idx); + end; + end; end; -// Âðåìÿ ïðåäûäóùåãî îáíîâëåíèÿ: - if flag then +{$IFNDEF USE_SYSSTUB} + PrintGLSupportedExtensions; + glLegacyNPOT := not (GLExtensionSupported('GL_ARB_texture_non_power_of_two') or GLExtensionSupported('GL_OES_texture_npot')); +{$ELSE} + glLegacyNPOT := False; + glRenderToFBO := False; +{$ENDIF} + if glNPOTOverride and glLegacyNPOT then begin - Time_Old := Time - (Time_Delta mod (27777 div 1000)); - if (not wMinimized) then - begin - Draw(); - SwapBuffers(); - ReShowCursor(); - end; + glLegacyNPOT := true; + e_logWriteln('NPOT texture emulation: FORCED'); end else - Sleep(1); - - e_SoundUpdate(); -end; - -procedure ReDrawWindow; -begin - SwapBuffers(); - ReShowCursor(); -end; - -procedure InitOpenGL(VSync: Boolean); -var - v: Byte; -begin - if VSync then v := 1 else v := 0; - SDL_GL_SetAttribute(SDL_GL_CONTEXT_MAJOR_VERSION, 2); - SDL_GL_SetAttribute(SDL_GL_CONTEXT_MINOR_VERSION, 1); - SDL_GL_SetAttribute(SDL_GL_RED_SIZE, 8); - SDL_GL_SetAttribute(SDL_GL_GREEN_SIZE, 8); - SDL_GL_SetAttribute(SDL_GL_BLUE_SIZE, 8); - SDL_GL_SetAttribute(SDL_GL_DEPTH_SIZE, 16); - SDL_GL_SetAttribute(SDL_GL_DOUBLEBUFFER, 1); - SDL_GL_SetSwapInterval(v); -end; - -function SDLMain(): Integer; -begin - e_WriteLog('Creating GL window', MSG_NOTIFY); - if not CreateGLWindow(PChar(Format('Doom 2D: Forever %s', [GAME_VERSION]))) then begin - Result := 0; - exit; + if (glLegacyNPOT) then e_logWriteln('NPOT texture emulation: enabled') + else e_logWriteln('NPOT texture emulation: disabled'); end; + gwin_dump_extensions := false; - e_WriteLog('Initializing OpenGL', MSG_NOTIFY); - InitOpenGL(gVSync); + Init; + Time_Old := sys_GetTicks(); - {EnumDisplayModes();} + g_Net_InitLowLevel(); - Init(); - Time_Old := GetTimer(); + // Êîìàíäíàÿ ñòðîêà + if (ParamCount > 0) then g_Game_Process_Params(); -// Êîìàíäíàÿ ñòðîêà: - if ParamCount > 0 then - g_Game_Process_Params(); +{$IFNDEF HEADLESS} + // Çàïðîñ ÿçûêà + if (not gGameOn) and gAskLanguage then g_Menu_AskLanguage(); +{$ENDIF} -// Çàïðîñ ÿçûêà: - if (not gGameOn) and gAskLanguage then - g_Menu_AskLanguage(); + e_WriteLog('Entering the main loop', TMsgType.Notify); - e_WriteLog('Entering the main loop', MSG_NOTIFY); + // main loop + while not ProcessMessage() do begin end; - while not ProcessMessage() do - { Main Loop } ; + g_Net_Slist_ShutdownAll(); Release(); - KillGLWindow(); - Result := 0; + g_Net_DeinitLowLevel(); + result := 0; end; + +initialization + conRegVar('d_input', @g_dbg_input, '', '') end.