2019-01-24 08:43:03 +00: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 09:19:50 +00:00
|
|
|
|
|
2022-09-10 02:46:10 +00:00
|
|
|
|
using System;
|
2017-03-10 02:04:46 +00:00
|
|
|
|
using System.Collections.Generic;
|
2022-08-29 05:01:04 +00:00
|
|
|
|
using System.Linq;
|
|
|
|
|
using osu.Framework.Extensions.EnumExtensions;
|
2017-08-03 05:36:21 +00:00
|
|
|
|
using osu.Framework.Graphics;
|
2019-03-27 10:29:27 +00:00
|
|
|
|
using osu.Framework.Graphics.Sprites;
|
2017-08-20 12:56:37 +00:00
|
|
|
|
using osu.Framework.Input.Bindings;
|
2022-08-29 05:01:04 +00:00
|
|
|
|
using osu.Framework.Localisation;
|
|
|
|
|
using osu.Game.Beatmaps;
|
2018-04-13 13:41:35 +00:00
|
|
|
|
using osu.Game.Beatmaps.Legacy;
|
2022-08-29 05:01:04 +00:00
|
|
|
|
using osu.Game.Graphics;
|
2018-05-15 08:38:04 +00:00
|
|
|
|
using osu.Game.Rulesets.Difficulty;
|
2022-08-29 05:01:04 +00:00
|
|
|
|
using osu.Game.Rulesets.Edit;
|
|
|
|
|
using osu.Game.Rulesets.Mods;
|
|
|
|
|
using osu.Game.Rulesets.Replays.Types;
|
2019-12-17 11:08:13 +00:00
|
|
|
|
using osu.Game.Rulesets.Scoring;
|
2018-04-19 13:04:12 +00:00
|
|
|
|
using osu.Game.Rulesets.Taiko.Beatmaps;
|
2018-05-15 08:40:19 +00:00
|
|
|
|
using osu.Game.Rulesets.Taiko.Difficulty;
|
2020-05-29 07:40:10 +00:00
|
|
|
|
using osu.Game.Rulesets.Taiko.Edit;
|
2022-08-29 05:01:04 +00:00
|
|
|
|
using osu.Game.Rulesets.Taiko.Mods;
|
2020-06-19 11:31:52 +00:00
|
|
|
|
using osu.Game.Rulesets.Taiko.Objects;
|
2022-08-29 05:01:04 +00:00
|
|
|
|
using osu.Game.Rulesets.Taiko.Replays;
|
|
|
|
|
using osu.Game.Rulesets.Taiko.Scoring;
|
2022-11-02 06:45:32 +00:00
|
|
|
|
using osu.Game.Rulesets.Taiko.Skinning.Argon;
|
2020-12-07 03:30:25 +00:00
|
|
|
|
using osu.Game.Rulesets.Taiko.Skinning.Legacy;
|
2022-08-29 05:01:04 +00:00
|
|
|
|
using osu.Game.Rulesets.Taiko.UI;
|
|
|
|
|
using osu.Game.Rulesets.UI;
|
2023-01-09 19:26:43 +00:00
|
|
|
|
using osu.Game.Overlays.Settings;
|
2022-08-29 05:01:04 +00:00
|
|
|
|
using osu.Game.Scoring;
|
2020-06-19 11:31:52 +00:00
|
|
|
|
using osu.Game.Screens.Ranking.Statistics;
|
2020-01-02 05:26:32 +00:00
|
|
|
|
using osu.Game.Skinning;
|
2023-01-09 19:26:43 +00:00
|
|
|
|
using osu.Game.Rulesets.Configuration;
|
|
|
|
|
using osu.Game.Configuration;
|
|
|
|
|
using osu.Game.Rulesets.Taiko.Configuration;
|
2018-04-13 09:19:50 +00:00
|
|
|
|
|
2017-04-18 07:05:58 +00:00
|
|
|
|
namespace osu.Game.Rulesets.Taiko
|
2016-11-09 10:49:05 +00:00
|
|
|
|
{
|
2019-12-24 04:48:27 +00:00
|
|
|
|
public class TaikoRuleset : Ruleset, ILegacyRuleset
|
2016-11-09 10:49:05 +00:00
|
|
|
|
{
|
2022-07-10 02:15:02 +00:00
|
|
|
|
public override DrawableRuleset CreateDrawableRulesetWith(IBeatmap beatmap, IReadOnlyList<Mod>? mods = null) => new DrawableTaikoRuleset(this, beatmap, mods);
|
2019-12-17 11:08:13 +00:00
|
|
|
|
|
2019-12-24 08:01:17 +00:00
|
|
|
|
public override ScoreProcessor CreateScoreProcessor() => new TaikoScoreProcessor();
|
2019-12-17 11:08:13 +00:00
|
|
|
|
|
2019-12-27 07:14:49 +00:00
|
|
|
|
public override HealthProcessor CreateHealthProcessor(double drainStartTime) => new TaikoHealthProcessor();
|
2019-12-25 12:16:40 +00:00
|
|
|
|
|
2019-12-24 07:02:16 +00:00
|
|
|
|
public override IBeatmapConverter CreateBeatmapConverter(IBeatmap beatmap) => new TaikoBeatmapConverter(beatmap, this);
|
2018-04-13 09:19:50 +00:00
|
|
|
|
|
2022-09-15 08:36:14 +00:00
|
|
|
|
public override ISkin? CreateSkinTransformer(ISkin skin, IBeatmap beatmap)
|
|
|
|
|
{
|
|
|
|
|
switch (skin)
|
|
|
|
|
{
|
2022-11-02 06:45:32 +00:00
|
|
|
|
case ArgonSkin:
|
|
|
|
|
return new TaikoArgonSkinTransformer(skin);
|
|
|
|
|
|
2022-09-15 08:36:14 +00:00
|
|
|
|
case LegacySkin:
|
|
|
|
|
return new TaikoLegacySkinTransformer(skin);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return null;
|
|
|
|
|
}
|
2020-01-02 05:26:32 +00:00
|
|
|
|
|
2019-08-30 05:39:02 +00:00
|
|
|
|
public const string SHORT_NAME = "taiko";
|
|
|
|
|
|
2022-08-29 05:01:04 +00:00
|
|
|
|
public override string RulesetAPIVersionSupported => CURRENT_RULESET_API_VERSION;
|
2022-08-22 07:10:55 +00:00
|
|
|
|
|
2017-08-20 12:56:37 +00:00
|
|
|
|
public override IEnumerable<KeyBinding> GetDefaultKeyBindings(int variant = 0) => new[]
|
|
|
|
|
{
|
2018-06-21 05:28:40 +00:00
|
|
|
|
new KeyBinding(InputKey.MouseLeft, TaikoAction.LeftCentre),
|
|
|
|
|
new KeyBinding(InputKey.MouseRight, TaikoAction.LeftRim),
|
2017-08-20 12:56:37 +00:00
|
|
|
|
new KeyBinding(InputKey.D, TaikoAction.LeftRim),
|
|
|
|
|
new KeyBinding(InputKey.F, TaikoAction.LeftCentre),
|
|
|
|
|
new KeyBinding(InputKey.J, TaikoAction.RightCentre),
|
|
|
|
|
new KeyBinding(InputKey.K, TaikoAction.RightRim),
|
|
|
|
|
};
|
2018-04-13 09:19:50 +00:00
|
|
|
|
|
2020-03-24 03:06:24 +00:00
|
|
|
|
public override IEnumerable<Mod> ConvertFromLegacyMods(LegacyMods mods)
|
2018-04-13 13:41:35 +00:00
|
|
|
|
{
|
2021-02-25 06:38:56 +00:00
|
|
|
|
if (mods.HasFlagFast(LegacyMods.Nightcore))
|
2018-04-13 13:41:35 +00:00
|
|
|
|
yield return new TaikoModNightcore();
|
2021-02-25 06:38:56 +00:00
|
|
|
|
else if (mods.HasFlagFast(LegacyMods.DoubleTime))
|
2018-04-13 13:41:35 +00:00
|
|
|
|
yield return new TaikoModDoubleTime();
|
|
|
|
|
|
2021-02-25 06:38:56 +00:00
|
|
|
|
if (mods.HasFlagFast(LegacyMods.Perfect))
|
2019-09-15 20:55:25 +00:00
|
|
|
|
yield return new TaikoModPerfect();
|
2021-02-25 06:38:56 +00:00
|
|
|
|
else if (mods.HasFlagFast(LegacyMods.SuddenDeath))
|
2019-09-15 20:55:25 +00:00
|
|
|
|
yield return new TaikoModSuddenDeath();
|
|
|
|
|
|
2021-02-25 06:38:56 +00:00
|
|
|
|
if (mods.HasFlagFast(LegacyMods.Cinema))
|
2019-11-23 17:32:16 +00:00
|
|
|
|
yield return new TaikoModCinema();
|
2021-02-25 06:38:56 +00:00
|
|
|
|
else if (mods.HasFlagFast(LegacyMods.Autoplay))
|
2018-04-13 13:41:35 +00:00
|
|
|
|
yield return new TaikoModAutoplay();
|
|
|
|
|
|
2021-02-25 06:38:56 +00:00
|
|
|
|
if (mods.HasFlagFast(LegacyMods.Easy))
|
2018-04-13 13:41:35 +00:00
|
|
|
|
yield return new TaikoModEasy();
|
|
|
|
|
|
2021-02-25 06:38:56 +00:00
|
|
|
|
if (mods.HasFlagFast(LegacyMods.Flashlight))
|
2018-04-13 13:41:35 +00:00
|
|
|
|
yield return new TaikoModFlashlight();
|
|
|
|
|
|
2021-02-25 06:38:56 +00:00
|
|
|
|
if (mods.HasFlagFast(LegacyMods.HalfTime))
|
2018-04-13 13:41:35 +00:00
|
|
|
|
yield return new TaikoModHalfTime();
|
|
|
|
|
|
2021-02-25 06:38:56 +00:00
|
|
|
|
if (mods.HasFlagFast(LegacyMods.HardRock))
|
2018-04-13 13:41:35 +00:00
|
|
|
|
yield return new TaikoModHardRock();
|
|
|
|
|
|
2021-02-25 06:38:56 +00:00
|
|
|
|
if (mods.HasFlagFast(LegacyMods.Hidden))
|
2018-04-13 13:41:35 +00:00
|
|
|
|
yield return new TaikoModHidden();
|
|
|
|
|
|
2021-02-25 06:38:56 +00:00
|
|
|
|
if (mods.HasFlagFast(LegacyMods.NoFail))
|
2018-04-13 13:41:35 +00:00
|
|
|
|
yield return new TaikoModNoFail();
|
|
|
|
|
|
2021-02-25 06:38:56 +00:00
|
|
|
|
if (mods.HasFlagFast(LegacyMods.Relax))
|
2018-04-13 13:41:35 +00:00
|
|
|
|
yield return new TaikoModRelax();
|
2020-11-15 14:41:58 +00:00
|
|
|
|
|
2021-02-25 06:38:56 +00:00
|
|
|
|
if (mods.HasFlagFast(LegacyMods.Random))
|
2020-11-15 14:41:58 +00:00
|
|
|
|
yield return new TaikoModRandom();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public override LegacyMods ConvertToLegacyMods(Mod[] mods)
|
|
|
|
|
{
|
|
|
|
|
var value = base.ConvertToLegacyMods(mods);
|
|
|
|
|
|
|
|
|
|
if (mods.OfType<TaikoModRandom>().Any())
|
|
|
|
|
value |= LegacyMods.Random;
|
|
|
|
|
|
|
|
|
|
return value;
|
2018-04-13 13:41:35 +00:00
|
|
|
|
}
|
|
|
|
|
|
2017-03-02 05:07:28 +00:00
|
|
|
|
public override IEnumerable<Mod> GetModsFor(ModType type)
|
2017-03-02 02:05:52 +00:00
|
|
|
|
{
|
2017-03-02 05:07:28 +00:00
|
|
|
|
switch (type)
|
2017-03-02 02:05:52 +00:00
|
|
|
|
{
|
2017-03-02 05:07:28 +00:00
|
|
|
|
case ModType.DifficultyReduction:
|
|
|
|
|
return new Mod[]
|
2017-03-02 02:05:52 +00:00
|
|
|
|
{
|
2017-03-02 05:07:28 +00:00
|
|
|
|
new TaikoModEasy(),
|
|
|
|
|
new TaikoModNoFail(),
|
2018-06-06 05:07:50 +00:00
|
|
|
|
new MultiMod(new TaikoModHalfTime(), new TaikoModDaycore()),
|
2017-03-02 05:07:28 +00:00
|
|
|
|
};
|
2019-04-01 03:44:46 +00:00
|
|
|
|
|
2017-03-02 05:07:28 +00:00
|
|
|
|
case ModType.DifficultyIncrease:
|
|
|
|
|
return new Mod[]
|
2017-03-02 02:05:52 +00:00
|
|
|
|
{
|
2017-03-02 05:07:28 +00:00
|
|
|
|
new TaikoModHardRock(),
|
2018-06-06 05:07:50 +00:00
|
|
|
|
new MultiMod(new TaikoModSuddenDeath(), new TaikoModPerfect()),
|
2018-06-13 03:21:37 +00:00
|
|
|
|
new MultiMod(new TaikoModDoubleTime(), new TaikoModNightcore()),
|
2017-03-02 05:07:28 +00:00
|
|
|
|
new TaikoModHidden(),
|
|
|
|
|
new TaikoModFlashlight(),
|
2022-05-24 14:56:31 +00:00
|
|
|
|
new ModAccuracyChallenge(),
|
2017-03-02 05:07:28 +00:00
|
|
|
|
};
|
2019-04-01 03:44:46 +00:00
|
|
|
|
|
2019-12-11 11:43:16 +00:00
|
|
|
|
case ModType.Conversion:
|
|
|
|
|
return new Mod[]
|
|
|
|
|
{
|
2021-05-16 04:03:03 +00:00
|
|
|
|
new TaikoModRandom(),
|
2019-12-20 10:30:23 +00:00
|
|
|
|
new TaikoModDifficultyAdjust(),
|
2021-04-21 06:14:31 +00:00
|
|
|
|
new TaikoModClassic(),
|
2021-05-17 03:04:01 +00:00
|
|
|
|
new TaikoModSwap(),
|
2023-02-13 21:25:52 +00:00
|
|
|
|
new TaikoModSingleTap(),
|
2019-12-11 11:43:16 +00:00
|
|
|
|
};
|
|
|
|
|
|
2018-07-31 09:00:42 +00:00
|
|
|
|
case ModType.Automation:
|
2017-03-02 05:07:28 +00:00
|
|
|
|
return new Mod[]
|
2017-03-02 02:05:52 +00:00
|
|
|
|
{
|
2019-11-23 17:32:16 +00:00
|
|
|
|
new MultiMod(new TaikoModAutoplay(), new TaikoModCinema()),
|
2018-07-31 09:00:42 +00:00
|
|
|
|
new TaikoModRelax(),
|
2017-03-02 05:07:28 +00:00
|
|
|
|
};
|
2019-04-01 03:44:46 +00:00
|
|
|
|
|
2019-01-26 04:15:45 +00:00
|
|
|
|
case ModType.Fun:
|
|
|
|
|
return new Mod[]
|
|
|
|
|
{
|
2021-07-28 10:21:08 +00:00
|
|
|
|
new MultiMod(new ModWindUp(), new ModWindDown()),
|
|
|
|
|
new TaikoModMuted(),
|
2022-03-01 13:12:06 +00:00
|
|
|
|
new ModAdaptiveSpeed()
|
2019-01-26 04:15:45 +00:00
|
|
|
|
};
|
2019-04-01 03:44:46 +00:00
|
|
|
|
|
2017-03-02 05:07:28 +00:00
|
|
|
|
default:
|
2019-11-28 13:41:29 +00:00
|
|
|
|
return Array.Empty<Mod>();
|
2017-03-02 05:07:28 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
2018-04-13 09:19:50 +00:00
|
|
|
|
|
2017-03-09 20:37:03 +00:00
|
|
|
|
public override string Description => "osu!taiko";
|
2018-04-13 09:19:50 +00:00
|
|
|
|
|
2019-08-30 05:39:02 +00:00
|
|
|
|
public override string ShortName => SHORT_NAME;
|
2018-04-13 09:19:50 +00:00
|
|
|
|
|
2020-01-03 11:39:15 +00:00
|
|
|
|
public override string PlayingVerb => "Bashing drums";
|
|
|
|
|
|
2019-03-27 10:29:27 +00:00
|
|
|
|
public override Drawable CreateIcon() => new SpriteIcon { Icon = OsuIcon.RulesetTaiko };
|
2018-04-13 09:19:50 +00:00
|
|
|
|
|
2020-05-23 07:06:25 +00:00
|
|
|
|
public override HitObjectComposer CreateHitObjectComposer() => new TaikoHitObjectComposer(this);
|
|
|
|
|
|
2021-11-15 09:23:03 +00:00
|
|
|
|
public override DifficultyCalculator CreateDifficultyCalculator(IWorkingBeatmap beatmap) => new TaikoDifficultyCalculator(RulesetInfo, beatmap);
|
2018-04-13 09:19:50 +00:00
|
|
|
|
|
2022-03-15 03:37:39 +00:00
|
|
|
|
public override PerformanceCalculator CreatePerformanceCalculator() => new TaikoPerformanceCalculator();
|
2018-05-17 08:40:46 +00:00
|
|
|
|
|
2019-12-24 04:48:27 +00:00
|
|
|
|
public int LegacyID => 1;
|
2018-04-13 09:19:50 +00:00
|
|
|
|
|
2022-09-10 03:07:23 +00:00
|
|
|
|
public override IConvertibleReplayFrame CreateConvertibleReplayFrame() => new TaikoReplayFrame();
|
2020-06-19 11:31:52 +00:00
|
|
|
|
|
2023-01-09 19:26:43 +00:00
|
|
|
|
public override IRulesetConfigManager CreateConfig(SettingsStore? settings) => new TaikoRulesetConfigManager(settings, RulesetInfo);
|
2023-01-10 08:27:21 +00:00
|
|
|
|
|
2023-01-09 19:26:43 +00:00
|
|
|
|
public override RulesetSettingsSubsection CreateSettings() => new TaikoSettingsSubsection(this);
|
|
|
|
|
|
2020-10-07 06:34:36 +00:00
|
|
|
|
protected override IEnumerable<HitResult> GetValidHitResults()
|
|
|
|
|
{
|
|
|
|
|
return new[]
|
|
|
|
|
{
|
|
|
|
|
HitResult.Great,
|
|
|
|
|
HitResult.Ok,
|
|
|
|
|
|
2020-10-08 03:52:52 +00:00
|
|
|
|
HitResult.SmallBonus,
|
2023-02-09 20:22:34 +00:00
|
|
|
|
HitResult.LargeBonus,
|
2020-10-07 06:34:36 +00:00
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
|
2022-08-14 18:54:02 +00:00
|
|
|
|
public override LocalisableString GetDisplayNameForHitResult(HitResult result)
|
2020-10-07 06:34:36 +00:00
|
|
|
|
{
|
|
|
|
|
switch (result)
|
|
|
|
|
{
|
2020-10-08 03:52:52 +00:00
|
|
|
|
case HitResult.SmallBonus:
|
2023-02-09 20:22:34 +00:00
|
|
|
|
return "drum tick";
|
|
|
|
|
|
|
|
|
|
case HitResult.LargeBonus:
|
2022-07-24 18:55:13 +00:00
|
|
|
|
return "bonus";
|
2020-10-07 06:34:36 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return base.GetDisplayNameForHitResult(result);
|
|
|
|
|
}
|
|
|
|
|
|
2020-08-27 18:07:30 +00:00
|
|
|
|
public override StatisticRow[] CreateStatisticsForScore(ScoreInfo score, IBeatmap playableBeatmap)
|
2020-06-19 11:31:52 +00:00
|
|
|
|
{
|
2020-08-26 19:28:41 +00:00
|
|
|
|
var timedHitEvents = score.HitEvents.Where(e => e.HitObject is Hit).ToList();
|
|
|
|
|
|
2020-08-27 18:07:30 +00:00
|
|
|
|
return new[]
|
2020-06-19 11:31:52 +00:00
|
|
|
|
{
|
2020-08-26 19:28:41 +00:00
|
|
|
|
new StatisticRow
|
|
|
|
|
{
|
|
|
|
|
Columns = new[]
|
|
|
|
|
{
|
2022-02-05 13:39:01 +00:00
|
|
|
|
new StatisticItem("Performance Breakdown", () => new PerformanceBreakdownChart(score, playableBeatmap)
|
2022-02-02 14:02:38 +00:00
|
|
|
|
{
|
|
|
|
|
RelativeSizeAxes = Axes.X,
|
2022-02-05 13:39:01 +00:00
|
|
|
|
AutoSizeAxes = Axes.Y
|
|
|
|
|
}),
|
2020-08-26 19:28:41 +00:00
|
|
|
|
}
|
|
|
|
|
},
|
2020-08-27 18:46:49 +00:00
|
|
|
|
new StatisticRow
|
2022-02-05 13:30:35 +00:00
|
|
|
|
{
|
|
|
|
|
Columns = new[]
|
|
|
|
|
{
|
2022-02-05 13:39:01 +00:00
|
|
|
|
new StatisticItem("Timing Distribution", () => new HitEventTimingDistributionGraph(timedHitEvents)
|
2022-02-05 13:30:35 +00:00
|
|
|
|
{
|
|
|
|
|
RelativeSizeAxes = Axes.X,
|
2022-02-05 13:39:01 +00:00
|
|
|
|
Height = 250
|
|
|
|
|
}, true),
|
2022-02-05 13:30:35 +00:00
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
new StatisticRow
|
2020-08-27 18:46:49 +00:00
|
|
|
|
{
|
|
|
|
|
Columns = new[]
|
|
|
|
|
{
|
2022-02-02 14:02:38 +00:00
|
|
|
|
new StatisticItem(string.Empty, () => new SimpleStatisticTable(3, new SimpleStatisticItem[]
|
|
|
|
|
{
|
2022-02-28 10:11:06 +00:00
|
|
|
|
new AverageHitError(timedHitEvents),
|
2022-02-02 14:02:38 +00:00
|
|
|
|
new UnstableRate(timedHitEvents)
|
|
|
|
|
}), true)
|
2020-08-27 18:46:49 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
2020-08-26 19:28:41 +00:00
|
|
|
|
};
|
|
|
|
|
}
|
2016-11-09 10:49:05 +00:00
|
|
|
|
}
|
|
|
|
|
}
|