DEADSOFTWARE

engine: restored non-portable timers in "xprofiler.pas" (only for "-dIN_TOOLS" mode)
[d2df-sdl.git] / src / shared / xprofiler.pas
index 35b70df8263c385d53324afd0ed0f9cc9b9778e5..71cd14877374e403727d5ba4c181be54ad05d089 100644 (file)
@@ -20,17 +20,24 @@ unit xprofiler;
 
 interface
 
-uses
-  SysUtils,
+{$IFNDEF IN_TOOLS}
+  uses
+    SysUtils;
+
+  {$DEFINE STOPWATCH_IS_HERE}
+
+{$ELSE}
+  uses
+    SysUtils
   {$IF DEFINED(LINUX) OR DEFINED(ANDROID)}
     {$DEFINE STOPWATCH_IS_HERE}
-    unixtype, linux
+    unixtype, linux
   {$ELSEIF DEFINED(WINDOWS)}
     {$DEFINE STOPWATCH_IS_HERE}
-    Windows
+    Windows
   {$ELSEIF DEFINED(HAIKU)}
     {$DEFINE STOPWATCH_IS_HERE}
-    unixtype
+    unixtype
   {$ELSE}
     {$IFDEF STOPWATCH_IS_HERE}
       {$UNDEF STOPWATCH_IS_HERE}
@@ -38,6 +45,7 @@ uses
     {$WARNING You suck!}
   {$ENDIF}
   ;
+{$ENDIF} // IN_TOOLS
 
 {$IF DEFINED(STOPWATCH_IS_HERE)}
 type
@@ -152,6 +160,13 @@ function getTimeMilli (): UInt64; inline;
 
 implementation
 
+{$IFNDEF IN_TOOLS}
+uses
+  SDL2;
+
+type
+  THPTimeType = Int64;
+{$ELSE}
 {$IF DEFINED(LINUX)}
 type THPTimeType = TTimeSpec;
 {$ELSE}
@@ -161,13 +176,17 @@ type THPTimeType = Int64;
 var
   mFrequency: Int64 = 0;
   mHasHPTimer: Boolean = false;
+{$ENDIF}
 
 
 // ////////////////////////////////////////////////////////////////////////// //
 procedure initTimerIntr ();
+{$IFDEF IN_TOOLS}
 var
   r: THPTimeType;
+{$ENDIF}
 begin
+{$IFDEF IN_TOOLS}
   if (mFrequency = 0) then
   begin
 {$IF DEFINED(LINUX)}
@@ -182,9 +201,12 @@ begin
     mFrequency := r;
 {$ENDIF}
   end;
+{$ENDIF}
+  (* init sdl timers? *)
 end;
 
 
+{$IFDEF IN_TOOLS}
 function getTimeMicro (): UInt64; inline;
 var
   r: THPTimeType;
@@ -198,6 +220,12 @@ begin
   result := UInt64(r)*1000000 div mFrequency;
   {$ENDIF}
 end;
+{$ELSE}
+function getTimeMicro (): UInt64; inline;
+begin
+  Result := SDL_GetPerformanceCounter() * 1000000 div SDL_GetPerformanceFrequency()
+end;
+{$ENDIF}
 
 
 function getTimeMilli (): UInt64; inline;