Hyprland/src/helpers/Timer.cpp

21 lines
571 B
C++
Raw Normal View History

2022-06-24 23:27:02 +02:00
#include "Timer.hpp"
void CTimer::reset() {
m_tpLastReset = std::chrono::steady_clock::now();
2022-06-24 23:27:02 +02:00
}
std::chrono::steady_clock::duration CTimer::getDuration() {
return std::chrono::steady_clock::now() - m_tpLastReset;
2022-06-24 23:27:02 +02:00
}
int CTimer::getMillis() {
return std::chrono::duration_cast<std::chrono::milliseconds>(getDuration()).count();
}
float CTimer::getSeconds() {
return std::chrono::duration_cast<std::chrono::milliseconds>(getDuration()).count() / 1000.f;
2023-08-05 23:29:33 +02:00
}
const std::chrono::steady_clock::time_point& CTimer::chrono() const {
2023-08-05 23:29:33 +02:00
return m_tpLastReset;
2022-06-24 23:27:02 +02:00
}