2020-05-02 22:00:53 -04:00
using Gtk ;
2020-07-03 19:16:49 -04:00
using Ryujinx.Audio ;
2020-08-02 10:41:24 -04:00
using Ryujinx.Common.Configuration ;
2020-07-03 19:16:49 -04:00
using Ryujinx.Common.Configuration.Hid ;
2020-12-01 15:44:04 -05:00
using Ryujinx.Configuration ;
2020-05-02 22:00:53 -04:00
using Ryujinx.Configuration.System ;
using Ryujinx.HLE.FileSystem ;
2020-12-01 15:44:04 -05:00
using Ryujinx.HLE.HOS.Services.Time.TimeZone ;
2021-01-08 03:14:13 -05:00
using Ryujinx.Ui.Helper ;
2020-05-02 22:00:53 -04:00
using System ;
using System.Collections.Generic ;
2020-12-01 15:44:04 -05:00
using System.Globalization ;
2020-05-02 22:00:53 -04:00
using System.IO ;
2021-01-18 15:33:58 -05:00
using System.Reflection ;
2020-07-20 23:33:23 -04:00
using System.Threading.Tasks ;
2020-07-03 19:16:49 -04:00
2020-05-02 22:00:53 -04:00
using GUI = Gtk . Builder . ObjectAttribute ;
2021-01-08 03:14:13 -05:00
namespace Ryujinx.Ui.Windows
2020-05-02 22:00:53 -04:00
{
public class SettingsWindow : Window
{
2021-01-08 03:14:13 -05:00
private readonly MainWindow _parent ;
2020-08-09 16:46:06 -04:00
private readonly ListStore _gameDirsBoxStore ;
private readonly ListStore _audioBackendStore ;
private readonly TimeZoneContentManager _timeZoneContentManager ;
private readonly HashSet < string > _validTzRegions ;
2020-05-02 22:00:53 -04:00
private long _systemTimeOffset ;
#pragma warning disable CS0649 , IDE0044
2020-07-21 00:14:42 -04:00
[GUI] CheckButton _errorLogToggle ;
[GUI] CheckButton _warningLogToggle ;
[GUI] CheckButton _infoLogToggle ;
[GUI] CheckButton _stubLogToggle ;
[GUI] CheckButton _debugLogToggle ;
[GUI] CheckButton _fileLogToggle ;
[GUI] CheckButton _guestLogToggle ;
[GUI] CheckButton _fsAccessLogToggle ;
[GUI] Adjustment _fsLogSpinAdjustment ;
2020-08-02 10:41:24 -04:00
[GUI] ComboBoxText _graphicsDebugLevel ;
2020-07-21 00:14:42 -04:00
[GUI] CheckButton _dockedModeToggle ;
[GUI] CheckButton _discordToggle ;
2020-09-29 16:05:25 -04:00
[GUI] CheckButton _checkUpdatesToggle ;
2021-01-14 17:30:52 -05:00
[GUI] CheckButton _showConfirmExitToggle ;
2020-07-21 00:14:42 -04:00
[GUI] CheckButton _vSyncToggle ;
2020-11-12 18:15:34 -05:00
[GUI] CheckButton _shaderCacheToggle ;
2020-07-21 00:14:42 -04:00
[GUI] CheckButton _ptcToggle ;
[GUI] CheckButton _fsicToggle ;
[GUI] CheckButton _ignoreToggle ;
[GUI] CheckButton _directKeyboardAccess ;
[GUI] ComboBoxText _systemLanguageSelect ;
[GUI] ComboBoxText _systemRegionSelect ;
[GUI] Entry _systemTimeZoneEntry ;
[GUI] EntryCompletion _systemTimeZoneCompletion ;
2020-08-09 16:46:06 -04:00
[GUI] Box _audioBackendBox ;
[GUI] ComboBox _audioBackendSelect ;
2020-07-21 00:14:42 -04:00
[GUI] SpinButton _systemTimeYearSpin ;
[GUI] SpinButton _systemTimeMonthSpin ;
[GUI] SpinButton _systemTimeDaySpin ;
[GUI] SpinButton _systemTimeHourSpin ;
[GUI] SpinButton _systemTimeMinuteSpin ;
[GUI] Adjustment _systemTimeYearSpinAdjustment ;
[GUI] Adjustment _systemTimeMonthSpinAdjustment ;
[GUI] Adjustment _systemTimeDaySpinAdjustment ;
[GUI] Adjustment _systemTimeHourSpinAdjustment ;
[GUI] Adjustment _systemTimeMinuteSpinAdjustment ;
[GUI] CheckButton _custThemeToggle ;
[GUI] Entry _custThemePath ;
[GUI] ToggleButton _browseThemePath ;
[GUI] Label _custThemePathLabel ;
[GUI] TreeView _gameDirsBox ;
[GUI] Entry _addGameDirBox ;
[GUI] Entry _graphicsShadersDumpPath ;
[GUI] ComboBoxText _anisotropy ;
2020-12-15 21:19:07 -05:00
[GUI] ComboBoxText _aspectRatio ;
2020-07-21 00:14:42 -04:00
[GUI] ComboBoxText _resScaleCombo ;
[GUI] Entry _resScaleText ;
[GUI] ToggleButton _configureController1 ;
[GUI] ToggleButton _configureController2 ;
[GUI] ToggleButton _configureController3 ;
[GUI] ToggleButton _configureController4 ;
[GUI] ToggleButton _configureController5 ;
[GUI] ToggleButton _configureController6 ;
[GUI] ToggleButton _configureController7 ;
[GUI] ToggleButton _configureController8 ;
[GUI] ToggleButton _configureControllerH ;
2020-09-29 17:32:42 -04:00
2020-05-02 22:00:53 -04:00
#pragma warning restore CS0649 , IDE0044
2021-01-08 03:14:13 -05:00
public SettingsWindow ( MainWindow parent , VirtualFileSystem virtualFileSystem , HLE . FileSystem . Content . ContentManager contentManager ) : this ( parent , new Builder ( "Ryujinx.Ui.Windows.SettingsWindow.glade" ) , virtualFileSystem , contentManager ) { }
2020-05-02 22:00:53 -04:00
2021-01-08 03:14:13 -05:00
private SettingsWindow ( MainWindow parent , Builder builder , VirtualFileSystem virtualFileSystem , HLE . FileSystem . Content . ContentManager contentManager ) : base ( builder . GetObject ( "_settingsWin" ) . Handle )
2020-05-02 22:00:53 -04:00
{
2021-01-18 15:33:58 -05:00
Icon = new Gdk . Pixbuf ( Assembly . GetExecutingAssembly ( ) , "Ryujinx.Ui.Resources.Logo_Ryujinx.png" ) ;
2021-01-08 03:14:13 -05:00
_parent = parent ;
2020-05-02 22:00:53 -04:00
2021-01-08 03:14:13 -05:00
builder . Autoconnect ( this ) ;
2020-05-02 22:00:53 -04:00
2020-07-21 00:14:42 -04:00
_timeZoneContentManager = new TimeZoneContentManager ( ) ;
_timeZoneContentManager . InitializeInstance ( virtualFileSystem , contentManager , LibHac . FsSystem . IntegrityCheckLevel . None ) ;
_validTzRegions = new HashSet < string > ( _timeZoneContentManager . LocationNameCache . Length , StringComparer . Ordinal ) ; // Zone regions are identifiers. Must match exactly.
2021-01-08 03:14:13 -05:00
// Bind Events.
_configureController1 . Pressed + = ( sender , args ) = > ConfigureController_Pressed ( sender , PlayerIndex . Player1 ) ;
_configureController2 . Pressed + = ( sender , args ) = > ConfigureController_Pressed ( sender , PlayerIndex . Player2 ) ;
_configureController3 . Pressed + = ( sender , args ) = > ConfigureController_Pressed ( sender , PlayerIndex . Player3 ) ;
_configureController4 . Pressed + = ( sender , args ) = > ConfigureController_Pressed ( sender , PlayerIndex . Player4 ) ;
_configureController5 . Pressed + = ( sender , args ) = > ConfigureController_Pressed ( sender , PlayerIndex . Player5 ) ;
_configureController6 . Pressed + = ( sender , args ) = > ConfigureController_Pressed ( sender , PlayerIndex . Player6 ) ;
_configureController7 . Pressed + = ( sender , args ) = > ConfigureController_Pressed ( sender , PlayerIndex . Player7 ) ;
_configureController8 . Pressed + = ( sender , args ) = > ConfigureController_Pressed ( sender , PlayerIndex . Player8 ) ;
_configureControllerH . Pressed + = ( sender , args ) = > ConfigureController_Pressed ( sender , PlayerIndex . Handheld ) ;
2020-07-21 00:14:42 -04:00
_systemTimeZoneEntry . FocusOutEvent + = TimeZoneEntry_FocusOut ;
2020-05-02 22:00:53 -04:00
2020-07-06 22:41:07 -04:00
_resScaleCombo . Changed + = ( sender , args ) = > _resScaleText . Visible = _resScaleCombo . ActiveId = = "-1" ;
2021-01-08 03:14:13 -05:00
// Setup Currents.
2020-05-02 22:00:53 -04:00
if ( ConfigurationState . Instance . Logger . EnableFileLog )
{
_fileLogToggle . Click ( ) ;
}
if ( ConfigurationState . Instance . Logger . EnableError )
{
_errorLogToggle . Click ( ) ;
}
if ( ConfigurationState . Instance . Logger . EnableWarn )
{
_warningLogToggle . Click ( ) ;
}
if ( ConfigurationState . Instance . Logger . EnableInfo )
{
_infoLogToggle . Click ( ) ;
}
if ( ConfigurationState . Instance . Logger . EnableStub )
{
_stubLogToggle . Click ( ) ;
}
if ( ConfigurationState . Instance . Logger . EnableDebug )
{
_debugLogToggle . Click ( ) ;
}
if ( ConfigurationState . Instance . Logger . EnableGuest )
{
_guestLogToggle . Click ( ) ;
}
if ( ConfigurationState . Instance . Logger . EnableFsAccessLog )
{
_fsAccessLogToggle . Click ( ) ;
}
2020-08-02 10:41:24 -04:00
foreach ( GraphicsDebugLevel level in Enum . GetValues ( typeof ( GraphicsDebugLevel ) ) )
{
_graphicsDebugLevel . Append ( level . ToString ( ) , level . ToString ( ) ) ;
}
_graphicsDebugLevel . SetActiveId ( ConfigurationState . Instance . Logger . GraphicsDebugLevel . Value . ToString ( ) ) ;
2020-05-02 22:00:53 -04:00
if ( ConfigurationState . Instance . System . EnableDockedMode )
{
_dockedModeToggle . Click ( ) ;
}
if ( ConfigurationState . Instance . EnableDiscordIntegration )
{
_discordToggle . Click ( ) ;
}
2020-09-29 16:05:25 -04:00
if ( ConfigurationState . Instance . CheckUpdatesOnStart )
{
_checkUpdatesToggle . Click ( ) ;
}
2021-01-14 17:30:52 -05:00
if ( ConfigurationState . Instance . ShowConfirmExit )
{
_showConfirmExitToggle . Click ( ) ;
}
2020-05-02 22:00:53 -04:00
if ( ConfigurationState . Instance . Graphics . EnableVsync )
{
_vSyncToggle . Click ( ) ;
}
2020-11-12 18:15:34 -05:00
if ( ConfigurationState . Instance . Graphics . EnableShaderCache )
{
_shaderCacheToggle . Click ( ) ;
}
2020-06-16 14:28:02 -04:00
if ( ConfigurationState . Instance . System . EnablePtc )
{
_ptcToggle . Click ( ) ;
}
2020-05-02 22:00:53 -04:00
if ( ConfigurationState . Instance . System . EnableFsIntegrityChecks )
{
_fsicToggle . Click ( ) ;
}
if ( ConfigurationState . Instance . System . IgnoreMissingServices )
{
_ignoreToggle . Click ( ) ;
}
if ( ConfigurationState . Instance . Hid . EnableKeyboard )
{
_directKeyboardAccess . Click ( ) ;
}
if ( ConfigurationState . Instance . Ui . EnableCustomTheme )
{
_custThemeToggle . Click ( ) ;
}
2020-07-21 00:14:42 -04:00
// Custom EntryCompletion Columns. If added to glade, need to override more signals
ListStore tzList = new ListStore ( typeof ( string ) , typeof ( string ) , typeof ( string ) ) ;
_systemTimeZoneCompletion . Model = tzList ;
CellRendererText offsetCol = new CellRendererText ( ) ;
CellRendererText abbrevCol = new CellRendererText ( ) ;
_systemTimeZoneCompletion . PackStart ( offsetCol , false ) ;
_systemTimeZoneCompletion . AddAttribute ( offsetCol , "text" , 0 ) ;
_systemTimeZoneCompletion . TextColumn = 1 ; // Regions Column
_systemTimeZoneCompletion . PackStart ( abbrevCol , false ) ;
_systemTimeZoneCompletion . AddAttribute ( abbrevCol , "text" , 2 ) ;
int maxLocationLength = 0 ;
foreach ( var ( offset , location , abbr ) in _timeZoneContentManager . ParseTzOffsets ( ) )
{
var hours = Math . DivRem ( offset , 3600 , out int seconds ) ;
var minutes = Math . Abs ( seconds ) / 60 ;
var abbr2 = ( abbr . StartsWith ( '+' ) | | abbr . StartsWith ( '-' ) ) ? string . Empty : abbr ;
tzList . AppendValues ( $"UTC{hours:+0#;-0#;+00}:{minutes:D2} " , location , abbr2 ) ;
_validTzRegions . Add ( location ) ;
maxLocationLength = Math . Max ( maxLocationLength , location . Length ) ;
}
_systemTimeZoneEntry . WidthChars = Math . Max ( 20 , maxLocationLength + 1 ) ; // Ensure minimum Entry width
_systemTimeZoneEntry . Text = _timeZoneContentManager . SanityCheckDeviceLocationName ( ) ;
_systemTimeZoneCompletion . MatchFunc = TimeZoneMatchFunc ;
2020-05-02 22:00:53 -04:00
_systemLanguageSelect . SetActiveId ( ConfigurationState . Instance . System . Language . Value . ToString ( ) ) ;
_systemRegionSelect . SetActiveId ( ConfigurationState . Instance . System . Region . Value . ToString ( ) ) ;
2020-07-06 22:41:07 -04:00
_resScaleCombo . SetActiveId ( ConfigurationState . Instance . Graphics . ResScale . Value . ToString ( ) ) ;
2020-05-02 22:00:53 -04:00
_anisotropy . SetActiveId ( ConfigurationState . Instance . Graphics . MaxAnisotropy . Value . ToString ( ) ) ;
2020-12-15 21:19:07 -05:00
_aspectRatio . SetActiveId ( ( ( int ) ConfigurationState . Instance . Graphics . AspectRatio . Value ) . ToString ( ) ) ;
2020-05-02 22:00:53 -04:00
_custThemePath . Buffer . Text = ConfigurationState . Instance . Ui . CustomThemePath ;
2020-07-06 22:41:07 -04:00
_resScaleText . Buffer . Text = ConfigurationState . Instance . Graphics . ResScaleCustom . Value . ToString ( ) ;
_resScaleText . Visible = _resScaleCombo . ActiveId = = "-1" ;
2020-05-02 22:00:53 -04:00
_graphicsShadersDumpPath . Buffer . Text = ConfigurationState . Instance . Graphics . ShadersDumpPath ;
_fsLogSpinAdjustment . Value = ConfigurationState . Instance . System . FsGlobalAccessLogMode ;
_systemTimeOffset = ConfigurationState . Instance . System . SystemTimeOffset ;
_gameDirsBox . AppendColumn ( "" , new CellRendererText ( ) , "text" , 0 ) ;
_gameDirsBoxStore = new ListStore ( typeof ( string ) ) ;
_gameDirsBox . Model = _gameDirsBoxStore ;
foreach ( string gameDir in ConfigurationState . Instance . Ui . GameDirs . Value )
{
_gameDirsBoxStore . AppendValues ( gameDir ) ;
}
if ( _custThemeToggle . Active = = false )
{
_custThemePath . Sensitive = false ;
_custThemePathLabel . Sensitive = false ;
_browseThemePath . Sensitive = false ;
}
//Setup system time spinners
UpdateSystemTimeSpinners ( ) ;
2020-08-09 16:46:06 -04:00
_audioBackendStore = new ListStore ( typeof ( string ) , typeof ( AudioBackend ) ) ;
TreeIter openAlIter = _audioBackendStore . AppendValues ( "OpenAL" , AudioBackend . OpenAl ) ;
TreeIter soundIoIter = _audioBackendStore . AppendValues ( "SoundIO" , AudioBackend . SoundIo ) ;
TreeIter dummyIter = _audioBackendStore . AppendValues ( "Dummy" , AudioBackend . Dummy ) ;
_audioBackendSelect = ComboBox . NewWithModelAndEntry ( _audioBackendStore ) ;
_audioBackendSelect . EntryTextColumn = 0 ;
_audioBackendSelect . Entry . IsEditable = false ;
switch ( ConfigurationState . Instance . System . AudioBackend . Value )
{
case AudioBackend . OpenAl :
_audioBackendSelect . SetActiveIter ( openAlIter ) ;
break ;
case AudioBackend . SoundIo :
_audioBackendSelect . SetActiveIter ( soundIoIter ) ;
break ;
case AudioBackend . Dummy :
_audioBackendSelect . SetActiveIter ( dummyIter ) ;
break ;
default :
throw new ArgumentOutOfRangeException ( ) ;
}
_audioBackendBox . Add ( _audioBackendSelect ) ;
_audioBackendSelect . Show ( ) ;
bool openAlIsSupported = false ;
bool soundIoIsSupported = false ;
Task . Run ( ( ) = >
{
openAlIsSupported = OpenALAudioOut . IsSupported ;
soundIoIsSupported = SoundIoAudioOut . IsSupported ;
} ) ;
// This function runs whenever the dropdown is opened
_audioBackendSelect . SetCellDataFunc ( _audioBackendSelect . Cells [ 0 ] , ( layout , cell , model , iter ) = >
{
cell . Sensitive = ( ( AudioBackend ) _audioBackendStore . GetValue ( iter , 1 ) ) switch
{
AudioBackend . OpenAl = > openAlIsSupported ,
AudioBackend . SoundIo = > soundIoIsSupported ,
AudioBackend . Dummy = > true ,
_ = > throw new ArgumentOutOfRangeException ( )
} ;
} ) ;
2020-05-02 22:00:53 -04:00
}
private void UpdateSystemTimeSpinners ( )
{
//Bind system time events
_systemTimeYearSpin . ValueChanged - = SystemTimeSpin_ValueChanged ;
_systemTimeMonthSpin . ValueChanged - = SystemTimeSpin_ValueChanged ;
_systemTimeDaySpin . ValueChanged - = SystemTimeSpin_ValueChanged ;
_systemTimeHourSpin . ValueChanged - = SystemTimeSpin_ValueChanged ;
_systemTimeMinuteSpin . ValueChanged - = SystemTimeSpin_ValueChanged ;
//Apply actual system time + SystemTimeOffset to system time spin buttons
DateTime systemTime = DateTime . Now . AddSeconds ( _systemTimeOffset ) ;
_systemTimeYearSpinAdjustment . Value = systemTime . Year ;
_systemTimeMonthSpinAdjustment . Value = systemTime . Month ;
_systemTimeDaySpinAdjustment . Value = systemTime . Day ;
_systemTimeHourSpinAdjustment . Value = systemTime . Hour ;
_systemTimeMinuteSpinAdjustment . Value = systemTime . Minute ;
//Format spin buttons text to include leading zeros
_systemTimeYearSpin . Text = systemTime . Year . ToString ( "0000" ) ;
_systemTimeMonthSpin . Text = systemTime . Month . ToString ( "00" ) ;
_systemTimeDaySpin . Text = systemTime . Day . ToString ( "00" ) ;
_systemTimeHourSpin . Text = systemTime . Hour . ToString ( "00" ) ;
_systemTimeMinuteSpin . Text = systemTime . Minute . ToString ( "00" ) ;
//Bind system time events
_systemTimeYearSpin . ValueChanged + = SystemTimeSpin_ValueChanged ;
_systemTimeMonthSpin . ValueChanged + = SystemTimeSpin_ValueChanged ;
_systemTimeDaySpin . ValueChanged + = SystemTimeSpin_ValueChanged ;
_systemTimeHourSpin . ValueChanged + = SystemTimeSpin_ValueChanged ;
_systemTimeMinuteSpin . ValueChanged + = SystemTimeSpin_ValueChanged ;
}
2020-11-12 19:50:28 -05:00
private void SaveSettings ( )
{
List < string > gameDirs = new List < string > ( ) ;
_gameDirsBoxStore . GetIterFirst ( out TreeIter treeIter ) ;
for ( int i = 0 ; i < _gameDirsBoxStore . IterNChildren ( ) ; i + + )
{
gameDirs . Add ( ( string ) _gameDirsBoxStore . GetValue ( treeIter , 0 ) ) ;
_gameDirsBoxStore . IterNext ( ref treeIter ) ;
}
if ( ! float . TryParse ( _resScaleText . Buffer . Text , out float resScaleCustom ) | | resScaleCustom < = 0.0f )
{
resScaleCustom = 1.0f ;
}
if ( _validTzRegions . Contains ( _systemTimeZoneEntry . Text ) )
{
ConfigurationState . Instance . System . TimeZone . Value = _systemTimeZoneEntry . Text ;
}
ConfigurationState . Instance . Logger . EnableError . Value = _errorLogToggle . Active ;
ConfigurationState . Instance . Logger . EnableWarn . Value = _warningLogToggle . Active ;
ConfigurationState . Instance . Logger . EnableInfo . Value = _infoLogToggle . Active ;
ConfigurationState . Instance . Logger . EnableStub . Value = _stubLogToggle . Active ;
ConfigurationState . Instance . Logger . EnableDebug . Value = _debugLogToggle . Active ;
ConfigurationState . Instance . Logger . EnableGuest . Value = _guestLogToggle . Active ;
ConfigurationState . Instance . Logger . EnableFsAccessLog . Value = _fsAccessLogToggle . Active ;
ConfigurationState . Instance . Logger . EnableFileLog . Value = _fileLogToggle . Active ;
ConfigurationState . Instance . Logger . GraphicsDebugLevel . Value = Enum . Parse < GraphicsDebugLevel > ( _graphicsDebugLevel . ActiveId ) ;
ConfigurationState . Instance . System . EnableDockedMode . Value = _dockedModeToggle . Active ;
ConfigurationState . Instance . EnableDiscordIntegration . Value = _discordToggle . Active ;
ConfigurationState . Instance . CheckUpdatesOnStart . Value = _checkUpdatesToggle . Active ;
2021-01-14 17:30:52 -05:00
ConfigurationState . Instance . ShowConfirmExit . Value = _showConfirmExitToggle . Active ;
2020-11-12 19:50:28 -05:00
ConfigurationState . Instance . Graphics . EnableVsync . Value = _vSyncToggle . Active ;
ConfigurationState . Instance . Graphics . EnableShaderCache . Value = _shaderCacheToggle . Active ;
ConfigurationState . Instance . System . EnablePtc . Value = _ptcToggle . Active ;
ConfigurationState . Instance . System . EnableFsIntegrityChecks . Value = _fsicToggle . Active ;
ConfigurationState . Instance . System . IgnoreMissingServices . Value = _ignoreToggle . Active ;
ConfigurationState . Instance . Hid . EnableKeyboard . Value = _directKeyboardAccess . Active ;
ConfigurationState . Instance . Ui . EnableCustomTheme . Value = _custThemeToggle . Active ;
ConfigurationState . Instance . System . Language . Value = Enum . Parse < Language > ( _systemLanguageSelect . ActiveId ) ;
ConfigurationState . Instance . System . Region . Value = Enum . Parse < Configuration . System . Region > ( _systemRegionSelect . ActiveId ) ;
ConfigurationState . Instance . System . SystemTimeOffset . Value = _systemTimeOffset ;
ConfigurationState . Instance . Ui . CustomThemePath . Value = _custThemePath . Buffer . Text ;
ConfigurationState . Instance . Graphics . ShadersDumpPath . Value = _graphicsShadersDumpPath . Buffer . Text ;
ConfigurationState . Instance . Ui . GameDirs . Value = gameDirs ;
ConfigurationState . Instance . System . FsGlobalAccessLogMode . Value = ( int ) _fsLogSpinAdjustment . Value ;
2020-12-01 15:44:04 -05:00
ConfigurationState . Instance . Graphics . MaxAnisotropy . Value = float . Parse ( _anisotropy . ActiveId , CultureInfo . InvariantCulture ) ;
2020-12-15 21:19:07 -05:00
ConfigurationState . Instance . Graphics . AspectRatio . Value = Enum . Parse < AspectRatio > ( _aspectRatio . ActiveId ) ;
2020-11-12 19:50:28 -05:00
ConfigurationState . Instance . Graphics . ResScale . Value = int . Parse ( _resScaleCombo . ActiveId ) ;
ConfigurationState . Instance . Graphics . ResScaleCustom . Value = resScaleCustom ;
if ( _audioBackendSelect . GetActiveIter ( out TreeIter activeIter ) )
{
ConfigurationState . Instance . System . AudioBackend . Value = ( AudioBackend ) _audioBackendStore . GetValue ( activeIter , 1 ) ;
}
2021-01-08 03:14:13 -05:00
ConfigurationState . Instance . ToFileFormat ( ) . SaveConfig ( Program . ConfigurationPath ) ;
_parent . UpdateGraphicsConfig ( ) ;
ThemeHelper . ApplyTheme ( ) ;
2020-11-12 19:50:28 -05:00
}
2021-01-08 03:14:13 -05:00
//
// Events
//
2020-12-15 21:19:07 -05:00
private void TimeZoneEntry_FocusOut ( object sender , FocusOutEventArgs e )
2020-07-21 00:14:42 -04:00
{
if ( ! _validTzRegions . Contains ( _systemTimeZoneEntry . Text ) )
{
_systemTimeZoneEntry . Text = _timeZoneContentManager . SanityCheckDeviceLocationName ( ) ;
}
}
private bool TimeZoneMatchFunc ( EntryCompletion compl , string key , TreeIter iter )
{
key = key . Trim ( ) . Replace ( ' ' , '_' ) ;
return ( ( string ) compl . Model . GetValue ( iter , 1 ) ) . Contains ( key , StringComparison . OrdinalIgnoreCase ) | | // region
( ( string ) compl . Model . GetValue ( iter , 2 ) ) . StartsWith ( key , StringComparison . OrdinalIgnoreCase ) | | // abbr
2021-01-08 03:14:13 -05:00
( ( string ) compl . Model . GetValue ( iter , 0 ) ) [ 3. . ] . StartsWith ( key ) ; // offset
2020-07-21 00:14:42 -04:00
}
2020-12-15 21:19:07 -05:00
private void SystemTimeSpin_ValueChanged ( object sender , EventArgs e )
2020-05-02 22:00:53 -04:00
{
int year = _systemTimeYearSpin . ValueAsInt ;
int month = _systemTimeMonthSpin . ValueAsInt ;
int day = _systemTimeDaySpin . ValueAsInt ;
int hour = _systemTimeHourSpin . ValueAsInt ;
int minute = _systemTimeMinuteSpin . ValueAsInt ;
if ( ! DateTime . TryParse ( year + "-" + month + "-" + day + " " + hour + ":" + minute , out DateTime newTime ) )
{
UpdateSystemTimeSpinners ( ) ;
return ;
}
newTime = newTime . AddSeconds ( DateTime . Now . Second ) . AddMilliseconds ( DateTime . Now . Millisecond ) ;
long systemTimeOffset = ( long ) Math . Ceiling ( ( newTime - DateTime . Now ) . TotalMinutes ) * 60L ;
if ( _systemTimeOffset ! = systemTimeOffset )
{
_systemTimeOffset = systemTimeOffset ;
UpdateSystemTimeSpinners ( ) ;
}
}
private void AddDir_Pressed ( object sender , EventArgs args )
{
if ( Directory . Exists ( _addGameDirBox . Buffer . Text ) )
{
_gameDirsBoxStore . AppendValues ( _addGameDirBox . Buffer . Text ) ;
}
else
{
2020-07-03 18:57:03 -04:00
FileChooserDialog fileChooser = new FileChooserDialog ( "Choose the game directory to add to the list" , this , FileChooserAction . SelectFolder , "Cancel" , ResponseType . Cancel , "Add" , ResponseType . Accept )
{
SelectMultiple = true
} ;
2020-05-02 22:00:53 -04:00
if ( fileChooser . Run ( ) = = ( int ) ResponseType . Accept )
{
2020-07-03 18:57:03 -04:00
foreach ( string directory in fileChooser . Filenames )
{
bool directoryAdded = false ;
2020-12-09 17:20:05 -05:00
2020-07-03 18:57:03 -04:00
if ( _gameDirsBoxStore . GetIterFirst ( out TreeIter treeIter ) )
{
do
{
if ( directory . Equals ( ( string ) _gameDirsBoxStore . GetValue ( treeIter , 0 ) ) )
{
directoryAdded = true ;
break ;
}
} while ( _gameDirsBoxStore . IterNext ( ref treeIter ) ) ;
}
if ( ! directoryAdded )
{
_gameDirsBoxStore . AppendValues ( directory ) ;
}
}
2020-05-02 22:00:53 -04:00
}
fileChooser . Dispose ( ) ;
}
_addGameDirBox . Buffer . Text = "" ;
2021-01-08 03:14:13 -05:00
( ( ToggleButton ) sender ) . SetStateFlags ( StateFlags . Normal , true ) ;
2020-05-02 22:00:53 -04:00
}
private void RemoveDir_Pressed ( object sender , EventArgs args )
{
TreeSelection selection = _gameDirsBox . Selection ;
if ( selection . GetSelected ( out TreeIter treeIter ) )
{
_gameDirsBoxStore . Remove ( ref treeIter ) ;
}
2021-01-08 03:14:13 -05:00
( ( ToggleButton ) sender ) . SetStateFlags ( StateFlags . Normal , true ) ;
2020-05-02 22:00:53 -04:00
}
private void CustThemeToggle_Activated ( object sender , EventArgs args )
{
_custThemePath . Sensitive = _custThemeToggle . Active ;
_custThemePathLabel . Sensitive = _custThemeToggle . Active ;
_browseThemePath . Sensitive = _custThemeToggle . Active ;
}
private void BrowseThemeDir_Pressed ( object sender , EventArgs args )
{
2021-01-08 03:14:13 -05:00
using ( FileChooserDialog fileChooser = new FileChooserDialog ( "Choose the theme to load" , this , FileChooserAction . Open , "Cancel" , ResponseType . Cancel , "Select" , ResponseType . Accept ) )
2020-05-02 22:00:53 -04:00
{
2021-01-08 03:14:13 -05:00
fileChooser . Filter = new FileFilter ( ) ;
fileChooser . Filter . AddPattern ( "*.css" ) ;
2020-05-02 22:00:53 -04:00
2021-01-08 03:14:13 -05:00
if ( fileChooser . Run ( ) = = ( int ) ResponseType . Accept )
{
_custThemePath . Buffer . Text = fileChooser . Filename ;
}
}
2020-05-02 22:00:53 -04:00
2021-01-08 03:14:13 -05:00
_browseThemePath . SetStateFlags ( StateFlags . Normal , true ) ;
2020-05-02 22:00:53 -04:00
}
2021-01-08 03:14:13 -05:00
private void ConfigureController_Pressed ( object sender , PlayerIndex playerIndex )
2020-05-02 22:00:53 -04:00
{
2021-01-08 03:14:13 -05:00
( ( ToggleButton ) sender ) . SetStateFlags ( StateFlags . Normal , true ) ;
2020-05-02 22:00:53 -04:00
2021-01-08 03:14:13 -05:00
new ControllerWindow ( playerIndex ) . Show ( ) ;
2020-05-02 22:00:53 -04:00
}
private void SaveToggle_Activated ( object sender , EventArgs args )
{
2020-11-12 19:50:28 -05:00
SaveSettings ( ) ;
2020-05-02 22:00:53 -04:00
Dispose ( ) ;
}
2020-11-12 19:50:28 -05:00
private void ApplyToggle_Activated ( object sender , EventArgs args )
{
SaveSettings ( ) ;
}
2020-05-02 22:00:53 -04:00
private void CloseToggle_Activated ( object sender , EventArgs args )
{
Dispose ( ) ;
}
}
2021-01-08 03:14:13 -05:00
}