258 lines
7.9 KiB
C++
258 lines
7.9 KiB
C++
#include "ConfigUI.h"
|
|
#pragma warning(push)
|
|
#pragma warning(disable : 4091) // warning C4091: 'typedef ': ignored on left of 'tagGPFIDL_FLAGS' when no variable is declared
|
|
#pragma warning(disable : 4302) // warning C4302: 'type cast': truncation from 'LPCTSTR' to 'WORD'
|
|
#pragma warning(disable : 4458) // warning C4458: declaration of 'dwCommonButtons' hides class member
|
|
#pragma warning(disable : 4838) // warning C4838: conversion from 'int' to 'UINT' requires a narrowing conversion
|
|
#pragma warning(disable : 4996) // warning C4996: 'GetVersionExA': was declared deprecated
|
|
#pragma warning(disable : 4302) // warning C4302: 'type cast': truncation from 'LPCTSTR' to 'WORD'
|
|
#define _ATL_DISABLE_NOTHROW_NEW
|
|
#include <atlbase.h>
|
|
#include <wtl/atlapp.h>
|
|
#include <wtl/atldlgs.h>
|
|
#include <wtl/atlctrls.h>
|
|
#include <wtl/atlcrack.h>
|
|
#pragma warning(pop)
|
|
#include <Settings/Settings.h>
|
|
#include <Common/StdString.h>
|
|
#include "trace.h"
|
|
#include "AudioSettings.h"
|
|
#include "SettingsID.h"
|
|
#include "resource.h"
|
|
|
|
extern bool g_romopen;
|
|
|
|
void SetComboBoxIndex(CComboBox & cmb, uint32_t data)
|
|
{
|
|
cmb.SetCurSel(0);
|
|
for (DWORD i = 0, n = cmb.GetCount(); i < n; i++)
|
|
{
|
|
if (cmb.GetItemData(i) == data)
|
|
{
|
|
cmb.SetCurSel(i);
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
|
|
class CGeneralSettings :
|
|
public CPropertyPageImpl<CGeneralSettings>
|
|
{
|
|
public:
|
|
enum { IDD = IDD_CONFIG };
|
|
|
|
BEGIN_MSG_MAP(CDebugSettings)
|
|
MESSAGE_HANDLER(WM_INITDIALOG, OnInitDialog)
|
|
COMMAND_ID_HANDLER_EX(IDC_MUTE, ItemChanged)
|
|
NOTIFY_HANDLER_EX(IDC_VOLUME, NM_RELEASEDCAPTURE, ItemChangedNotify);
|
|
CHAIN_MSG_MAP(CPropertyPageImpl<CGeneralSettings>)
|
|
END_MSG_MAP()
|
|
|
|
LRESULT OnInitDialog(UINT /*uMsg*/, WPARAM /*wParam*/, LPARAM /*lParam*/, BOOL& /*bHandled*/)
|
|
{
|
|
m_btnMute.Attach(GetDlgItem(IDC_MUTE));
|
|
m_btnMute.SetCheck(!g_settings->AudioEnabled() ? BST_CHECKED : BST_UNCHECKED);
|
|
|
|
m_Volume.Attach(GetDlgItem(IDC_VOLUME));
|
|
m_Volume.SetPos(100 - g_settings->GetVolume());
|
|
m_Volume.SetTicFreq(20);
|
|
m_Volume.SetRangeMin(0);
|
|
m_Volume.SetRangeMax(100);
|
|
return TRUE;
|
|
}
|
|
|
|
LRESULT OnApply()
|
|
{
|
|
g_settings->SetAudioEnabled(m_btnMute.GetCheck() != BST_CHECKED);
|
|
g_settings->SetVolume(100 - m_Volume.GetPos());
|
|
FlushSettings();
|
|
return PSNRET_NOERROR;
|
|
}
|
|
|
|
private:
|
|
LRESULT ItemChangedNotify(NMHDR* /*pNMHDR*/)
|
|
{
|
|
SendMessage(GetParent(), PSM_CHANGED, (WPARAM)m_hWnd, 0);
|
|
return 0;
|
|
}
|
|
|
|
void ItemChanged(UINT /*Code*/, int /*id*/, HWND /*ctl*/)
|
|
{
|
|
SendMessage(GetParent(), PSM_CHANGED, (WPARAM)m_hWnd, 0);
|
|
}
|
|
|
|
CTrackBarCtrl m_Volume;
|
|
CButton m_btnMute;
|
|
};
|
|
|
|
class CGameSettings :
|
|
public CPropertyPageImpl<CGameSettings>
|
|
{
|
|
public:
|
|
enum { IDD = IDD_GAME_SETTING };
|
|
|
|
BEGIN_MSG_MAP(CDebugSettings)
|
|
MESSAGE_HANDLER(WM_INITDIALOG, OnInitDialog)
|
|
NOTIFY_HANDLER_EX(IDC_BUFFER, NM_RELEASEDCAPTURE, ItemChangedNotify);
|
|
CHAIN_MSG_MAP(CPropertyPageImpl<CGameSettings>)
|
|
END_MSG_MAP()
|
|
|
|
LRESULT OnInitDialog(UINT /*uMsg*/, WPARAM /*wParam*/, LPARAM /*lParam*/, BOOL& /*bHandled*/)
|
|
{
|
|
m_Buffer.Attach(GetDlgItem(IDC_BUFFER));
|
|
m_Buffer.SetTicFreq(1);
|
|
m_Buffer.SetRangeMin(1);
|
|
m_Buffer.SetRangeMax(7);
|
|
m_Buffer.SetPos(g_settings->GetBuffer());
|
|
return TRUE;
|
|
}
|
|
|
|
LRESULT OnApply()
|
|
{
|
|
g_settings->SetBuffer(m_Buffer.GetPos());
|
|
FlushSettings();
|
|
return PSNRET_NOERROR;
|
|
}
|
|
|
|
private:
|
|
CTrackBarCtrl m_Buffer;
|
|
|
|
void ItemChanged(UINT /*Code*/, int /*id*/, HWND /*ctl*/)
|
|
{
|
|
SendMessage(GetParent(), PSM_CHANGED, (WPARAM)m_hWnd, 0);
|
|
}
|
|
|
|
LRESULT ItemChangedNotify(NMHDR* /*pNMHDR*/)
|
|
{
|
|
SendMessage(GetParent(), PSM_CHANGED, (WPARAM)m_hWnd, 0);
|
|
g_settings->SetBuffer(m_Buffer.GetPos());
|
|
return 0;
|
|
}
|
|
};
|
|
|
|
class CLogSettings :
|
|
public CPropertyPageImpl<CLogSettings>
|
|
{
|
|
public:
|
|
enum { IDD = IDD_LOG_SETTINGS };
|
|
|
|
BEGIN_MSG_MAP(CDebugSettings)
|
|
MESSAGE_HANDLER(WM_INITDIALOG, OnInitDialog)
|
|
COMMAND_HANDLER_EX(IDC_CMB_TRACE_THREAD, CBN_SELCHANGE, ItemChanged)
|
|
COMMAND_HANDLER_EX(IDC_CMB_TRACE_PATH, CBN_SELCHANGE, ItemChanged)
|
|
COMMAND_HANDLER_EX(IDC_CMB_TRACE_INIT_SHUTDOWN, CBN_SELCHANGE, ItemChanged)
|
|
COMMAND_HANDLER_EX(IDC_CMB_TRACE_INTERFACE, CBN_SELCHANGE, ItemChanged)
|
|
CHAIN_MSG_MAP(CPropertyPageImpl<CLogSettings>)
|
|
END_MSG_MAP()
|
|
|
|
LRESULT OnInitDialog(UINT /*uMsg*/, WPARAM /*wParam*/, LPARAM /*lParam*/, BOOL& /*bHandled*/)
|
|
{
|
|
m_cmbTraceThread.Attach(GetDlgItem(IDC_CMB_TRACE_THREAD));
|
|
m_cmbTracePath.Attach(GetDlgItem(IDC_CMB_TRACE_PATH));
|
|
m_cmbTraceInitShutdown.Attach(GetDlgItem(IDC_CMB_TRACE_INIT_SHUTDOWN));
|
|
m_cmbTraceInterface.Attach(GetDlgItem(IDC_CMB_TRACE_INTERFACE));
|
|
m_cmbTraceDriver.Attach(GetDlgItem(IDC_CMB_TRACE_AUDIO_DRIVER));
|
|
|
|
struct {
|
|
CComboBox & cmb;
|
|
uint16_t SettingId;
|
|
} TraceCMB[] =
|
|
{
|
|
{ m_cmbTraceThread, Set_Logging_Thread },
|
|
{ m_cmbTracePath, Set_Logging_Path },
|
|
{ m_cmbTraceInitShutdown, Set_Logging_InitShutdown },
|
|
{ m_cmbTraceInterface, Set_Logging_Interface },
|
|
{ m_cmbTraceDriver, Set_Logging_Driver },
|
|
};
|
|
|
|
for (size_t i = 0, n = sizeof(TraceCMB) / sizeof(TraceCMB[0]); i < n; i++)
|
|
{
|
|
TraceCMB[i].cmb.SetItemData(TraceCMB[i].cmb.AddString(L"Error"), TraceError);
|
|
TraceCMB[i].cmb.SetItemData(TraceCMB[i].cmb.AddString(L"Warning"), TraceWarning);
|
|
TraceCMB[i].cmb.SetItemData(TraceCMB[i].cmb.AddString(L"Notice"), TraceNotice);
|
|
TraceCMB[i].cmb.SetItemData(TraceCMB[i].cmb.AddString(L"Info"), TraceInfo);
|
|
TraceCMB[i].cmb.SetItemData(TraceCMB[i].cmb.AddString(L"Debug"), TraceDebug);
|
|
TraceCMB[i].cmb.SetItemData(TraceCMB[i].cmb.AddString(L"Verbose"), TraceVerbose);
|
|
SetComboBoxIndex(TraceCMB[i].cmb, (uint32_t)GetSetting(TraceCMB[i].SettingId));
|
|
}
|
|
return TRUE;
|
|
}
|
|
|
|
LRESULT OnApply()
|
|
{
|
|
struct {
|
|
CComboBox & cmb;
|
|
uint16_t SettingId;
|
|
} TraceCMB[] =
|
|
{
|
|
{ m_cmbTraceThread, Set_Logging_Thread },
|
|
{ m_cmbTracePath, Set_Logging_Path },
|
|
{ m_cmbTraceInitShutdown, Set_Logging_InitShutdown },
|
|
{ m_cmbTraceInterface, Set_Logging_Interface },
|
|
{ m_cmbTraceDriver, Set_Logging_Driver },
|
|
};
|
|
for (size_t i = 0, n = sizeof(TraceCMB) / sizeof(TraceCMB[0]); i < n; i++)
|
|
{
|
|
SetSetting(TraceCMB[i].SettingId, TraceCMB[i].cmb.GetItemData(TraceCMB[i].cmb.GetCurSel()));
|
|
}
|
|
FlushSettings();
|
|
return PSNRET_NOERROR;
|
|
}
|
|
|
|
private:
|
|
void ItemChanged(UINT /*Code*/, int /*id*/, HWND /*ctl*/)
|
|
{
|
|
SendMessage(GetParent(), PSM_CHANGED, (WPARAM)m_hWnd, 0);
|
|
}
|
|
|
|
CComboBox m_cmbTraceThread;
|
|
CComboBox m_cmbTracePath;
|
|
CComboBox m_cmbTraceInitShutdown;
|
|
CComboBox m_cmbTraceInterface;
|
|
CComboBox m_cmbTraceDriver;
|
|
};
|
|
|
|
class CAudioUI : public CPropertySheetImpl < CAudioUI >
|
|
{
|
|
public:
|
|
CAudioUI();
|
|
~CAudioUI();
|
|
|
|
BEGIN_MSG_MAP(CAudioUI)
|
|
CHAIN_MSG_MAP(CPropertySheetImpl<CAudioUI>)
|
|
END_MSG_MAP()
|
|
|
|
private:
|
|
CGeneralSettings * m_pgGeneralSettings;
|
|
CGameSettings * m_pgGameSettings;
|
|
CLogSettings * m_pgLogSettings;
|
|
};
|
|
|
|
CAudioUI::CAudioUI() :
|
|
m_pgGeneralSettings(new CGeneralSettings),
|
|
m_pgGameSettings(new CGameSettings),
|
|
m_pgLogSettings(new CLogSettings)
|
|
{
|
|
AddPage(&m_pgGeneralSettings->m_psp);
|
|
if (g_romopen)
|
|
{
|
|
AddPage(&m_pgGameSettings->m_psp);
|
|
}
|
|
if (g_settings->debugger_enabled())
|
|
{
|
|
AddPage(&m_pgLogSettings->m_psp);
|
|
}
|
|
}
|
|
|
|
CAudioUI::~CAudioUI()
|
|
{
|
|
delete m_pgLogSettings;
|
|
delete m_pgGameSettings;
|
|
delete m_pgGeneralSettings;
|
|
}
|
|
|
|
void ConfigAudio(void * hParent)
|
|
{
|
|
CAudioUI().DoModal((HWND)hParent);
|
|
}
|