2012-12-19 09:30:18 +00:00
|
|
|
/****************************************************************************
|
|
|
|
* *
|
|
|
|
* Project 64 - A Nintendo 64 emulator. *
|
|
|
|
* http://www.pj64-emu.com/ *
|
|
|
|
* Copyright (C) 2012 Project64. All rights reserved. *
|
|
|
|
* *
|
|
|
|
* License: *
|
|
|
|
* GNU/GPLv2 http://www.gnu.org/licenses/gpl-2.0.html *
|
|
|
|
* *
|
|
|
|
****************************************************************************/
|
2010-06-07 02:23:58 +00:00
|
|
|
#include "stdafx.h"
|
2008-09-18 03:15:49 +00:00
|
|
|
|
|
|
|
CFramePerSecond::CFramePerSecond (CNotification * Notification):
|
2012-11-17 00:58:31 +00:00
|
|
|
g_Notify(Notification)
|
2008-09-18 03:15:49 +00:00
|
|
|
{
|
2012-11-17 01:02:04 +00:00
|
|
|
m_iFrameRateType = g_Settings->LoadDword(UserInterface_FrameDisplayType);
|
|
|
|
m_ScreenHertz = g_Settings->LoadDword(GameRunning_ScreenHertz);
|
|
|
|
g_Settings->RegisterChangeCB(UserInterface_FrameDisplayType,this,(CSettings::SettingChangedFunc)FrameRateTypeChanged);
|
|
|
|
g_Settings->RegisterChangeCB(GameRunning_ScreenHertz,this,(CSettings::SettingChangedFunc)ScreenHertzChanged);
|
2008-09-18 03:15:49 +00:00
|
|
|
|
|
|
|
if (m_ScreenHertz == 0)
|
|
|
|
{
|
|
|
|
m_ScreenHertz = 60;
|
|
|
|
}
|
|
|
|
|
|
|
|
LARGE_INTEGER Freq;
|
|
|
|
QueryPerformanceFrequency(&Freq);
|
|
|
|
Frequency = Freq.QuadPart;
|
|
|
|
Reset(true);
|
|
|
|
}
|
|
|
|
|
|
|
|
CFramePerSecond::~CFramePerSecond()
|
|
|
|
{
|
2012-11-17 01:02:04 +00:00
|
|
|
g_Settings->UnregisterChangeCB(UserInterface_FrameDisplayType,this,(CSettings::SettingChangedFunc)FrameRateTypeChanged);
|
|
|
|
g_Settings->UnregisterChangeCB(GameRunning_ScreenHertz,this,(CSettings::SettingChangedFunc)ScreenHertzChanged);
|
2008-09-18 03:15:49 +00:00
|
|
|
}
|
|
|
|
|
2015-03-04 09:36:08 +00:00
|
|
|
void CFramePerSecond::Reset (bool ClearDisplay)
|
|
|
|
{
|
2008-09-18 03:15:49 +00:00
|
|
|
CurrentFrame = 0;
|
|
|
|
LastFrame = 0;
|
|
|
|
|
2015-03-04 09:36:08 +00:00
|
|
|
for (int count = 0; count < NoOfFrames; count ++)
|
|
|
|
{
|
2008-09-18 03:15:49 +00:00
|
|
|
Frames[count] = 0;
|
|
|
|
}
|
|
|
|
if (ClearDisplay)
|
|
|
|
{
|
2015-03-04 09:36:08 +00:00
|
|
|
g_Notify->DisplayMessage2(L"");
|
2008-09-18 03:15:49 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (m_iFrameRateType == FR_VIs)
|
|
|
|
{
|
|
|
|
DisplayViCounter(0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void CFramePerSecond::UpdateViCounter ( void )
|
|
|
|
{
|
|
|
|
if (m_iFrameRateType != FR_VIs && m_iFrameRateType != FR_PERCENT)
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if ((CurrentFrame & 7) == 0) {
|
|
|
|
LARGE_INTEGER Time;
|
|
|
|
QueryPerformanceCounter(&Time);
|
|
|
|
Frames[(CurrentFrame >> 3) % NoOfFrames] = Time.QuadPart - LastFrame;
|
|
|
|
LastFrame = Time.QuadPart;
|
|
|
|
DisplayViCounter(0);
|
|
|
|
}
|
|
|
|
CurrentFrame += 1;
|
|
|
|
}
|
|
|
|
|
2015-03-04 09:36:08 +00:00
|
|
|
void CFramePerSecond::DisplayViCounter(DWORD FrameRate)
|
|
|
|
{
|
2008-09-18 03:15:49 +00:00
|
|
|
if (m_iFrameRateType == FR_VIs)
|
|
|
|
{
|
2015-03-04 09:36:08 +00:00
|
|
|
if (FrameRate != 0)
|
|
|
|
{
|
|
|
|
g_Notify->DisplayMessage2(L"VI/s: %d.00", FrameRate);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (CurrentFrame > (NoOfFrames << 3))
|
|
|
|
{
|
2008-09-18 03:15:49 +00:00
|
|
|
__int64 Total;
|
|
|
|
|
|
|
|
Total = 0;
|
2015-03-04 09:36:08 +00:00
|
|
|
for (int count = 0; count < NoOfFrames; count ++)
|
|
|
|
{
|
2008-09-18 03:15:49 +00:00
|
|
|
Total += Frames[count];
|
|
|
|
}
|
2015-03-04 09:36:08 +00:00
|
|
|
g_Notify->DisplayMessage2(L"VI/s: %.2f", Frequency/ ((double)Total / (NoOfFrames << 3)));
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
g_Notify->DisplayMessage2(L"VI/s: -.--");
|
2008-09-18 03:15:49 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (m_iFrameRateType == FR_PERCENT)
|
|
|
|
{
|
|
|
|
float Percent;
|
2015-03-04 09:36:08 +00:00
|
|
|
if (FrameRate != 0)
|
|
|
|
{
|
2008-09-18 03:15:49 +00:00
|
|
|
Percent = ((float)FrameRate) / m_ScreenHertz;
|
2015-03-04 09:36:08 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (CurrentFrame > (NoOfFrames << 3))
|
|
|
|
{
|
2008-09-18 03:15:49 +00:00
|
|
|
__int64 Total;
|
|
|
|
|
|
|
|
Total = 0;
|
2015-03-04 09:36:08 +00:00
|
|
|
for (int count = 0; count < NoOfFrames; count ++)
|
|
|
|
{
|
2008-09-18 03:15:49 +00:00
|
|
|
Total += Frames[count];
|
|
|
|
}
|
|
|
|
Percent = ((float)(Frequency/ ((double)Total / (NoOfFrames << 3)))) / m_ScreenHertz;
|
2015-03-04 09:36:08 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
g_Notify->DisplayMessage2(L"");
|
2008-09-18 03:15:49 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
2015-03-04 09:36:08 +00:00
|
|
|
g_Notify->DisplayMessage2(L"%.1f %%",Percent * 100);
|
2008-09-18 03:15:49 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void CFramePerSecond::FrameRateTypeChanged (CFramePerSecond * _this)
|
|
|
|
{
|
2012-11-17 01:02:04 +00:00
|
|
|
_this->m_iFrameRateType = g_Settings->LoadDword(UserInterface_FrameDisplayType);
|
2008-09-18 03:15:49 +00:00
|
|
|
_this->Reset(true);
|
|
|
|
}
|
|
|
|
|
|
|
|
void CFramePerSecond::ScreenHertzChanged (CFramePerSecond * _this)
|
|
|
|
{
|
2012-11-17 01:02:04 +00:00
|
|
|
_this->m_ScreenHertz = g_Settings->LoadDword(GameRunning_ScreenHertz);
|
2008-09-18 03:15:49 +00:00
|
|
|
_this->Reset(true);
|
|
|
|
}
|
|
|
|
|
|
|
|
void CFramePerSecond::UpdateDlCounter ( void )
|
|
|
|
{
|
|
|
|
if (m_iFrameRateType != FR_DLs)
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if ((CurrentFrame & 3) == 0) {
|
|
|
|
LARGE_INTEGER Time;
|
|
|
|
QueryPerformanceCounter(&Time);
|
|
|
|
Frames[(CurrentFrame >> 2) % NoOfFrames] = Time.QuadPart - LastFrame;
|
|
|
|
LastFrame = Time.QuadPart;
|
|
|
|
DisplayDlCounter(0);
|
|
|
|
}
|
|
|
|
CurrentFrame += 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
void CFramePerSecond::DisplayDlCounter(DWORD FrameRate) {
|
|
|
|
if (m_iFrameRateType != FR_DLs)
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (FrameRate != 0) {
|
2015-03-04 09:36:08 +00:00
|
|
|
g_Notify->DisplayMessage2(L"DL/s: %d.00", FrameRate);
|
2008-09-18 03:15:49 +00:00
|
|
|
} else {
|
|
|
|
if (CurrentFrame > (NoOfFrames << 2)) {
|
|
|
|
__int64 Total;
|
|
|
|
|
|
|
|
Total = 0;
|
|
|
|
for (int count = 0; count < NoOfFrames; count ++) {
|
|
|
|
Total += Frames[count];
|
|
|
|
}
|
2015-03-04 09:36:08 +00:00
|
|
|
g_Notify->DisplayMessage2(L"DL/s: %.1f", Frequency/ ((double)Total / (NoOfFrames << 2)));
|
2008-09-18 03:15:49 +00:00
|
|
|
} else {
|
2015-03-04 09:36:08 +00:00
|
|
|
g_Notify->DisplayMessage2(L"DL/s: -.--");
|
2008-09-18 03:15:49 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|