diff options
author | GeorgeAbbott <57576261+GeorgeAbbott@users.noreply.github.com> | 2020-09-06 18:09:11 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-09-06 18:09:11 +0100 |
commit | 44c1454eed3a2710bbf087c721cc4bd7c56fe1b4 (patch) | |
tree | 54ff5cf753774be83feae2e15672ed4fa26ad4f1 /Timer.cs |
Add files via upload
Diffstat (limited to 'Timer.cs')
-rw-r--r-- | Timer.cs | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/Timer.cs b/Timer.cs new file mode 100644 index 0000000..748e7b2 --- /dev/null +++ b/Timer.cs @@ -0,0 +1,47 @@ +using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace Class_War
+{
+ class Timer
+ {
+ TimeSpan avgDuration;
+ DateTime t1;
+ DateTime t2;
+ bool isTiming = false;
+ bool firstTiming = true;
+ int numTimings = 0;
+
+ public void StartTime()
+ {
+ t1 = DateTime.Now;
+ isTiming = true;
+ }
+
+ public void EndTime()
+ {
+ t2 = DateTime.Now;
+ isTiming = false;
+ if (firstTiming) firstTiming = false;
+ numTimings++;
+ avgDuration.Add(t2 - t1);
+ }
+
+ public TimeSpan GetLastDuration()
+ {
+ if (!isTiming) return t2 - t1;
+ else throw new InvalidOperationException("Cannot call GetDuration when currently timing");
+ }
+
+ public TimeSpan GetAverageDuration()
+ {
+ if (numTimings == 0) throw new InvalidOperationException("No average duration where no timing has completed yet");
+ return TimeSpan.FromTicks(avgDuration.Ticks / numTimings);
+ }
+
+
+ }
+}
|