forked from projectM-visualizer/projectm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTimeKeeper.hpp
100 lines (65 loc) · 1.81 KB
/
TimeKeeper.hpp
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
#pragma once
#include <chrono>
class TimeKeeper
{
public:
TimeKeeper(double presetDuration, double smoothDuration, double hardcutDuration, double easterEgg);
void UpdateTimers();
void StartPreset();
void StartSmoothing();
void EndSmoothing();
bool CanHardCut();
double SmoothRatio();
bool IsSmoothing();
double GetRunningTime();
double PresetProgressA();
double PresetProgressB();
int PresetFrameA();
int PresetFrameB();
int PresetTimeA();
int PresetTimeB();
double sampledPresetDuration();
inline void ChangeHardCutDuration(int seconds)
{
m_hardCutDuration = seconds;
}
inline void ChangeHardCutDuration(double seconds)
{
m_hardCutDuration = seconds;
}
inline void ChangeSoftCutDuration(int seconds)
{
m_softCutDuration = seconds;
}
inline void ChangeSoftCutDuration(double seconds)
{
m_softCutDuration = seconds;
}
inline void ChangePresetDuration(int seconds)
{
m_presetDuration = seconds;
}
inline void ChangePresetDuration(double seconds)
{
m_presetDuration = seconds;
}
inline void ChangeEasterEgg(float value)
{
m_easterEgg = value;
}
private:
/* The first ticks value of the application */
std::chrono::high_resolution_clock::time_point m_startTime{ std::chrono::high_resolution_clock::now() };
double m_easterEgg{ 0.0 };
double m_presetDuration{ 0.0 };
double m_presetDurationA{ 0.0 };
double m_presetDurationB{ 0.0 };
double m_softCutDuration{ 0.0 };
double m_hardCutDuration{ 0.0 };
double m_currentTime{ 0.0 };
double m_presetTimeA{ 0.0 };
double m_presetTimeB{ 0.0 };
int m_presetFrameA{ 0 };
int m_presetFrameB{ 0 };
bool m_isSmoothing{ false };
};