2016-06-05 01:32:57 +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 *
* *
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
2018-04-02 18:30:50 +00:00
# include <Project64-core/Settings.h>
2016-06-05 01:32:57 +00:00
# include <Project64-core/Settings/SettingType/SettingsType-Application.h>
2016-09-17 03:17:51 +00:00
# include <Project64-core/Settings/SettingType/SettingsType-ApplicationIndex.h>
2016-10-01 20:24:26 +00:00
# include <Project64-core/Settings/SettingType/SettingsType-RelativePath.h>
2016-12-20 07:22:18 +00:00
# include <Project64-core/Settings/SettingType/SettingsType-GameSetting.h>
2016-06-05 01:32:57 +00:00
# include "UISettings.h"
void RegisterUISettings ( void )
{
2019-02-08 20:01:17 +00:00
g_Settings - > AddHandler ( ( SettingID ) ( FirstUISettings + Asserts_Version ) , new CSettingTypeApplication ( " Settings " , " Asserts Version " , ( uint32_t ) 0 ) ) ;
g_Settings - > AddHandler ( ( SettingID ) ( FirstUISettings + Screen_Orientation ) , new CSettingTypeApplication ( " Settings " , " Screen Orientation " , ( uint32_t ) 0 ) ) ;
g_Settings - > AddHandler ( ( SettingID ) ( FirstUISettings + File_RecentGameFileCount ) , new CSettingTypeApplication ( " Settings " , " Remembered Rom Files " , ( uint32_t ) 10 ) ) ;
2016-09-17 03:17:51 +00:00
g_Settings - > AddHandler ( ( SettingID ) ( FirstUISettings + File_RecentGameFileIndex ) , new CSettingTypeApplicationIndex ( " Recent File " , " Recent Rom " , Default_None ) ) ;
2016-10-01 20:24:26 +00:00
g_Settings - > AddHandler ( ( SettingID ) ( FirstUISettings + TouchScreen_ButtonScale ) , new CSettingTypeApplication ( " Touch Screen " , " Button Scale " , ( uint32_t ) 100 ) ) ;
g_Settings - > AddHandler ( ( SettingID ) ( FirstUISettings + TouchScreen_Layout ) , new CSettingTypeApplication ( " Touch Screen " , " Layout " , " Analog " ) ) ;
g_Settings - > AddHandler ( ( SettingID ) ( FirstUISettings + Controller_ConfigFile ) , new CSettingTypeRelativePath ( " Config " , " Controller.cfg " ) ) ;
g_Settings - > AddHandler ( ( SettingID ) ( FirstUISettings + Controller_CurrentProfile ) , new CSettingTypeApplication ( " Controller " , " Profile " , " User " ) ) ;
2016-10-02 12:21:25 +00:00
g_Settings - > AddHandler ( ( SettingID ) ( FirstUISettings + Controller_Deadzone ) , new CSettingTypeApplication ( " Controller " , " Deadzone " , ( uint32_t ) 0 ) ) ;
g_Settings - > AddHandler ( ( SettingID ) ( FirstUISettings + Controller_Sensitivity ) , new CSettingTypeApplication ( " Controller " , " Sensitivity " , ( uint32_t ) 100 ) ) ;
2016-11-23 08:25:14 +00:00
g_Settings - > AddHandler ( ( SettingID ) ( FirstUISettings + SupportWindow_FirstRun ) , new CSettingTypeApplication ( " Support Project64 " , " First Run " , " " ) ) ;
g_Settings - > AddHandler ( ( SettingID ) ( FirstUISettings + SupportWindow_AlwaysShow ) , new CSettingTypeApplication ( " Support Project64 " , " Always Show " , false ) ) ;
g_Settings - > AddHandler ( ( SettingID ) ( FirstUISettings + SupportWindow_ShowingSupportWindow ) , new CSettingTypeApplication ( " Support Project64 " , " Showing Support Window " , false ) ) ;
g_Settings - > AddHandler ( ( SettingID ) ( FirstUISettings + SupportWindow_RunCount ) , new CSettingTypeApplication ( " Support Project64 " , " Run Count " , ( uint32_t ) 0 ) ) ;
2016-12-20 07:22:18 +00:00
g_Settings - > AddHandler ( ( SettingID ) ( FirstUISettings + Game_RunCount ) , new CSettingTypeGame ( " Run Count " , ( uint32_t ) 0 ) ) ;
2016-06-05 01:32:57 +00:00
}
void UISettingsSaveBool ( UISettingID Type , bool Value )
{
g_Settings - > SaveBool ( ( SettingID ) ( FirstUISettings + Type ) , Value ) ;
CSettings : : FlushSettings ( g_Settings ) ;
}
void UISettingsSaveDword ( UISettingID Type , uint32_t Value )
{
g_Settings - > SaveDword ( ( SettingID ) ( FirstUISettings + Type ) , Value ) ;
CSettings : : FlushSettings ( g_Settings ) ;
}
2016-10-01 20:24:26 +00:00
void UISettingsSaveString ( UISettingID Type , const std : : string & Value )
{
g_Settings - > SaveString ( ( SettingID ) ( FirstUISettings + Type ) , Value ) ;
CSettings : : FlushSettings ( g_Settings ) ;
}
2016-06-05 01:32:57 +00:00
bool UISettingsLoadBool ( UISettingID Type )
{
return g_Settings - > LoadBool ( ( SettingID ) ( FirstUISettings + Type ) ) ;
}
uint32_t UISettingsLoadDword ( UISettingID Type )
{
return g_Settings - > LoadDword ( ( SettingID ) ( FirstUISettings + Type ) ) ;
}
2016-10-01 20:24:26 +00:00
std : : string UISettingsLoadStringVal ( UISettingID Type )
{
return g_Settings - > LoadStringVal ( ( SettingID ) ( FirstUISettings + Type ) ) ;
}