1
0
mirror of https://github.com/ppy/osu.git synced 2025-03-06 21:57:19 +08:00

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

51 lines
1.9 KiB
C#
Raw Normal View History

// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.
2018-04-13 18:19:50 +09:00
2022-06-17 16:37:17 +09:00
#nullable disable
using osu.Framework.Allocation;
using osu.Framework.Configuration;
using osu.Framework.Graphics;
using osu.Framework.Localisation;
2020-11-18 18:15:56 +08:00
using osu.Framework.Screens;
using osu.Game.Localisation;
using osu.Game.Screens;
2020-11-18 18:15:56 +08:00
using osu.Game.Screens.Import;
2022-06-07 23:10:08 +09:00
using osu.Game.Screens.Utility;
2018-04-13 18:19:50 +09:00
namespace osu.Game.Overlays.Settings.Sections.DebugSettings
{
public partial class GeneralSettings : SettingsSubsection
{
protected override LocalisableString Header => DebugSettingsStrings.GeneralHeader;
2018-04-13 18:19:50 +09:00
2020-11-28 16:31:24 +08:00
[BackgroundDependencyLoader(true)]
private void load(FrameworkDebugConfigManager config, FrameworkConfigManager frameworkConfig, IPerformFromScreenRunner performer)
{
Children = new Drawable[]
{
new SettingsCheckbox
{
LabelText = DebugSettingsStrings.ShowLogOverlay,
Current = frameworkConfig.GetBindable<bool>(FrameworkSetting.ShowLogOverlay)
},
new SettingsCheckbox
2019-06-06 16:49:42 +09:00
{
LabelText = DebugSettingsStrings.BypassFrontToBackPass,
Current = config.GetBindable<bool>(DebugSetting.BypassFrontToBackPass)
},
new SettingsButton
{
Text = DebugSettingsStrings.ImportFiles,
Action = () => performer?.PerformFromScreen(menu => menu.Push(new FileImportScreen()))
},
new SettingsButton
{
Text = @"Run latency certifier",
2022-06-07 23:34:19 +09:00
Action = () => performer?.PerformFromScreen(menu => menu.Push(new LatencyCertifierScreen()))
2019-06-06 16:49:42 +09:00
}
};
}
}
}