2015-05-24 04:55:12 +00:00
|
|
|
// Copyright 2008 Dolphin Emulator Project
|
2021-07-05 01:22:19 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
2008-12-08 04:46:09 +00:00
|
|
|
|
2014-02-10 18:54:46 +00:00
|
|
|
#pragma once
|
2008-12-08 04:46:09 +00:00
|
|
|
|
2009-01-15 11:46:09 +00:00
|
|
|
#include <string>
|
2014-02-17 10:18:15 +00:00
|
|
|
#include "Common/CommonTypes.h"
|
2010-01-21 19:55:01 +00:00
|
|
|
|
2008-07-12 17:40:22 +00:00
|
|
|
namespace Common
|
|
|
|
{
|
|
|
|
class Timer
|
|
|
|
{
|
2009-02-22 12:43:25 +00:00
|
|
|
public:
|
|
|
|
Timer();
|
|
|
|
|
|
|
|
void Start();
|
|
|
|
void Stop();
|
|
|
|
void Update();
|
|
|
|
|
|
|
|
// The time difference is always returned in milliseconds, regardless of alternative internal
|
|
|
|
// representation
|
2010-01-07 20:01:41 +00:00
|
|
|
u64 GetTimeDifference();
|
2009-02-22 12:43:25 +00:00
|
|
|
void AddTimeDifference();
|
|
|
|
|
2020-07-01 19:29:30 +00:00
|
|
|
bool IsRunning() const { return m_Running; }
|
|
|
|
|
2009-02-22 12:43:25 +00:00
|
|
|
static void IncreaseResolution();
|
|
|
|
static void RestoreResolution();
|
|
|
|
static u64 GetTimeSinceJan1970();
|
|
|
|
static u64 GetLocalTimeSinceJan1970();
|
2015-07-11 23:49:12 +00:00
|
|
|
// Returns a timestamp with decimals for precise time comparisons
|
2009-08-25 06:34:58 +00:00
|
|
|
static double GetDoubleTime();
|
2009-02-22 12:43:25 +00:00
|
|
|
|
|
|
|
static std::string GetTimeFormatted();
|
2015-07-11 23:49:12 +00:00
|
|
|
// Formats a timestamp from GetDoubleTime() into a date and time string
|
|
|
|
static std::string GetDateTimeFormatted(double time);
|
2009-02-22 12:43:25 +00:00
|
|
|
std::string GetTimeElapsedFormatted() const;
|
|
|
|
u64 GetTimeElapsed();
|
|
|
|
|
2010-01-21 19:55:01 +00:00
|
|
|
static u32 GetTimeMs();
|
2014-11-19 18:57:12 +00:00
|
|
|
static u64 GetTimeUs();
|
2010-01-21 19:55:01 +00:00
|
|
|
|
2015-07-11 23:49:12 +00:00
|
|
|
// Arbitrarily chosen value (38 years) that is subtracted in GetDoubleTime()
|
|
|
|
// to increase sub-second precision of the resulting double timestamp
|
2020-07-12 17:36:58 +00:00
|
|
|
static constexpr int DOUBLE_TIME_OFFSET = (38 * 365 * 24 * 60 * 60);
|
2015-07-11 23:49:12 +00:00
|
|
|
|
2010-01-21 19:55:01 +00:00
|
|
|
private:
|
2009-02-22 12:43:25 +00:00
|
|
|
u64 m_LastTime;
|
|
|
|
u64 m_StartTime;
|
|
|
|
bool m_Running;
|
2008-07-12 17:40:22 +00:00
|
|
|
};
|
2009-02-22 12:43:25 +00:00
|
|
|
|
2009-03-28 08:57:34 +00:00
|
|
|
} // Namespace Common
|