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 *
|
|
|
|
* *
|
|
|
|
****************************************************************************/
|
|
|
|
#pragma once
|
|
|
|
|
2012-12-31 12:46:03 +00:00
|
|
|
class CSpeedLimitor :
|
|
|
|
private CGameSettings
|
|
|
|
{
|
2008-09-18 03:15:49 +00:00
|
|
|
public:
|
2012-12-31 12:46:03 +00:00
|
|
|
CSpeedLimitor ( void );
|
2008-09-18 03:15:49 +00:00
|
|
|
~CSpeedLimitor ( void );
|
2012-12-31 12:46:03 +00:00
|
|
|
|
2008-09-18 03:15:49 +00:00
|
|
|
void SetHertz ( const DWORD Hertz );
|
|
|
|
bool Timer_Process ( DWORD * const FrameRate );
|
2012-12-31 12:46:03 +00:00
|
|
|
void IncreaeSpeed ( void );
|
|
|
|
void DecreaeSpeed ( void );
|
2008-09-18 03:15:49 +00:00
|
|
|
|
2012-12-31 12:46:03 +00:00
|
|
|
private:
|
|
|
|
CSpeedLimitor(const CSpeedLimitor&); // Disable copy constructor
|
|
|
|
CSpeedLimitor& operator=(const CSpeedLimitor&); // Disable assignment
|
|
|
|
|
|
|
|
void FixSpeedRatio ( void );
|
|
|
|
|
|
|
|
DWORD m_Speed, m_BaseSpeed, m_Frames, m_LastTime;
|
|
|
|
double m_Ratio;
|
2008-09-18 03:15:49 +00:00
|
|
|
};
|