X-Git-Url: https://deadsoftware.ru/gitweb?p=d2df-sdl.git;a=blobdiff_plain;f=src%2Fgame%2Fg_window.pas;h=7774c0a34c0c03b2bda5fd5418ece817dc492963;hp=3ea192bd998ede79b04215dec5bb09251afb2ab4;hb=e452d337f0620b50d8d978b534437b2732134d8f;hpb=ff17260e083bdf4461154b916a716cd9b61126b1 diff --git a/src/game/g_window.pas b/src/game/g_window.pas index 3ea192b..7774c0a 100644 --- a/src/game/g_window.pas +++ b/src/game/g_window.pas @@ -44,7 +44,7 @@ uses 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_touch, g_gui, g_system, g_netmaster; const @@ -184,36 +184,42 @@ begin end; function GLExtensionList (): SSArray; - var s: PChar; i, j, num: GLint; +var + s: PChar; + i, j, num: GLint; begin result := nil; s := glGetString(GL_EXTENSIONS); if s <> nil then begin - num := 0; i := 0; j := 0; - while s[i] <> #0 do + 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, i - j); + 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 + Inc(num); + end; + end; end; function GLExtensionSupported (ext: AnsiString): Boolean; - var i, len: GLint; exts: SSArray; +var + exts: SSArray; + e: AnsiString; begin result := false; exts := GLExtensionList(); - if exts <> nil then + for e in exts do begin - i := 0; len := Length(exts); - while (i < len) and (exts[i] <> ext) do Inc(i); - result := i < len - end + //writeln('<', e, '> : [', ext, '] = ', strEquCI1251(e, ext)); + if (strEquCI1251(e, ext)) then begin result := true; exit; end; + end; end; procedure PrintGLSupportedExtensions; @@ -320,20 +326,41 @@ begin mdfo.Free(); Halt(0); end; + + 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; -{$IFDEF USE_SYSSTUB} +{$IFNDEF USE_SYSSTUB} PrintGLSupportedExtensions; - glLegacyNPOT := GLExtensionSupported('GL_ARB_texture_non_power_of_two') or GLExtensionSupported('GL_OES_texture_npot'); + glLegacyNPOT := not (GLExtensionSupported('GL_ARB_texture_non_power_of_two') or GLExtensionSupported('GL_OES_texture_npot')); {$ELSE} glLegacyNPOT := False; + glRenderToFBO := False; {$ENDIF} - e_logWritefln('NPOT textures: %s', [glLegacyNPOT]); + if glNPOTOverride and glLegacyNPOT then + begin + glLegacyNPOT := true; + e_logWriteln('NPOT texture emulation: FORCED'); + end + else + begin + if (glLegacyNPOT) then e_logWriteln('NPOT texture emulation: enabled') + else e_logWriteln('NPOT texture emulation: disabled'); + end; gwin_dump_extensions := false; Init; Time_Old := sys_GetTicks(); + g_Net_InitLowLevel(); + // Êîìàíäíàÿ ñòðîêà if (ParamCount > 0) then g_Game_Process_Params(); @@ -347,7 +374,11 @@ begin // main loop while not ProcessMessage() do begin end; + g_Net_Slist_ShutdownAll(); + Release(); + + g_Net_DeinitLowLevel(); result := 0; end;