blob: 7626584acfd2b470bd1620baf7a0c2017fc42956 (
plain)
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
|
#include "Swiften/Network/DummyTimerFactory.h"
#include <algorithm>
#include "Swiften/Base/foreach.h"
#include "Swiften/Network/Timer.h"
namespace Swift {
class DummyTimerFactory::DummyTimer : public Timer {
public:
DummyTimer(int timeout) : timeout(timeout), isRunning(false) {
}
virtual void start() {
isRunning = true;
}
virtual void stop() {
isRunning = false;
}
int timeout;
bool isRunning;
};
DummyTimerFactory::DummyTimerFactory() : currentTime(0) {
}
boost::shared_ptr<Timer> DummyTimerFactory::createTimer(int milliseconds) {
boost::shared_ptr<DummyTimer> timer(new DummyTimer(milliseconds));
timers.push_back(timer);
return timer;
}
static bool hasZeroTimeout(boost::shared_ptr<DummyTimerFactory::DummyTimer> timer) {
return timer->timeout == 0;
}
void DummyTimerFactory::setTime(int time) {
assert(time > currentTime);
int increment = time - currentTime;
std::vector< boost::shared_ptr<DummyTimer> > notifyTimers(timers.begin(), timers.end());
foreach(boost::shared_ptr<DummyTimer> timer, notifyTimers) {
if (increment >= timer->timeout) {
if (timer->isRunning) {
timer->onTick();
}
timer->timeout = 0;
}
else {
timer->timeout -= increment;
}
}
timers.erase(std::remove_if(timers.begin(), timers.end(), hasZeroTimeout), timers.end());
currentTime = time;
}
}
|