-
Notifications
You must be signed in to change notification settings - Fork 33
/
Chrono.cpp
135 lines (116 loc) · 3.15 KB
/
Chrono.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
/*
* Chronometer class
* Chronometer/stopwatch class that counts the time passed since started.
*
* (c) 2015 Sofian Audry :: info(@)sofianaudry(.)com
* (c) Thomas O Fredericks :: tof(@)t-o-f(.)info
* (c) Rob Tillaart
*
* Based on code by Sofian Audry:
* https://github.com/sofian/libinteract/blob/master/trunk/arduino/SuperTimer.h
* http://accrochages.drone.ws/node/90
*
* Rob Tillaart StopWatch library:
* http://playground.arduino.cc/Code/StopWatchClass
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#if defined(ARDUINO) && ARDUINO >= 100
#include "Arduino.h"
#else
#include "WProgram.h"
#endif
#include "Chrono.h"
Chrono::Chrono(Resolution resolution, bool startNow) {
// Assign appropriate time function.
switch(resolution) {
case SECONDS:
_getTime = seconds;
break;
case MICROS:
_getTime = micros;
break;
case MILLIS:
default:
_getTime = millis;
break;
}
_init( (resolution == SECONDS ? seconds : (resolution == MICROS ? micros : millis) ), startNow);
}
Chrono::Chrono(bool startNow) {
_init(millis, startNow);
}
Chrono::Chrono(Chrono::chrono_t (*getTime_)(void), bool startNow) : _getTime(getTime_) {
_init(getTime_, startNow);
}
void Chrono::start(Chrono::chrono_t offset) {
restart(offset);
}
void Chrono::restart(Chrono::chrono_t offset) {
_startTime = _getTime();
_offset = offset;
_isRunning = true;
}
void Chrono::stop() {
if (_isRunning) { // can only stop if was running
_offset = elapsed(); // save currently elapsed time
_isRunning = false;
}
}
void Chrono::resume() {
if (!_isRunning) { // can only resume if was stopped
_startTime = _getTime();
_isRunning = true;
}
}
void Chrono::add(Chrono::chrono_t t) {
_offset += t;
}
bool Chrono::isRunning() const {
return (_isRunning);
}
void Chrono::delay(Chrono::chrono_t time) {
time += elapsed();
while (!hasPassed(time));
}
Chrono::chrono_t Chrono::elapsed() const {
return _offset + (_isRunning ? (_getTime() - _startTime) : 0);
}
bool Chrono::hasPassed(Chrono::chrono_t timeout) const
{
return (elapsed() >= timeout);
}
bool Chrono::hasPassed(Chrono::chrono_t timeout, bool restartIfPassed) {
if (hasPassed(timeout)) {
if (restartIfPassed)
restart();
return true;
}
else {
return false;
}
}
Chrono::chrono_t Chrono::seconds() {
return (millis()/1000);
}
void Chrono::_init(chrono_t (*getTime_)(void), bool startNow) {
_getTime = getTime_;
// Start.
if (startNow)
restart();
else {
_startTime = _offset = 0;
_isRunning = false;
}
}