2013-04-18 05:09:55 +02:00
|
|
|
// Copyright 2013 Dolphin Emulator Project
|
|
|
|
// Licensed under GPLv2
|
|
|
|
// Refer to the license.txt file included.
|
2008-12-08 05:46:09 +01:00
|
|
|
|
2014-02-10 19:54:46 +01:00
|
|
|
#pragma once
|
2008-12-08 05:46:09 +01:00
|
|
|
|
2009-01-15 12:46:09 +01:00
|
|
|
#include <string>
|
2014-02-17 11:18:15 +01:00
|
|
|
#include "Common/CommonTypes.h"
|
2010-01-21 20:55:01 +01:00
|
|
|
|
2008-12-08 05:46:09 +01:00
|
|
|
namespace Common
|
|
|
|
{
|
|
|
|
class Timer
|
|
|
|
{
|
2009-02-22 13:43:25 +01: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 21:01:41 +01:00
|
|
|
u64 GetTimeDifference();
|
2009-02-22 13:43:25 +01:00
|
|
|
void AddTimeDifference();
|
|
|
|
|
|
|
|
static void IncreaseResolution();
|
|
|
|
static void RestoreResolution();
|
|
|
|
static u64 GetTimeSinceJan1970();
|
|
|
|
static u64 GetLocalTimeSinceJan1970();
|
2009-08-25 08:34:58 +02:00
|
|
|
static double GetDoubleTime();
|
2009-02-22 13:43:25 +01:00
|
|
|
|
|
|
|
static std::string GetTimeFormatted();
|
|
|
|
std::string GetTimeElapsedFormatted() const;
|
|
|
|
u64 GetTimeElapsed();
|
|
|
|
|
2010-01-21 20:55:01 +01:00
|
|
|
static u32 GetTimeMs();
|
|
|
|
|
|
|
|
private:
|
2009-02-22 13:43:25 +01:00
|
|
|
u64 m_LastTime;
|
|
|
|
u64 m_StartTime;
|
|
|
|
bool m_Running;
|
2008-12-08 05:46:09 +01:00
|
|
|
};
|
2009-02-22 13:43:25 +01:00
|
|
|
|
2009-03-28 09:57:34 +01:00
|
|
|
} // Namespace Common
|