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
|
|
|
|
|
|
|
|
|
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;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using osu.Framework.Graphics;
|
2019-03-27 10:29:27 +00:00
|
|
|
|
using osu.Framework.Graphics.Sprites;
|
2018-04-13 09:19:50 +00:00
|
|
|
|
using osu.Framework.Input.Bindings;
|
|
|
|
|
using osu.Game.Rulesets.Replays.Types;
|
|
|
|
|
using osu.Game.Rulesets.Taiko.Replays;
|
2018-04-13 13:41:35 +00:00
|
|
|
|
using osu.Game.Beatmaps.Legacy;
|
2018-05-15 08:38:04 +00:00
|
|
|
|
using osu.Game.Rulesets.Difficulty;
|
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;
|
2019-12-17 11:08:13 +00:00
|
|
|
|
using osu.Game.Rulesets.Taiko.Scoring;
|
2018-11-28 07:12:57 +00:00
|
|
|
|
using osu.Game.Scoring;
|
2019-11-28 13:41:29 +00:00
|
|
|
|
using System;
|
2020-06-19 11:31:52 +00:00
|
|
|
|
using System.Linq;
|
2020-05-23 07:06:25 +00:00
|
|
|
|
using osu.Game.Rulesets.Edit;
|
2020-05-29 07:40:10 +00:00
|
|
|
|
using osu.Game.Rulesets.Taiko.Edit;
|
2020-06-19 11:31:52 +00:00
|
|
|
|
using osu.Game.Rulesets.Taiko.Objects;
|
2020-12-07 03:30:25 +00:00
|
|
|
|
using osu.Game.Rulesets.Taiko.Skinning.Legacy;
|
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;
|
2018-04-13 09:19:50 +00:00
|
|
|
|
|
|
|
|
|
namespace osu.Game.Rulesets.Taiko
|
|
|
|
|
{
|
2019-12-24 04:48:27 +00:00
|
|
|
|
public class TaikoRuleset : Ruleset, ILegacyRuleset
|
2018-04-13 09:19:50 +00:00
|
|
|
|
{
|
2019-12-12 06:58:11 +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
|
|
|
|
|
2020-04-02 09:39:49 +00:00
|
|
|
|
public override ISkin CreateLegacySkinProvider(ISkinSource source, IBeatmap beatmap) => new TaikoLegacySkinTransformer(source);
|
2020-01-02 05:26:32 +00:00
|
|
|
|
|
2019-08-30 05:39:02 +00:00
|
|
|
|
public const string SHORT_NAME = "taiko";
|
|
|
|
|
|
2018-04-13 09:19:50 +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),
|
2018-04-13 09:19:50 +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),
|
|
|
|
|
};
|
|
|
|
|
|
2020-03-24 03:06:24 +00:00
|
|
|
|
public override IEnumerable<Mod> ConvertFromLegacyMods(LegacyMods mods)
|
2018-04-13 13:41:35 +00:00
|
|
|
|
{
|
2018-04-16 12:14:40 +00:00
|
|
|
|
if (mods.HasFlag(LegacyMods.Nightcore))
|
2018-04-13 13:41:35 +00:00
|
|
|
|
yield return new TaikoModNightcore();
|
|
|
|
|
else if (mods.HasFlag(LegacyMods.DoubleTime))
|
|
|
|
|
yield return new TaikoModDoubleTime();
|
|
|
|
|
|
2019-09-15 20:55:25 +00:00
|
|
|
|
if (mods.HasFlag(LegacyMods.Perfect))
|
|
|
|
|
yield return new TaikoModPerfect();
|
|
|
|
|
else if (mods.HasFlag(LegacyMods.SuddenDeath))
|
|
|
|
|
yield return new TaikoModSuddenDeath();
|
|
|
|
|
|
2019-11-23 17:32:16 +00:00
|
|
|
|
if (mods.HasFlag(LegacyMods.Cinema))
|
|
|
|
|
yield return new TaikoModCinema();
|
|
|
|
|
else if (mods.HasFlag(LegacyMods.Autoplay))
|
2018-04-13 13:41:35 +00:00
|
|
|
|
yield return new TaikoModAutoplay();
|
|
|
|
|
|
|
|
|
|
if (mods.HasFlag(LegacyMods.Easy))
|
|
|
|
|
yield return new TaikoModEasy();
|
|
|
|
|
|
2018-04-16 12:14:40 +00:00
|
|
|
|
if (mods.HasFlag(LegacyMods.Flashlight))
|
2018-04-13 13:41:35 +00:00
|
|
|
|
yield return new TaikoModFlashlight();
|
|
|
|
|
|
|
|
|
|
if (mods.HasFlag(LegacyMods.HalfTime))
|
|
|
|
|
yield return new TaikoModHalfTime();
|
|
|
|
|
|
|
|
|
|
if (mods.HasFlag(LegacyMods.HardRock))
|
|
|
|
|
yield return new TaikoModHardRock();
|
|
|
|
|
|
|
|
|
|
if (mods.HasFlag(LegacyMods.Hidden))
|
|
|
|
|
yield return new TaikoModHidden();
|
|
|
|
|
|
|
|
|
|
if (mods.HasFlag(LegacyMods.NoFail))
|
|
|
|
|
yield return new TaikoModNoFail();
|
|
|
|
|
|
|
|
|
|
if (mods.HasFlag(LegacyMods.Relax))
|
|
|
|
|
yield return new TaikoModRelax();
|
2020-11-15 14:41:58 +00:00
|
|
|
|
|
|
|
|
|
if (mods.HasFlag(LegacyMods.Random))
|
|
|
|
|
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
|
|
|
|
}
|
|
|
|
|
|
2018-04-13 09:19:50 +00:00
|
|
|
|
public override IEnumerable<Mod> GetModsFor(ModType type)
|
|
|
|
|
{
|
|
|
|
|
switch (type)
|
|
|
|
|
{
|
|
|
|
|
case ModType.DifficultyReduction:
|
|
|
|
|
return new Mod[]
|
|
|
|
|
{
|
|
|
|
|
new TaikoModEasy(),
|
|
|
|
|
new TaikoModNoFail(),
|
2018-06-06 05:07:50 +00:00
|
|
|
|
new MultiMod(new TaikoModHalfTime(), new TaikoModDaycore()),
|
2018-04-13 09:19:50 +00:00
|
|
|
|
};
|
2019-04-01 03:44:46 +00:00
|
|
|
|
|
2018-04-13 09:19:50 +00:00
|
|
|
|
case ModType.DifficultyIncrease:
|
|
|
|
|
return new Mod[]
|
|
|
|
|
{
|
|
|
|
|
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()),
|
2018-04-13 09:19:50 +00:00
|
|
|
|
new TaikoModHidden(),
|
|
|
|
|
new TaikoModFlashlight(),
|
|
|
|
|
};
|
2019-04-01 03:44:46 +00:00
|
|
|
|
|
2019-12-11 11:43:16 +00:00
|
|
|
|
case ModType.Conversion:
|
|
|
|
|
return new Mod[]
|
|
|
|
|
{
|
2020-03-23 03:09:30 +00:00
|
|
|
|
new TaikoModRandom(),
|
2019-12-20 10:30:23 +00:00
|
|
|
|
new TaikoModDifficultyAdjust(),
|
2019-12-11 11:43:16 +00:00
|
|
|
|
};
|
|
|
|
|
|
2018-07-31 09:00:42 +00:00
|
|
|
|
case ModType.Automation:
|
2018-04-13 09:19:50 +00:00
|
|
|
|
return new Mod[]
|
|
|
|
|
{
|
2019-11-23 17:32:16 +00:00
|
|
|
|
new MultiMod(new TaikoModAutoplay(), new TaikoModCinema()),
|
2018-07-31 09:00:42 +00:00
|
|
|
|
new TaikoModRelax(),
|
2018-04-13 09:19:50 +00:00
|
|
|
|
};
|
2019-04-01 03:44:46 +00:00
|
|
|
|
|
2019-01-26 04:15:45 +00:00
|
|
|
|
case ModType.Fun:
|
|
|
|
|
return new Mod[]
|
|
|
|
|
{
|
2019-08-01 03:35:17 +00:00
|
|
|
|
new MultiMod(new ModWindUp(), new ModWindDown())
|
2019-01-26 04:15:45 +00:00
|
|
|
|
};
|
2019-04-01 03:44:46 +00:00
|
|
|
|
|
2018-04-13 09:19:50 +00:00
|
|
|
|
default:
|
2019-11-28 13:41:29 +00:00
|
|
|
|
return Array.Empty<Mod>();
|
2018-04-13 09:19:50 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public override string Description => "osu!taiko";
|
|
|
|
|
|
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);
|
|
|
|
|
|
2018-06-14 06:47:42 +00:00
|
|
|
|
public override DifficultyCalculator CreateDifficultyCalculator(WorkingBeatmap beatmap) => new TaikoDifficultyCalculator(this, beatmap);
|
2018-04-13 09:19:50 +00:00
|
|
|
|
|
2020-10-03 14:51:22 +00:00
|
|
|
|
public override PerformanceCalculator CreatePerformanceCalculator(DifficultyAttributes attributes, ScoreInfo score) => new TaikoPerformanceCalculator(this, attributes, score);
|
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
|
|
|
|
|
|
|
|
|
public override IConvertibleReplayFrame CreateConvertibleReplayFrame() => new TaikoReplayFrame();
|
2020-06-19 11:31:52 +00:00
|
|
|
|
|
2020-10-07 06:34:36 +00:00
|
|
|
|
protected override IEnumerable<HitResult> GetValidHitResults()
|
|
|
|
|
{
|
|
|
|
|
return new[]
|
|
|
|
|
{
|
|
|
|
|
HitResult.Great,
|
|
|
|
|
HitResult.Ok,
|
|
|
|
|
|
|
|
|
|
HitResult.SmallTickHit,
|
2020-10-08 03:52:52 +00:00
|
|
|
|
|
|
|
|
|
HitResult.SmallBonus,
|
2020-10-07 06:34:36 +00:00
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public override string GetDisplayNameForHitResult(HitResult result)
|
|
|
|
|
{
|
|
|
|
|
switch (result)
|
|
|
|
|
{
|
|
|
|
|
case HitResult.SmallTickHit:
|
|
|
|
|
return "drum tick";
|
2020-10-08 03:52:52 +00:00
|
|
|
|
|
|
|
|
|
case HitResult.SmallBonus:
|
|
|
|
|
return "strong 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[]
|
|
|
|
|
{
|
|
|
|
|
new StatisticItem("Timing Distribution", new HitEventTimingDistributionGraph(timedHitEvents)
|
|
|
|
|
{
|
|
|
|
|
RelativeSizeAxes = Axes.X,
|
|
|
|
|
Height = 250
|
|
|
|
|
}),
|
|
|
|
|
}
|
|
|
|
|
},
|
2020-08-27 18:46:49 +00:00
|
|
|
|
new StatisticRow
|
|
|
|
|
{
|
|
|
|
|
Columns = new[]
|
|
|
|
|
{
|
|
|
|
|
new StatisticItem(string.Empty, new SimpleStatisticTable(3, new SimpleStatisticItem[]
|
|
|
|
|
{
|
|
|
|
|
new UnstableRate(timedHitEvents)
|
|
|
|
|
}))
|
|
|
|
|
}
|
|
|
|
|
}
|
2020-08-26 19:28:41 +00:00
|
|
|
|
};
|
|
|
|
|
}
|
2018-04-13 09:19:50 +00:00
|
|
|
|
}
|
|
|
|
|
}
|