summaryrefslogtreecommitdiff
path: root/Timer.cs
blob: 748e7b23e7da31faff4f2b2a06fc4c066484dbbe (plain) (blame)
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
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);
        }


    }
}