2015-05-23 22:55:12 -06:00
|
|
|
// Copyright 2012 Dolphin Emulator Project
|
2015-05-17 17:08:10 -06:00
|
|
|
// Licensed under GPLv2+
|
2013-04-17 21:09:55 -06:00
|
|
|
// Refer to the license.txt file included.
|
2012-10-03 21:41:02 -06:00
|
|
|
|
2014-07-02 18:19:08 -06:00
|
|
|
#include <fstream>
|
2017-06-30 01:25:32 -06:00
|
|
|
#include <iomanip>
|
2014-07-02 18:19:08 -06:00
|
|
|
|
2016-01-17 14:54:31 -07:00
|
|
|
#include "Common/CommonTypes.h"
|
2014-02-17 03:18:15 -07:00
|
|
|
#include "Common/FileUtil.h"
|
|
|
|
#include "Common/Timer.h"
|
|
|
|
#include "VideoCommon/FPSCounter.h"
|
|
|
|
#include "VideoCommon/VideoConfig.h"
|
2012-10-03 21:41:02 -06:00
|
|
|
|
2017-06-30 01:25:32 -06:00
|
|
|
static constexpr u64 FPS_REFRESH_INTERVAL = 250000;
|
2012-10-03 21:41:02 -06:00
|
|
|
|
2014-07-13 05:04:25 -06:00
|
|
|
FPSCounter::FPSCounter()
|
2012-10-03 21:41:02 -06:00
|
|
|
{
|
2017-06-30 01:25:32 -06:00
|
|
|
m_last_time = Common::Timer::GetTimeUs();
|
2012-10-03 21:41:02 -06:00
|
|
|
}
|
|
|
|
|
2014-07-13 05:04:25 -06:00
|
|
|
void FPSCounter::LogRenderTimeToFile(u64 val)
|
2012-10-03 21:41:02 -06:00
|
|
|
{
|
2016-06-24 02:43:46 -06:00
|
|
|
if (!m_bench_file.is_open())
|
2017-12-05 13:23:35 -07:00
|
|
|
{
|
|
|
|
File::OpenFStream(m_bench_file, File::GetUserPath(D_LOGS_IDX) + "render_time.txt",
|
|
|
|
std::ios_base::out);
|
|
|
|
}
|
2012-10-03 21:41:02 -06:00
|
|
|
|
2017-06-30 01:25:32 -06:00
|
|
|
m_bench_file << std::fixed << std::setprecision(8) << (val / 1000.0) << std::endl;
|
2012-10-03 21:41:02 -06:00
|
|
|
}
|
|
|
|
|
2015-09-29 07:57:54 -06:00
|
|
|
void FPSCounter::Update()
|
2012-10-03 21:41:02 -06:00
|
|
|
{
|
2017-06-30 01:25:32 -06:00
|
|
|
u64 time = Common::Timer::GetTimeUs();
|
|
|
|
u64 diff = time - m_last_time;
|
2016-06-24 02:43:46 -06:00
|
|
|
if (g_ActiveConfig.bLogRenderTimeToFile)
|
2017-06-30 01:25:32 -06:00
|
|
|
LogRenderTimeToFile(diff);
|
|
|
|
|
|
|
|
m_frame_counter++;
|
|
|
|
m_time_since_update += diff;
|
|
|
|
m_last_time = time;
|
|
|
|
|
|
|
|
if (m_time_since_update >= FPS_REFRESH_INTERVAL)
|
2016-06-24 02:43:46 -06:00
|
|
|
{
|
2017-06-30 01:25:32 -06:00
|
|
|
m_fps = m_frame_counter / (m_time_since_update / 1000000.0);
|
|
|
|
m_frame_counter = 0;
|
|
|
|
m_time_since_update = 0;
|
2016-06-24 02:43:46 -06:00
|
|
|
}
|
2014-07-02 18:19:08 -06:00
|
|
|
}
|