Files
eden/src/common/timer.h
T

42 lines
1.0 KiB
C++
Raw Normal View History

2014-12-16 21:38:14 -08:00
// Copyright 2013 Dolphin Emulator Project / 2014 Citra Emulator Project
// Licensed under GPLv2 or any later version
2013-09-04 20:17:46 -04:00
// Refer to the license.txt file included.
#pragma once
2013-09-04 20:17:46 -04:00
#include <chrono>
2013-09-04 20:17:46 -04:00
#include <string>
2016-09-18 09:38:01 +09:00
#include "common/common_types.h"
2013-09-04 20:17:46 -04:00
2016-09-18 09:38:01 +09:00
namespace Common {
class Timer {
2013-09-04 20:17:46 -04:00
public:
2014-04-01 18:20:08 -04:00
Timer();
2013-09-04 20:17:46 -04:00
2014-04-01 18:20:08 -04:00
void Start();
void Stop();
void Update();
2013-09-04 20:17:46 -04:00
2016-09-18 09:38:01 +09:00
// The time difference is always returned in milliseconds, regardless of alternative internal
// representation
std::chrono::milliseconds GetTimeDifference();
2014-04-01 18:20:08 -04:00
void AddTimeDifference();
2013-09-04 20:17:46 -04:00
static std::chrono::seconds GetTimeSinceJan1970();
static std::chrono::seconds GetLocalTimeSinceJan1970();
2014-04-01 18:20:08 -04:00
static double GetDoubleTime();
2013-09-04 20:17:46 -04:00
2014-04-01 18:20:08 -04:00
static std::string GetTimeFormatted();
std::string GetTimeElapsedFormatted() const;
std::chrono::milliseconds GetTimeElapsed();
2013-09-04 20:17:46 -04:00
static std::chrono::milliseconds GetTimeMs();
2013-09-04 20:17:46 -04:00
private:
std::chrono::milliseconds m_LastTime;
std::chrono::milliseconds m_StartTime;
2014-04-01 18:20:08 -04:00
bool m_Running;
2013-09-04 20:17:46 -04:00
};
} // Namespace Common