X-Git-Url: https://deadsoftware.ru/gitweb?a=blobdiff_plain;f=src%2Fshared%2Fxprofiler.pas;h=be2a86a28d68881d128e8ce49d47883bf04db57a;hb=782be84c041a01f0255ce718e2b5757d31e5c0d9;hp=efca52fcafad7736e72f30afe8dce85aa6352398;hpb=c1a1cdafd1d0e3f877a20994b57fdb389373d1d4;p=d2df-sdl.git diff --git a/src/shared/xprofiler.pas b/src/shared/xprofiler.pas index efca52f..be2a86a 100644 --- a/src/shared/xprofiler.pas +++ b/src/shared/xprofiler.pas @@ -2,8 +2,7 @@ * * 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. + * 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 @@ -20,17 +19,24 @@ unit xprofiler; interface -uses - SysUtils, - {$IF DEFINED(LINUX)} +{$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 +44,7 @@ uses {$WARNING You suck!} {$ENDIF} ; +{$ENDIF} // IN_TOOLS {$IF DEFINED(STOPWATCH_IS_HERE)} type @@ -152,6 +159,13 @@ function getTimeMilli (): UInt64; inline; implementation +{$IFNDEF IN_TOOLS} +uses + SDL2; + +type + THPTimeType = Int64; +{$ELSE} {$IF DEFINED(LINUX)} type THPTimeType = TTimeSpec; {$ELSE} @@ -161,13 +175,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 +200,12 @@ begin mFrequency := r; {$ENDIF} end; +{$ENDIF} + (* init sdl timers? *) end; +{$IFDEF IN_TOOLS} function getTimeMicro (): UInt64; inline; var r: THPTimeType; @@ -198,6 +219,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;