diag tickTime: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (Text replacement - "[[Category:Scripting_Commands_Take_On_Helicopters" to "[[Category:Scripting Commands Take On Helicopters")
m (Text replacement - "(\|[pr][0-9]+ *= *[^- ]*) *- *T([a-z ])" to "$1 - t$2")
 
(47 intermediate revisions by 4 users not shown)
Line 1: Line 1:
{{DISPLAYTITLE:diag_tickTime}}
{{RV|type=command
{{Command|Comments=
____________________________________________________________________________________________


| arma2 |Game name=
|game1= arma2
|version1= 1.00


|1.00|Game version=
|game2= arma2oa
____________________________________________________________________________________________
|version2= 1.50


| Real time in seconds spent from the start of the game. On Windows the command uses [https://docs.microsoft.com/en-us/windows/win32/api/timeapi/nf-timeapi-timegettime timeGetTime]. |DESCRIPTION=
|game3= tkoh
____________________________________________________________________________________________
|version3= 1.00


| '''diag_tickTime''' |SYNTAX=
|game4= arma3
|version4= 0.50


|p1= |PARAMETER1=  
|gr1= Diagnostic


|p2= |PARAMETER2=  
|gr2= Time


|p3= |PARAMETER3=
|descr= Real time in seconds spent from the start of the game. On Windows the command uses {{Link|https://docs.microsoft.com/en-us/windows/win32/api/timeapi/nf-timeapi-timegettime|timeGetTime}}.


| [[Number]] |RETURNVALUE=
|s1= [[diag_tickTime]]  


|r1= [[Number]] - time in seconds from game start


|x1= <code>_start = [[diag_tickTime]];
|x1= <sqf>// Measure execution time of a script
//code
_start = diag_tickTime;
_stop = [[diag_tickTime]];
// code
[[diag_log]] [[format]] ["%1",_stop - _start];</code>|EXAMPLE1=
_stop = diag_tickTime;
diag_log format ["%1",_stop - _start];</sqf>


____________________________________________________________________________________________
|seealso= [[diag_fps]] [[diag_fpsMin]] [[diag_frameNo]] [[diag_log]] [[diag_deltaTime]] [[time]] [[systemTime]] [[systemTimeUTC]]
 
| [[diag_fps]], [[diag_fpsMin]], [[diag_frameNo]], [[diag_log]], [[diag_deltaTime]], [[time]] |SEEALSO=
 
|  |MPBEHAVIOUR=
____________________________________________________________________________________________
}}
}}


<h3 style='display:none'>Notes</h3>
<dl class="command_description">
<dl class='command_description'>
<!-- Note Section BEGIN -->
 
<dd class="notedate">Posted on 8 Sept, 2010
<dt class="note">[[User:Crowe|Crowe]]<dd class="note">
In Arma 2 Operation Arrowhead 1.54.0.72888 this returns the time in seconds since the game was started.


<dd class="notedate">Posted on 25 Jan, 2014
<dt></dt>
<dt class="note">[[User:Killzone_Kid|Killzone_Kid]]<dd class="note">
<dd class="notedate">Posted on 25 Jan, 2014</dd>
<dt class="note">[[User:Killzone_Kid|Killzone_Kid]]</dt>
<dd class="note">
This command will return time since last client restart as float. However because of [[Number]] format used in Arma, the more time has past since restart the less precise the returned value will be.
This command will return time since last client restart as float. However because of [[Number]] format used in Arma, the more time has past since restart the less precise the returned value will be.
<!-- Note Section END -->
</dl>
</dl>


<h3 style='display:none'>Bottom Section</h3>
{{Note
 
|user= DreadedEntity
[[Category:Scripting Commands Arma 2|{{uc:{{PAGENAME}}}}]]
|timestamp= 20220413232029
[[Category:Scripting Commands Arma 3|{{uc:{{PAGENAME}}}}]]
|text= This command keeps incrementing if the player has paused the game, even in singleplayer. If time spent paused should not be considered, use [[time]]
[[Category:Scripting Commands Take On Helicopters|{{uc:{{PAGENAME}}}}]]
}}
[[Category:Scripting Commands|{{uc:{{PAGENAME}}}}]]

Latest revision as of 16:50, 8 November 2023

Hover & click on the images for description

Description

Description:
Real time in seconds spent from the start of the game. On Windows the command uses timeGetTime.
Groups:
DiagnosticTime

Syntax

Syntax:
diag_tickTime
Return Value:
Number - time in seconds from game start

Examples

Example 1:
// Measure execution time of a script _start = diag_tickTime; // code _stop = diag_tickTime; diag_log format ["%1",_stop - _start];

Additional Information

See also:
diag_fps diag_fpsMin diag_frameNo diag_log diag_deltaTime time systemTime systemTimeUTC

Notes

Report bugs on the Feedback Tracker and/or discuss them on the Arma Discord or on the Forums.
Only post proven facts here! Add Note
Posted on 25 Jan, 2014
Killzone_Kid
This command will return time since last client restart as float. However because of Number format used in Arma, the more time has past since restart the less precise the returned value will be.
DreadedEntity - c
Posted on Apr 13, 2022 - 23:20 (UTC)
This command keeps incrementing if the player has paused the game, even in singleplayer. If time spent paused should not be considered, use time