2024-02-01 23:19:09 +08:00
|
|
|
// 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.
|
|
|
|
|
2024-09-03 16:49:50 +08:00
|
|
|
using osu.Framework.Allocation;
|
2024-02-01 23:19:09 +08:00
|
|
|
using osu.Framework.Bindables;
|
2024-09-03 12:59:42 +08:00
|
|
|
using osu.Game.Configuration;
|
2024-09-04 15:37:52 +08:00
|
|
|
using osu.Game.Rulesets.Osu.Configuration;
|
2024-02-01 23:19:09 +08:00
|
|
|
using osu.Game.Screens.Play.PlayerSettings;
|
|
|
|
|
|
|
|
namespace osu.Game.Rulesets.Osu.UI
|
|
|
|
{
|
2024-09-04 17:43:33 +08:00
|
|
|
public partial class ReplayAnalysisSettings : PlayerSettingsGroup
|
2024-02-01 23:19:09 +08:00
|
|
|
{
|
2024-09-04 18:28:07 +08:00
|
|
|
private readonly OsuRulesetConfigManager config;
|
|
|
|
|
2024-09-05 14:15:15 +08:00
|
|
|
[SettingSource("Show click markers", SettingControlType = typeof(PlayerCheckbox))]
|
|
|
|
public BindableBool ShowClickMarkers { get; } = new BindableBool();
|
2024-02-01 23:19:09 +08:00
|
|
|
|
2024-09-05 14:15:15 +08:00
|
|
|
[SettingSource("Show frame markers", SettingControlType = typeof(PlayerCheckbox))]
|
|
|
|
public BindableBool ShowAimMarkers { get; } = new BindableBool();
|
2024-02-01 23:19:09 +08:00
|
|
|
|
2024-09-05 14:15:15 +08:00
|
|
|
[SettingSource("Show cursor path", SettingControlType = typeof(PlayerCheckbox))]
|
|
|
|
public BindableBool ShowCursorPath { get; } = new BindableBool();
|
2024-02-28 11:03:45 +08:00
|
|
|
|
2024-09-05 14:15:15 +08:00
|
|
|
[SettingSource("Hide gameplay cursor", SettingControlType = typeof(PlayerCheckbox))]
|
|
|
|
public BindableBool HideSkinCursor { get; } = new BindableBool();
|
2024-09-03 16:49:50 +08:00
|
|
|
|
2024-09-05 14:53:53 +08:00
|
|
|
[SettingSource("Display length", SettingControlType = typeof(PlayerSliderBar<int>))]
|
|
|
|
public BindableInt DisplayLength { get; } = new BindableInt
|
|
|
|
{
|
2024-09-05 15:01:28 +08:00
|
|
|
MinValue = 200,
|
2024-09-05 14:53:53 +08:00
|
|
|
MaxValue = 2000,
|
2024-09-05 15:01:28 +08:00
|
|
|
Default = 800,
|
|
|
|
Precision = 200,
|
2024-09-05 14:53:53 +08:00
|
|
|
};
|
|
|
|
|
2024-09-04 18:28:07 +08:00
|
|
|
public ReplayAnalysisSettings(OsuRulesetConfigManager config)
|
2024-09-04 17:35:27 +08:00
|
|
|
: base("Analysis Settings")
|
|
|
|
{
|
2024-09-04 18:28:07 +08:00
|
|
|
this.config = config;
|
2024-09-04 17:35:27 +08:00
|
|
|
}
|
|
|
|
|
2024-09-03 16:49:50 +08:00
|
|
|
[BackgroundDependencyLoader]
|
2024-09-04 18:28:07 +08:00
|
|
|
private void load()
|
2024-09-03 16:49:50 +08:00
|
|
|
{
|
2024-09-04 17:35:27 +08:00
|
|
|
AddRange(this.CreateSettingsControls());
|
|
|
|
|
2024-09-05 14:15:15 +08:00
|
|
|
config.BindWith(OsuRulesetSetting.ReplayClickMarkersEnabled, ShowClickMarkers);
|
|
|
|
config.BindWith(OsuRulesetSetting.ReplayFrameMarkersEnabled, ShowAimMarkers);
|
|
|
|
config.BindWith(OsuRulesetSetting.ReplayCursorPathEnabled, ShowCursorPath);
|
|
|
|
config.BindWith(OsuRulesetSetting.ReplayCursorHideEnabled, HideSkinCursor);
|
2024-09-05 14:53:53 +08:00
|
|
|
config.BindWith(OsuRulesetSetting.ReplayAnalysisDisplayLength, DisplayLength);
|
2024-09-03 16:49:50 +08:00
|
|
|
}
|
2024-02-01 23:19:09 +08:00
|
|
|
}
|
2024-02-23 08:01:52 +08:00
|
|
|
}
|