2016-01-27 09:11:59 +00:00
|
|
|
/****************************************************************************
|
|
|
|
* *
|
|
|
|
* Project64 - 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
|
|
|
|
|
|
|
|
#include <Project64-core/N64System/N64Types.h>
|
|
|
|
|
|
|
|
class CDebugSettings
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
CDebugSettings();
|
|
|
|
virtual ~CDebugSettings();
|
|
|
|
|
2016-10-04 19:58:11 +00:00
|
|
|
static inline bool bHaveDebugger(void) { return m_bHaveDebugger; }
|
|
|
|
static inline bool bLogX86Code(void) { return m_bLogX86Code; }
|
|
|
|
static inline bool bShowTLBMisses(void) { return m_bShowTLBMisses; }
|
|
|
|
static inline bool bShowDivByZero(void) { return m_bShowDivByZero; }
|
|
|
|
inline static bool bRecordExecutionTimes(void) { return m_RecordExecutionTimes; }
|
2016-01-27 09:11:59 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
static void StaticRefreshSettings(CDebugSettings * _this)
|
|
|
|
{
|
|
|
|
_this->RefreshSettings();
|
|
|
|
}
|
|
|
|
|
|
|
|
void RefreshSettings(void);
|
|
|
|
|
|
|
|
//Settings that can be changed on the fly
|
|
|
|
static bool m_bHaveDebugger;
|
|
|
|
static bool m_bLogX86Code;
|
|
|
|
static bool m_bShowTLBMisses;
|
|
|
|
static bool m_bShowDivByZero;
|
2016-10-02 21:46:05 +00:00
|
|
|
static bool m_RecordExecutionTimes;
|
2016-01-27 09:11:59 +00:00
|
|
|
|
|
|
|
static int32_t m_RefCount;
|
|
|
|
static bool m_Registered;
|
|
|
|
};
|