summaryrefslogtreecommitdiff
path: root/Timer.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Timer.cs')
-rw-r--r--Timer.cs47
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);
+ }
+
+
+ }
+}