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
|
|
|
|
|
|
|
|
|
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 18:29:27 +08:00
|
|
|
|
using osu.Framework.Graphics.Sprites;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
using osu.Framework.Input.Bindings;
|
|
|
|
|
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;
|
2019-12-17 19:08:13 +08:00
|
|
|
|
using osu.Game.Rulesets.Taiko.Scoring;
|
2018-11-28 15:12:57 +08:00
|
|
|
|
using osu.Game.Scoring;
|
2019-11-28 21:41:29 +08:00
|
|
|
|
using System;
|
2020-05-23 15:06:25 +08:00
|
|
|
|
using osu.Game.Rulesets.Edit;
|
2020-05-29 15:40:10 +08:00
|
|
|
|
using osu.Game.Rulesets.Taiko.Edit;
|
2020-01-02 13:26:32 +08:00
|
|
|
|
using osu.Game.Rulesets.Taiko.Skinning;
|
|
|
|
|
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
|
|
|
|
|
2020-04-02 17:39:49 +08:00
|
|
|
|
public override ISkin CreateLegacySkinProvider(ISkinSource source, IBeatmap beatmap) => new TaikoLegacySkinTransformer(source);
|
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
|
|
|
|
{
|
2018-04-16 20:14:40 +08:00
|
|
|
|
if (mods.HasFlag(LegacyMods.Nightcore))
|
2018-04-13 21:41:35 +08:00
|
|
|
|
yield return new TaikoModNightcore();
|
|
|
|
|
else if (mods.HasFlag(LegacyMods.DoubleTime))
|
|
|
|
|
yield return new TaikoModDoubleTime();
|
|
|
|
|
|
2019-09-16 04:55:25 +08:00
|
|
|
|
if (mods.HasFlag(LegacyMods.Perfect))
|
|
|
|
|
yield return new TaikoModPerfect();
|
|
|
|
|
else if (mods.HasFlag(LegacyMods.SuddenDeath))
|
|
|
|
|
yield return new TaikoModSuddenDeath();
|
|
|
|
|
|
2019-11-24 01:32:16 +08:00
|
|
|
|
if (mods.HasFlag(LegacyMods.Cinema))
|
|
|
|
|
yield return new TaikoModCinema();
|
|
|
|
|
else if (mods.HasFlag(LegacyMods.Autoplay))
|
2018-04-13 21:41:35 +08:00
|
|
|
|
yield return new TaikoModAutoplay();
|
|
|
|
|
|
|
|
|
|
if (mods.HasFlag(LegacyMods.Easy))
|
|
|
|
|
yield return new TaikoModEasy();
|
|
|
|
|
|
2018-04-16 20:14:40 +08:00
|
|
|
|
if (mods.HasFlag(LegacyMods.Flashlight))
|
2018-04-13 21:41:35 +08: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();
|
|
|
|
|
}
|
|
|
|
|
|
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[]
|
|
|
|
|
{
|
2020-03-23 11:09:30 +08:00
|
|
|
|
new TaikoModRandom(),
|
2019-12-20 18:30:23 +08:00
|
|
|
|
new TaikoModDifficultyAdjust(),
|
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[]
|
|
|
|
|
{
|
2019-08-01 11:35:17 +08:00
|
|
|
|
new MultiMod(new ModWindUp(), new ModWindDown())
|
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);
|
|
|
|
|
|
2018-06-14 14:47:42 +08:00
|
|
|
|
public override DifficultyCalculator CreateDifficultyCalculator(WorkingBeatmap beatmap) => new TaikoDifficultyCalculator(this, beatmap);
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2018-11-30 14:18:52 +08:00
|
|
|
|
public override PerformanceCalculator CreatePerformanceCalculator(WorkingBeatmap beatmap, ScoreInfo score) => new TaikoPerformanceCalculator(this, beatmap, 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();
|
|
|
|
|
}
|
|
|
|
|
}
|