2019-01-24 16:43:03 +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.
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2022-09-10 10:46:10 +08:00
|
|
|
|
using System;
|
2017-03-10 14:08:53 +08:00
|
|
|
|
using System.Collections.Generic;
|
2022-08-29 13:01:04 +08:00
|
|
|
|
using System.Linq;
|
|
|
|
|
using osu.Framework.Extensions.EnumExtensions;
|
2017-08-03 13:36:21 +08:00
|
|
|
|
using osu.Framework.Graphics;
|
2019-03-27 18:29:27 +08:00
|
|
|
|
using osu.Framework.Graphics.Sprites;
|
2017-08-14 19:19:25 +08:00
|
|
|
|
using osu.Framework.Input.Bindings;
|
2022-08-29 13:01:04 +08:00
|
|
|
|
using osu.Framework.Localisation;
|
|
|
|
|
using osu.Game.Beatmaps;
|
2018-04-13 21:41:35 +08:00
|
|
|
|
using osu.Game.Beatmaps.Legacy;
|
2019-01-23 18:46:53 +08:00
|
|
|
|
using osu.Game.Configuration;
|
2022-08-29 13:01:04 +08:00
|
|
|
|
using osu.Game.Graphics;
|
|
|
|
|
using osu.Game.Overlays.Settings;
|
2019-01-23 18:46:53 +08:00
|
|
|
|
using osu.Game.Rulesets.Configuration;
|
2018-05-15 16:38:04 +08:00
|
|
|
|
using osu.Game.Rulesets.Difficulty;
|
2022-08-29 13:01:04 +08:00
|
|
|
|
using osu.Game.Rulesets.Edit;
|
|
|
|
|
using osu.Game.Rulesets.Mods;
|
2018-04-19 21:04:12 +08:00
|
|
|
|
using osu.Game.Rulesets.Osu.Beatmaps;
|
2019-01-23 18:46:53 +08:00
|
|
|
|
using osu.Game.Rulesets.Osu.Configuration;
|
2018-05-15 16:36:29 +08:00
|
|
|
|
using osu.Game.Rulesets.Osu.Difficulty;
|
2022-08-29 13:01:04 +08:00
|
|
|
|
using osu.Game.Rulesets.Osu.Edit;
|
2021-08-22 22:49:27 +08:00
|
|
|
|
using osu.Game.Rulesets.Osu.Edit.Setup;
|
2022-08-29 13:01:04 +08:00
|
|
|
|
using osu.Game.Rulesets.Osu.Mods;
|
2021-07-28 18:32:38 +08:00
|
|
|
|
using osu.Game.Rulesets.Osu.Objects;
|
2022-08-29 13:01:04 +08:00
|
|
|
|
using osu.Game.Rulesets.Osu.Replays;
|
|
|
|
|
using osu.Game.Rulesets.Osu.Scoring;
|
2021-07-28 18:32:38 +08:00
|
|
|
|
using osu.Game.Rulesets.Osu.Skinning.Legacy;
|
|
|
|
|
using osu.Game.Rulesets.Osu.Statistics;
|
2022-08-29 13:01:04 +08:00
|
|
|
|
using osu.Game.Rulesets.Osu.UI;
|
|
|
|
|
using osu.Game.Rulesets.Replays.Types;
|
|
|
|
|
using osu.Game.Rulesets.Scoring;
|
|
|
|
|
using osu.Game.Rulesets.UI;
|
|
|
|
|
using osu.Game.Scoring;
|
2021-08-22 22:49:27 +08:00
|
|
|
|
using osu.Game.Screens.Edit.Setup;
|
2021-07-28 18:32:38 +08:00
|
|
|
|
using osu.Game.Screens.Ranking.Statistics;
|
2022-08-29 13:01:04 +08:00
|
|
|
|
using osu.Game.Skinning;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2017-04-18 15:05:58 +08:00
|
|
|
|
namespace osu.Game.Rulesets.Osu
|
2016-11-09 18:49:05 +08:00
|
|
|
|
{
|
2019-12-24 12:48:27 +08:00
|
|
|
|
public class OsuRuleset : Ruleset, ILegacyRuleset
|
2016-11-09 18:49:05 +08:00
|
|
|
|
{
|
2022-07-10 10:15:02 +08:00
|
|
|
|
public override DrawableRuleset CreateDrawableRulesetWith(IBeatmap beatmap, IReadOnlyList<Mod>? mods = null) => new DrawableOsuRuleset(this, beatmap, mods);
|
2019-12-17 19:08:13 +08:00
|
|
|
|
|
2019-12-24 16:01:17 +08:00
|
|
|
|
public override ScoreProcessor CreateScoreProcessor() => new OsuScoreProcessor();
|
|
|
|
|
|
2019-12-24 15:02:16 +08:00
|
|
|
|
public override IBeatmapConverter CreateBeatmapConverter(IBeatmap beatmap) => new OsuBeatmapConverter(beatmap, this);
|
2019-12-17 19:08:13 +08:00
|
|
|
|
|
2018-04-19 21:04:12 +08:00
|
|
|
|
public override IBeatmapProcessor CreateBeatmapProcessor(IBeatmap beatmap) => new OsuBeatmapProcessor(beatmap);
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2019-08-30 13:39:02 +08:00
|
|
|
|
public const string SHORT_NAME = "osu";
|
|
|
|
|
|
2022-08-29 13:01:04 +08:00
|
|
|
|
public override string RulesetAPIVersionSupported => CURRENT_RULESET_API_VERSION;
|
2022-08-22 15:10:55 +08:00
|
|
|
|
|
2017-08-14 19:19:25 +08:00
|
|
|
|
public override IEnumerable<KeyBinding> GetDefaultKeyBindings(int variant = 0) => new[]
|
2017-01-30 12:12:30 +08:00
|
|
|
|
{
|
2018-12-22 08:48:55 +08:00
|
|
|
|
new KeyBinding(InputKey.Z, OsuAction.LeftButton),
|
|
|
|
|
new KeyBinding(InputKey.X, OsuAction.RightButton),
|
2017-08-20 20:56:28 +08:00
|
|
|
|
new KeyBinding(InputKey.MouseLeft, OsuAction.LeftButton),
|
|
|
|
|
new KeyBinding(InputKey.MouseRight, OsuAction.RightButton),
|
2017-08-14 19:19:25 +08:00
|
|
|
|
};
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2020-03-24 11:06:24 +08:00
|
|
|
|
public override IEnumerable<Mod> ConvertFromLegacyMods(LegacyMods mods)
|
2018-04-13 21:41:35 +08:00
|
|
|
|
{
|
2021-02-25 14:38:56 +08:00
|
|
|
|
if (mods.HasFlagFast(LegacyMods.Nightcore))
|
2018-04-13 21:41:35 +08:00
|
|
|
|
yield return new OsuModNightcore();
|
2021-02-25 14:38:56 +08:00
|
|
|
|
else if (mods.HasFlagFast(LegacyMods.DoubleTime))
|
2018-04-13 21:41:35 +08:00
|
|
|
|
yield return new OsuModDoubleTime();
|
|
|
|
|
|
2021-02-25 14:38:56 +08:00
|
|
|
|
if (mods.HasFlagFast(LegacyMods.Perfect))
|
2019-09-16 04:55:25 +08:00
|
|
|
|
yield return new OsuModPerfect();
|
2021-02-25 14:38:56 +08:00
|
|
|
|
else if (mods.HasFlagFast(LegacyMods.SuddenDeath))
|
2019-09-16 04:55:25 +08:00
|
|
|
|
yield return new OsuModSuddenDeath();
|
|
|
|
|
|
2021-02-25 14:38:56 +08:00
|
|
|
|
if (mods.HasFlagFast(LegacyMods.Autopilot))
|
2018-04-13 21:41:35 +08:00
|
|
|
|
yield return new OsuModAutopilot();
|
|
|
|
|
|
2021-02-25 14:38:56 +08:00
|
|
|
|
if (mods.HasFlagFast(LegacyMods.Cinema))
|
2019-11-24 01:32:16 +08:00
|
|
|
|
yield return new OsuModCinema();
|
2021-02-25 14:38:56 +08:00
|
|
|
|
else if (mods.HasFlagFast(LegacyMods.Autoplay))
|
2018-04-13 21:41:35 +08:00
|
|
|
|
yield return new OsuModAutoplay();
|
|
|
|
|
|
2021-02-25 14:38:56 +08:00
|
|
|
|
if (mods.HasFlagFast(LegacyMods.Easy))
|
2018-04-13 21:41:35 +08:00
|
|
|
|
yield return new OsuModEasy();
|
|
|
|
|
|
2021-02-25 14:38:56 +08:00
|
|
|
|
if (mods.HasFlagFast(LegacyMods.Flashlight))
|
2018-04-13 21:41:35 +08:00
|
|
|
|
yield return new OsuModFlashlight();
|
|
|
|
|
|
2021-02-25 14:38:56 +08:00
|
|
|
|
if (mods.HasFlagFast(LegacyMods.HalfTime))
|
2018-04-13 21:41:35 +08:00
|
|
|
|
yield return new OsuModHalfTime();
|
|
|
|
|
|
2021-02-25 14:38:56 +08:00
|
|
|
|
if (mods.HasFlagFast(LegacyMods.HardRock))
|
2018-04-13 21:41:35 +08:00
|
|
|
|
yield return new OsuModHardRock();
|
|
|
|
|
|
2021-02-25 14:38:56 +08:00
|
|
|
|
if (mods.HasFlagFast(LegacyMods.Hidden))
|
2018-04-13 21:41:35 +08:00
|
|
|
|
yield return new OsuModHidden();
|
|
|
|
|
|
2021-02-25 14:38:56 +08:00
|
|
|
|
if (mods.HasFlagFast(LegacyMods.NoFail))
|
2018-04-13 21:41:35 +08:00
|
|
|
|
yield return new OsuModNoFail();
|
|
|
|
|
|
2021-02-25 14:38:56 +08:00
|
|
|
|
if (mods.HasFlagFast(LegacyMods.Relax))
|
2018-04-13 21:41:35 +08:00
|
|
|
|
yield return new OsuModRelax();
|
|
|
|
|
|
2021-02-25 14:38:56 +08:00
|
|
|
|
if (mods.HasFlagFast(LegacyMods.SpunOut))
|
2018-04-13 21:41:35 +08:00
|
|
|
|
yield return new OsuModSpunOut();
|
|
|
|
|
|
2021-02-25 14:38:56 +08:00
|
|
|
|
if (mods.HasFlagFast(LegacyMods.Target))
|
2018-04-13 21:41:35 +08:00
|
|
|
|
yield return new OsuModTarget();
|
2019-01-31 10:51:40 +08:00
|
|
|
|
|
2021-02-25 14:38:56 +08:00
|
|
|
|
if (mods.HasFlagFast(LegacyMods.TouchDevice))
|
2019-01-31 10:51:40 +08:00
|
|
|
|
yield return new OsuModTouchDevice();
|
2018-04-13 21:41:35 +08:00
|
|
|
|
}
|
|
|
|
|
|
2020-11-15 22:40:31 +08:00
|
|
|
|
public override LegacyMods ConvertToLegacyMods(Mod[] mods)
|
|
|
|
|
{
|
|
|
|
|
var value = base.ConvertToLegacyMods(mods);
|
|
|
|
|
|
|
|
|
|
foreach (var mod in mods)
|
|
|
|
|
{
|
|
|
|
|
switch (mod)
|
|
|
|
|
{
|
2022-06-24 20:25:23 +08:00
|
|
|
|
case OsuModAutopilot:
|
2020-11-15 22:40:31 +08:00
|
|
|
|
value |= LegacyMods.Autopilot;
|
|
|
|
|
break;
|
|
|
|
|
|
2022-06-24 20:25:23 +08:00
|
|
|
|
case OsuModSpunOut:
|
2020-11-15 22:40:31 +08:00
|
|
|
|
value |= LegacyMods.SpunOut;
|
|
|
|
|
break;
|
|
|
|
|
|
2022-06-24 20:25:23 +08:00
|
|
|
|
case OsuModTarget:
|
2020-11-15 22:40:31 +08:00
|
|
|
|
value |= LegacyMods.Target;
|
|
|
|
|
break;
|
|
|
|
|
|
2022-06-24 20:25:23 +08:00
|
|
|
|
case OsuModTouchDevice:
|
2020-11-15 22:40:31 +08:00
|
|
|
|
value |= LegacyMods.TouchDevice;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return value;
|
|
|
|
|
}
|
|
|
|
|
|
2017-03-02 13:07:28 +08:00
|
|
|
|
public override IEnumerable<Mod> GetModsFor(ModType type)
|
2017-03-02 10:05:52 +08:00
|
|
|
|
{
|
2017-03-02 13:07:28 +08:00
|
|
|
|
switch (type)
|
2017-03-02 10:05:52 +08:00
|
|
|
|
{
|
2017-03-02 13:07:28 +08:00
|
|
|
|
case ModType.DifficultyReduction:
|
|
|
|
|
return new Mod[]
|
2017-03-02 10:05:52 +08:00
|
|
|
|
{
|
2017-03-02 13:07:28 +08:00
|
|
|
|
new OsuModEasy(),
|
|
|
|
|
new OsuModNoFail(),
|
2018-06-06 13:07:50 +08:00
|
|
|
|
new MultiMod(new OsuModHalfTime(), new OsuModDaycore()),
|
2017-03-02 13:07:28 +08:00
|
|
|
|
};
|
2019-04-01 11:44:46 +08:00
|
|
|
|
|
2017-03-02 13:07:28 +08:00
|
|
|
|
case ModType.DifficultyIncrease:
|
|
|
|
|
return new Mod[]
|
2017-03-02 10:05:52 +08:00
|
|
|
|
{
|
2017-03-02 13:07:28 +08:00
|
|
|
|
new OsuModHardRock(),
|
2018-06-06 13:07:50 +08:00
|
|
|
|
new MultiMod(new OsuModSuddenDeath(), new OsuModPerfect()),
|
|
|
|
|
new MultiMod(new OsuModDoubleTime(), new OsuModNightcore()),
|
2019-07-04 03:40:14 +08:00
|
|
|
|
new OsuModHidden(),
|
2018-08-05 20:20:56 +08:00
|
|
|
|
new MultiMod(new OsuModFlashlight(), new OsuModBlinds()),
|
2022-03-09 05:47:54 +08:00
|
|
|
|
new OsuModStrictTracking()
|
2017-03-02 13:07:28 +08:00
|
|
|
|
};
|
2019-04-01 11:44:46 +08:00
|
|
|
|
|
2018-07-31 17:00:42 +08:00
|
|
|
|
case ModType.Conversion:
|
|
|
|
|
return new Mod[]
|
|
|
|
|
{
|
|
|
|
|
new OsuModTarget(),
|
2019-12-20 18:30:23 +08:00
|
|
|
|
new OsuModDifficultyAdjust(),
|
2021-04-25 07:19:06 +08:00
|
|
|
|
new OsuModClassic(),
|
|
|
|
|
new OsuModRandom(),
|
2021-07-26 08:40:50 +08:00
|
|
|
|
new OsuModMirror(),
|
2022-07-13 06:07:26 +08:00
|
|
|
|
new MultiMod(new OsuModAlternate(), new OsuModSingleTap())
|
2018-07-31 17:00:42 +08:00
|
|
|
|
};
|
2019-04-01 11:44:46 +08:00
|
|
|
|
|
2018-07-31 17:00:42 +08:00
|
|
|
|
case ModType.Automation:
|
2017-03-02 13:07:28 +08:00
|
|
|
|
return new Mod[]
|
2017-03-02 10:05:52 +08:00
|
|
|
|
{
|
2019-11-24 01:32:16 +08:00
|
|
|
|
new MultiMod(new OsuModAutoplay(), new OsuModCinema()),
|
2017-03-02 13:07:28 +08:00
|
|
|
|
new OsuModRelax(),
|
|
|
|
|
new OsuModAutopilot(),
|
2020-02-09 13:34:35 +08:00
|
|
|
|
new OsuModSpunOut(),
|
2017-03-02 13:07:28 +08:00
|
|
|
|
};
|
2019-04-01 11:44:46 +08:00
|
|
|
|
|
2018-08-04 06:30:46 +08:00
|
|
|
|
case ModType.Fun:
|
2019-02-28 12:31:40 +08:00
|
|
|
|
return new Mod[]
|
|
|
|
|
{
|
2018-08-23 03:19:28 +08:00
|
|
|
|
new OsuModTransform(),
|
2018-09-06 02:30:03 +08:00
|
|
|
|
new OsuModWiggle(),
|
2018-09-21 07:06:37 +08:00
|
|
|
|
new OsuModSpinIn(),
|
2019-07-01 19:53:40 +08:00
|
|
|
|
new MultiMod(new OsuModGrow(), new OsuModDeflate()),
|
2019-08-01 11:35:17 +08:00
|
|
|
|
new MultiMod(new ModWindUp(), new ModWindDown()),
|
2019-07-04 03:40:14 +08:00
|
|
|
|
new OsuModTraceable(),
|
2021-04-14 15:52:29 +08:00
|
|
|
|
new OsuModBarrelRoll(),
|
2021-06-16 14:09:42 +08:00
|
|
|
|
new OsuModApproachDifferent(),
|
2021-07-28 18:21:08 +08:00
|
|
|
|
new OsuModMuted(),
|
2021-10-15 12:22:57 +08:00
|
|
|
|
new OsuModNoScope(),
|
2022-05-26 12:08:00 +08:00
|
|
|
|
new MultiMod(new OsuModMagnetised(), new OsuModRepel()),
|
2022-03-01 21:12:06 +08:00
|
|
|
|
new ModAdaptiveSpeed()
|
2018-08-04 06:26:26 +08:00
|
|
|
|
};
|
2019-04-01 11:44:46 +08:00
|
|
|
|
|
2019-07-23 12:12:17 +08:00
|
|
|
|
case ModType.System:
|
|
|
|
|
return new Mod[]
|
|
|
|
|
{
|
|
|
|
|
new OsuModTouchDevice(),
|
|
|
|
|
};
|
|
|
|
|
|
2017-03-02 13:07:28 +08:00
|
|
|
|
default:
|
2019-11-28 21:41:29 +08:00
|
|
|
|
return Array.Empty<Mod>();
|
2017-03-02 13:07:28 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2019-03-27 18:29:27 +08:00
|
|
|
|
public override Drawable CreateIcon() => new SpriteIcon { Icon = OsuIcon.RulesetOsu };
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2021-11-15 17:23:03 +08:00
|
|
|
|
public override DifficultyCalculator CreateDifficultyCalculator(IWorkingBeatmap beatmap) => new OsuDifficultyCalculator(RulesetInfo, beatmap);
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2022-03-15 11:37:39 +08:00
|
|
|
|
public override PerformanceCalculator CreatePerformanceCalculator() => new OsuPerformanceCalculator();
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2017-11-29 16:46:12 +08:00
|
|
|
|
public override HitObjectComposer CreateHitObjectComposer() => new OsuHitObjectComposer(this);
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2021-04-13 16:40:56 +08:00
|
|
|
|
public override IBeatmapVerifier CreateBeatmapVerifier() => new OsuBeatmapVerifier();
|
2021-04-07 20:36:43 +08:00
|
|
|
|
|
2017-03-10 04:37:03 +08:00
|
|
|
|
public override string Description => "osu!";
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2019-08-30 13:39:02 +08:00
|
|
|
|
public override string ShortName => SHORT_NAME;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2020-01-03 19:39:15 +08:00
|
|
|
|
public override string PlayingVerb => "Clicking circles";
|
|
|
|
|
|
2019-01-23 18:46:53 +08:00
|
|
|
|
public override RulesetSettingsSubsection CreateSettings() => new OsuSettingsSubsection(this);
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2022-09-15 16:36:14 +08:00
|
|
|
|
public override ISkin? CreateSkinTransformer(ISkin skin, IBeatmap beatmap)
|
|
|
|
|
{
|
|
|
|
|
switch (skin)
|
|
|
|
|
{
|
|
|
|
|
case LegacySkin:
|
|
|
|
|
return new OsuLegacySkinTransformer(skin);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return null;
|
|
|
|
|
}
|
2019-08-26 11:21:49 +08:00
|
|
|
|
|
2019-12-24 12:48:27 +08:00
|
|
|
|
public int LegacyID => 0;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2022-09-10 11:07:23 +08:00
|
|
|
|
public override IConvertibleReplayFrame CreateConvertibleReplayFrame() => new OsuReplayFrame();
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2022-07-10 10:15:02 +08:00
|
|
|
|
public override IRulesetConfigManager CreateConfig(SettingsStore? settings) => new OsuRulesetConfigManager(settings, RulesetInfo);
|
2020-06-15 21:45:18 +08:00
|
|
|
|
|
2020-10-07 14:34:36 +08:00
|
|
|
|
protected override IEnumerable<HitResult> GetValidHitResults()
|
|
|
|
|
{
|
|
|
|
|
return new[]
|
|
|
|
|
{
|
|
|
|
|
HitResult.Great,
|
|
|
|
|
HitResult.Ok,
|
|
|
|
|
HitResult.Meh,
|
|
|
|
|
|
|
|
|
|
HitResult.LargeTickHit,
|
|
|
|
|
HitResult.SmallTickHit,
|
|
|
|
|
HitResult.SmallBonus,
|
|
|
|
|
HitResult.LargeBonus,
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
|
2022-08-15 02:54:02 +08:00
|
|
|
|
public override LocalisableString GetDisplayNameForHitResult(HitResult result)
|
2020-10-07 14:34:36 +08:00
|
|
|
|
{
|
|
|
|
|
switch (result)
|
|
|
|
|
{
|
|
|
|
|
case HitResult.LargeTickHit:
|
|
|
|
|
return "slider tick";
|
|
|
|
|
|
|
|
|
|
case HitResult.SmallTickHit:
|
|
|
|
|
return "slider end";
|
|
|
|
|
|
|
|
|
|
case HitResult.SmallBonus:
|
|
|
|
|
return "spinner spin";
|
|
|
|
|
|
|
|
|
|
case HitResult.LargeBonus:
|
|
|
|
|
return "spinner bonus";
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return base.GetDisplayNameForHitResult(result);
|
|
|
|
|
}
|
|
|
|
|
|
2020-08-28 02:07:30 +08:00
|
|
|
|
public override StatisticRow[] CreateStatisticsForScore(ScoreInfo score, IBeatmap playableBeatmap)
|
2020-06-15 21:45:18 +08:00
|
|
|
|
{
|
2020-08-27 03:28:41 +08:00
|
|
|
|
var timedHitEvents = score.HitEvents.Where(e => e.HitObject is HitCircle && !(e.HitObject is SliderTailCircle)).ToList();
|
|
|
|
|
|
2020-08-28 02:07:30 +08:00
|
|
|
|
return new[]
|
2020-06-15 21:45:18 +08:00
|
|
|
|
{
|
2020-08-27 03:28:41 +08:00
|
|
|
|
new StatisticRow
|
2020-06-16 16:49:28 +08:00
|
|
|
|
{
|
2020-08-27 03:28:41 +08:00
|
|
|
|
Columns = new[]
|
2020-06-19 20:02:20 +08:00
|
|
|
|
{
|
2022-02-05 21:39:01 +08:00
|
|
|
|
new StatisticItem("Performance Breakdown", () => new PerformanceBreakdownChart(score, playableBeatmap)
|
2022-02-02 22:02:38 +08:00
|
|
|
|
{
|
|
|
|
|
RelativeSizeAxes = Axes.X,
|
2022-02-05 21:39:01 +08:00
|
|
|
|
AutoSizeAxes = Axes.Y
|
|
|
|
|
}),
|
2020-08-27 03:28:41 +08:00
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
new StatisticRow
|
|
|
|
|
{
|
|
|
|
|
Columns = new[]
|
|
|
|
|
{
|
2022-02-05 21:39:01 +08:00
|
|
|
|
new StatisticItem("Timing Distribution", () => new HitEventTimingDistributionGraph(timedHitEvents)
|
2022-02-02 22:02:38 +08:00
|
|
|
|
{
|
|
|
|
|
RelativeSizeAxes = Axes.X,
|
|
|
|
|
Height = 250
|
|
|
|
|
}, true),
|
2020-08-27 03:28:41 +08:00
|
|
|
|
}
|
|
|
|
|
},
|
2020-08-28 02:46:49 +08:00
|
|
|
|
new StatisticRow
|
2022-02-05 21:13:16 +08:00
|
|
|
|
{
|
|
|
|
|
Columns = new[]
|
|
|
|
|
{
|
2022-02-05 21:39:01 +08:00
|
|
|
|
new StatisticItem("Accuracy Heatmap", () => new AccuracyHeatmap(score, playableBeatmap)
|
2022-02-05 21:13:16 +08:00
|
|
|
|
{
|
|
|
|
|
RelativeSizeAxes = Axes.X,
|
2022-02-05 21:39:01 +08:00
|
|
|
|
Height = 250
|
|
|
|
|
}, true),
|
2022-02-05 21:13:16 +08:00
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
new StatisticRow
|
2020-08-28 02:46:49 +08:00
|
|
|
|
{
|
|
|
|
|
Columns = new[]
|
|
|
|
|
{
|
2022-02-02 22:02:38 +08:00
|
|
|
|
new StatisticItem(string.Empty, () => new SimpleStatisticTable(3, new SimpleStatisticItem[]
|
|
|
|
|
{
|
2022-02-28 18:11:06 +08:00
|
|
|
|
new AverageHitError(timedHitEvents),
|
2022-02-02 22:02:38 +08:00
|
|
|
|
new UnstableRate(timedHitEvents)
|
|
|
|
|
}), true)
|
2020-08-28 02:46:49 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
2020-08-27 03:28:41 +08:00
|
|
|
|
};
|
|
|
|
|
}
|
2021-08-22 22:49:27 +08:00
|
|
|
|
|
2021-09-05 12:34:23 +08:00
|
|
|
|
public override RulesetSetupSection CreateEditorSetupSection() => new OsuSetupSection();
|
2016-11-14 18:20:21 +08:00
|
|
|
|
}
|
|
|
|
|
}
|