示例#1
0
        /// <summary>
        /// Persists the grouped setting values to the persistent store.
        /// </summary>
        /// <returns><c>true</c> if the settings were persisted;
        /// <c>false</c> otherwise.</returns>
        public override bool Save()
        {
            if (!RequiredDirectoriesVM.ValidateSettings())
            {
                return(false);
            }
            RequiredDirectoriesVM.SaveSettings(true);

            EnvironmentInfo.Settings.CustomLaunchCommands[GameMode.ModeId]         = FileUtil.StripInvalidPathChars(CustomLaunchCommand);
            EnvironmentInfo.Settings.CustomLaunchCommandArguments[GameMode.ModeId] = CustomLaunchCommandArguments;
            EnvironmentInfo.Settings.Save();
            return(true);
        }
示例#2
0
        /// <summary>
        /// Persists the grouped setting values to the persistent store.
        /// </summary>
        /// <returns><c>true</c> if the settings were persisted;
        /// <c>false</c> otherwise.</returns>
        public override bool Save()
        {
            if (!RequiredDirectoriesVM.ValidateSettings())
            {
                return(false);
            }
            RequiredDirectoriesVM.SaveSettings(true);

            if (!String.Equals(EnvironmentInfo.Settings.InstallationPaths[GameMode.ModeId], InstallationPath.Trim(Path.AltDirectorySeparatorChar, Path.DirectorySeparatorChar)))
            {
                EnvironmentInfo.Settings.DelayedSettings[GameMode.ModeId].Add(String.Format("InstallationPaths~{0}", GameMode.ModeId), InstallationPath.Trim(Path.AltDirectorySeparatorChar, Path.DirectorySeparatorChar));
            }
            EnvironmentInfo.Settings.CustomLaunchCommands[GameMode.ModeId]         = FileUtil.StripInvalidPathChars(CustomLaunchCommand);
            EnvironmentInfo.Settings.CustomLaunchCommandArguments[GameMode.ModeId] = CustomLaunchCommandArguments;
            EnvironmentInfo.Settings.Save();
            return(true);
        }