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