-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTimer.cpp
133 lines (119 loc) · 2.42 KB
/
Timer.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
#include "precompiled.h"
#pragma hdrstop
double idTimer::base = -1.0;
/*
=================
idTimer::InitBaseClockTicks
=================
*/
void idTimer::InitBaseClockTicks( void ) const {
idTimer timer;
double ct, b;
int i;
base = 0.0;
b = -1.0;
for ( i = 0; i < 1000; i++ ) {
timer.Clear();
timer.Start();
timer.Stop();
ct = timer.ClockTicks();
if ( b < 0.0 || ct < b ) {
b = ct;
}
}
base = b;
}
/*
=================
idTimerReport::idTimerReport
=================
*/
idTimerReport::idTimerReport() {
}
/*
=================
idTimerReport::SetReportName
=================
*/
void idTimerReport::SetReportName( const char *name ) {
reportName = ( name ) ? name : "Timer Report";
}
/*
=================
idTimerReport::~idTimerReport
=================
*/
idTimerReport::~idTimerReport() {
Clear();
}
/*
=================
idTimerReport::AddReport
=================
*/
int idTimerReport::AddReport( const char *name ) {
if ( name && *name ) {
names.Append( name );
return timers.Append( new idTimer() );
}
return -1;
}
/*
=================
idTimerReport::Clear
=================
*/
void idTimerReport::Clear() {
timers.DeleteContents( true );
names.Clear();
reportName.Clear();
}
/*
=================
idTimerReport::Reset
=================
*/
void idTimerReport::Reset() {
assert ( timers.Num() == names.Num() );
for ( int i = 0; i < timers.Num(); i++ ) {
timers[i]->Clear();
}
}
/*
=================
idTimerReport::AddTime
=================
*/
void idTimerReport::AddTime( const char *name, idTimer *time ) {
assert ( timers.Num() == names.Num() );
int i;
for ( i = 0; i < names.Num(); i++ ) {
if ( names[i].Icmp( name ) == 0 ) {
*timers[i] += *time;
break;
}
}
if ( i == names.Num() ) {
int index = AddReport( name );
if ( index >= 0 ) {
timers[index]->Clear();
*timers[index] += *time;
}
}
}
/*
=================
idTimerReport::PrintReport
=================
*/
void idTimerReport::PrintReport() {
assert( timers.Num() == names.Num() );
idLib::common->Printf( "Timing Report for %s\n", reportName.c_str() );
idLib::common->Printf( "-------------------------------\n" );
float total = 0.0f;
for ( int i = 0; i < names.Num(); i++ ) {
idLib::common->Printf( "%s consumed %5.2f seconds\n", names[i].c_str(), timers[i]->Milliseconds() * 0.001f );
total += timers[i]->Milliseconds();
}
idLib::common->Printf( "Total time for report %s was %5.2f\n\n", reportName.c_str(), total * 0.001f );
}