DEADSOFTWARE

fixed bug 26 (broken sound triggers); actually, not only sound triggers were broken...
[d2df-sdl.git] / src / game / g_window.pas
index 52363d007e9b541009b4f5f26439203ab2ba8ff3..79fb99fc963b7b005f38f82edc40b81f11eba6ff 100644 (file)
@@ -47,8 +47,9 @@ implementation
 
 uses
 {$IFDEF WINDOWS}Windows,{$ENDIF}
-  SDL2, GL, GLExt, e_graphics, e_log, g_main,
-  g_console, SysUtils, e_input, g_options, g_game,
+  SysUtils, Classes, MAPDEF,
+  SDL2, GL, GLExt, 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, g_holmes, xprofiler, utils;
 
@@ -71,10 +72,12 @@ var
   ticksOverflow: Int64 = -1;
   lastTicks: Uint32 = 0; // to detect overflow
 {$ENDIF}
+{$IF not DEFINED(HEADLESS)}
   curMsButState: Word = 0;
   curKbState: Word = 0;
   curMsX: Integer = 0;
   curMsY: Integer = 0;
+{$ENDIF}
 
 function g_Window_SetDisplay(PreserveGL: Boolean = False): Boolean;
 var
@@ -87,7 +90,7 @@ begin
 
   Result := False;
 
-  e_WriteLog('Setting display mode...', MSG_NOTIFY);
+  e_WriteLog('Setting display mode...', TMsgType.Notify);
 
   wFlags := SDL_WINDOW_OPENGL or SDL_WINDOW_RESIZABLE;
   if gFullscreen then wFlags := wFlags or SDL_WINDOW_FULLSCREEN;
@@ -156,7 +159,7 @@ begin
     pw := mode.w; ph := mode.h
   end;
 
-  e_WriteLog('SDL: Got ' + IntToStr(k) + ' resolutions.', MSG_NOTIFY);
+  e_WriteLog('SDL: Got ' + IntToStr(k) + ' resolutions.', TMsgType.Notify);
 end;
 
 procedure Sleep(ms: LongWord);
@@ -205,6 +208,14 @@ begin
   end;
 end;
 
+procedure resetKMState ();
+begin
+{$IF not DEFINED(HEADLESS)}
+  curMsButState := 0;
+  curKbState := 0;
+{$ENDIF}
+end;
+
 function WindowEventHandler(ev: TSDL_WindowEvent): Boolean;
 var
   wActivate, wDeactivate: Boolean;
@@ -225,8 +236,7 @@ begin
 
     SDL_WINDOWEVENT_MINIMIZED:
     begin
-      curMsButState := 0;
-      curKbState := 0;
+      resetKMState();
       e_UnpressAllKeys();
       if not wMinimized then
       begin
@@ -236,7 +246,7 @@ begin
         if g_debug_WinMsgs then
         begin
           g_Console_Add('Now minimized');
-          e_WriteLog('[DEBUG] WinMsgs: Now minimized', MSG_NOTIFY);
+          e_WriteLog('[DEBUG] WinMsgs: Now minimized', TMsgType.Notify);
         end;
         wDeactivate := True;
       end;
@@ -244,8 +254,7 @@ begin
 
     SDL_WINDOWEVENT_RESIZED:
     begin
-      curMsButState := 0;
-      curKbState := 0;
+      resetKMState();
       gScreenWidth := ev.data1;
       gScreenHeight := ev.data2;
       ChangeWindowSize();
@@ -253,7 +262,7 @@ begin
       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);
+        e_WriteLog('[DEBUG] WinMsgs: Resized to ' + IntToStr(ev.data1) + 'x' + IntToStr(ev.data2), TMsgType.Notify);
       end;
     end;
 
@@ -262,8 +271,7 @@ begin
 
     SDL_WINDOWEVENT_MAXIMIZED:
     begin
-      curMsButState := 0;
-      curKbState := 0;
+      resetKMState();
       if wMinimized then
       begin
         e_ResizeWindow(gScreenWidth, gScreenHeight);
@@ -276,15 +284,14 @@ begin
         if g_debug_WinMsgs then
         begin
           g_Console_Add('Now maximized');
-          e_WriteLog('[DEBUG] WinMsgs: Now maximized', MSG_NOTIFY);
+          e_WriteLog('[DEBUG] WinMsgs: Now maximized', TMsgType.Notify);
         end;
       end;
     end;
 
     SDL_WINDOWEVENT_RESTORED:
     begin
-      curMsButState := 0;
-      curKbState := 0;
+      resetKMState();
       if wMinimized then
       begin
         e_ResizeWindow(gScreenWidth, gScreenHeight);
@@ -296,14 +303,13 @@ begin
       if g_debug_WinMsgs then
       begin
         g_Console_Add('Now restored');
-        e_WriteLog('[DEBUG] WinMsgs: Now restored', MSG_NOTIFY);
+        e_WriteLog('[DEBUG] WinMsgs: Now restored', TMsgType.Notify);
       end;
     end;
 
     SDL_WINDOWEVENT_FOCUS_GAINED:
     begin
-      curMsButState := 0;
-      curKbState := 0;
+      resetKMState();
       wActivate := True;
       //e_WriteLog('window gained focus!', MSG_NOTIFY);
       g_Holmes_WindowFocused();
@@ -311,8 +317,7 @@ begin
 
     SDL_WINDOWEVENT_FOCUS_LOST:
     begin
-      curMsButState := 0;
-      curKbState := 0;
+      resetKMState();
       wDeactivate := True;
       e_UnpressAllKeys();
       //e_WriteLog('window lost focus!', MSG_NOTIFY);
@@ -324,7 +329,7 @@ begin
   begin
     if gWinActive then
     begin
-      e_WriteLog('deactivating window', MSG_NOTIFY);
+      e_WriteLog('deactivating window', TMsgType.Notify);
       e_EnableInput := False;
       e_ClearInputBuffer();
 
@@ -337,7 +342,7 @@ begin
       if g_debug_WinMsgs then
       begin
         g_Console_Add('Now inactive');
-        e_WriteLog('[DEBUG] WinMsgs: Now inactive', MSG_NOTIFY);
+        e_WriteLog('[DEBUG] WinMsgs: Now inactive', TMsgType.Notify);
       end;
 
       gWinActive := False;
@@ -359,7 +364,7 @@ begin
       if g_debug_WinMsgs then
       begin
         g_Console_Add('Now active');
-        e_WriteLog('[DEBUG] WinMsgs: Now active', MSG_NOTIFY);
+        e_WriteLog('[DEBUG] WinMsgs: Now active', TMsgType.Notify);
       end;
 
       gWinActive := True;
@@ -372,8 +377,10 @@ var
   key, keychr: Word;
   uc: UnicodeChar;
   //joy: Integer;
+  {$IF not DEFINED(HEADLESS)}
   msev: THMouseEvent;
   kbev: THKeyEvent;
+  {$ENDIF}
 
   function buildBut (b: Byte): Word;
   begin
@@ -385,6 +392,7 @@ var
     end;
   end;
 
+  {$IF not DEFINED(HEADLESS)}
   procedure updateKBState ();
   var
     kbstate: PUint8;
@@ -395,10 +403,13 @@ var
     if (kbstate[SDL_SCANCODE_LALT] <> 0) or (kbstate[SDL_SCANCODE_RALT] <> 0) then curKbState := curKbState or THKeyEvent.ModAlt;
     if (kbstate[SDL_SCANCODE_LSHIFT] <> 0) or (kbstate[SDL_SCANCODE_RSHIFT] <> 0) then curKbState := curKbState or THKeyEvent.ModShift;
   end;
+  {$ENDIF}
 
 begin
   Result := False;
+  {$IF not DEFINED(HEADLESS)}
   updateKBState();
+  {$ENDIF}
 
   case ev.type_ of
     SDL_WINDOWEVENT:
@@ -422,6 +433,7 @@ begin
     SDL_KEYDOWN, SDL_KEYUP:
       begin
         key := ev.key.keysym.scancode;
+        {$IF not DEFINED(HEADLESS)}
         if (g_holmes_enabled) then
         begin
           if (ev.type_ = SDL_KEYDOWN) then kbev.kind := THKeyEvent.Press else kbev.kind := THKeyEvent.Release;
@@ -429,14 +441,13 @@ begin
           kbev.sym := ev.key.keysym.sym;
           kbev.bstate := curMsButState;
           kbev.kstate := curKbState;
-          {$IF not DEFINED(HEADLESS)}
           if g_Holmes_keyEvent(kbev) then
           begin
             if (ev.type_ <> SDL_KEYDOWN) then e_KeyUpDown(ev.key.keysym.scancode, false);
             exit;
           end;
-          {$ENDIF}
         end;
+        {$ENDIF}
         if (ev.type_ = SDL_KEYDOWN) then KeyPress(key);
         e_KeyUpDown(ev.key.keysym.scancode, (ev.type_ = SDL_KEYDOWN));
       end;
@@ -506,8 +517,9 @@ end;
 
 procedure SwapBuffers();
 begin
-  {$IFDEF HEADLESS}Exit;{$ENDIF}
+  {$IF not DEFINED(HEADLESS)}
   SDL_GL_SwapWindow(h_Wnd);
+  {$ENDIF}
 end;
 
 procedure KillGLWindow();
@@ -529,12 +541,12 @@ begin
   gWinSizeY := gScreenHeight;
 
   wTitle := Title;
-  e_WriteLog('Creating window', MSG_NOTIFY);
+  e_WriteLog('Creating window', TMsgType.Notify);
 
   if not g_Window_SetDisplay() then
   begin
     KillGLWindow();
-    e_WriteLog('Window creation error (resolution not supported?)', MSG_FATALERROR);
+    e_WriteLog('Window creation error (resolution not supported?)', TMsgType.Fatal);
     exit;
   end;
 
@@ -630,11 +642,11 @@ begin
   begin
     if forceUpdate then
     begin
-      prevLoadingUpdateTime := curTimeMilli();
+      prevLoadingUpdateTime := getTimeMilli();
     end
     else
     begin
-      stt := curTimeMilli();
+      stt := getTimeMilli();
       if (stt < prevLoadingUpdateTime) or (stt-prevLoadingUpdateTime >= 400) then
       begin
         prevLoadingUpdateTime := stt;
@@ -796,13 +808,13 @@ begin
       while (exts[i] <> #0) and (exts[i] <> ' ') do Inc(i);
       if i > 255 then
       begin
-        e_WriteLog('FUUUUUUUUUUUUU', MSG_WARNING);
+        e_WriteLog('FUUUUUUUUUUUUU', TMsgType.Warning);
       end
       else
       begin
         Move(exts^, extName[1], i);
         extName[0] := Char(i);
-        e_WriteLog(Format('EXT: %s', [extName]), MSG_NOTIFY);
+        e_WriteLog(Format('EXT: %s', [extName]), TMsgType.Notify);
       end;
     end;
     found := true;
@@ -820,8 +832,11 @@ end;
 function SDLMain(): Integer;
 var
   idx: Integer;
+  {$IF not DEFINED(HEADLESS)}
   ltmp: Integer;
+  {$ENDIF}
   arg: AnsiString;
+  mdfo: TStream;
 begin
 {$IFDEF HEADLESS}
   e_NoGraphics := True;
@@ -849,9 +864,9 @@ begin
     if arg = '--no-particle-phys' then gpart_dbg_phys_enabled := false;
     if arg = '--no-particle-physics' then gpart_dbg_phys_enabled := false;
 
-    {$IF DEFINED(D2F_DEBUG)}
-    if arg = '--aimline' then g_dbg_aimline_on := false;
-    {$ENDIF}
+    {.$IF DEFINED(D2F_DEBUG)}
+    if arg = '--aimline' then g_dbg_aimline_on := true;
+    {.$ENDIF}
 
     if arg = '--holmes' then begin g_holmes_enabled := true; g_Game_SetDebugMode(); end;
     if (arg = '--holmes-ui-scale') or (arg = '-holmes-ui-scale') then
@@ -863,7 +878,6 @@ begin
       end;
     end;
 
-    {$IF DEFINED(D2F_DEBUG)}
     if (arg = '--game-scale') or (arg = '-game-scale') then
     begin
       if (idx <= ParamCount) then
@@ -872,13 +886,20 @@ begin
         Inc(idx);
       end;
     end;
-    {$ENDIF}
+
+    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;
   end;
 
-  e_WriteLog('Initializing OpenGL', MSG_NOTIFY);
+  e_WriteLog('Initializing OpenGL', TMsgType.Notify);
   InitOpenGL(gVSync);
 
-  e_WriteLog('Creating GL window', MSG_NOTIFY);
+  e_WriteLog('Creating GL window', TMsgType.Notify);
   if not CreateGLWindow(PChar(Format('Doom 2D: Forever %s', [GAME_VERSION]))) then
   begin
     Result := 0;
@@ -887,10 +908,16 @@ begin
 
   {EnumDisplayModes();}
 
+  {$IFDEF HEADLESS}
+  gwin_k8_enable_light_experiments := false;
+  gwin_has_stencil := false;
+  glLegacyNPOT := false;
+  gwin_dump_extensions := false;
+  {$ELSE}
   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);
+    e_WriteLog(Format('stencil buffer size: %d', [ltmp]), TMsgType.Warning);
     gwin_has_stencil := (ltmp > 0);
   end
   else
@@ -900,15 +927,16 @@ begin
 
   if not glHasExtension('GL_ARB_texture_non_power_of_two') then
   begin
-    e_WriteLog('Driver DID''T advertised NPOT textures support', MSG_WARNING);
+    e_WriteLog('Driver DID''T advertised NPOT textures support', TMsgType.Warning);
     glLegacyNPOT := true;
   end
   else
   begin
-    e_WriteLog('Driver advertised NPOT textures support', MSG_NOTIFY);
+    e_WriteLog('Driver advertised NPOT textures support', TMsgType.Notify);
     glLegacyNPOT := false;
   end;
   gwin_dump_extensions := false;
+  {$ENDIF}
 
   Init();
   Time_Old := GetTimer();
@@ -921,7 +949,7 @@ begin
   if (not gGameOn) and gAskLanguage then
     g_Menu_AskLanguage();
 
-  e_WriteLog('Entering the main loop', MSG_NOTIFY);
+  e_WriteLog('Entering the main loop', TMsgType.Notify);
 
   while not ProcessMessage() do
     { Main Loop } ;