1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-21 20:07:25 +08:00
osu-lazer/osu.Game.Rulesets.Osu/OsuRuleset.cs

189 lines
7.1 KiB
C#
Raw Normal View History

// 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.Osu.Mods;
using osu.Game.Rulesets.Osu.UI;
using osu.Game.Rulesets.UI;
using System.Collections.Generic;
using osu.Framework.Graphics;
using osu.Framework.Graphics.Sprites;
2018-04-13 17:19:50 +08:00
using osu.Game.Overlays.Settings;
using osu.Framework.Input.Bindings;
using osu.Game.Rulesets.Osu.Edit;
using osu.Game.Rulesets.Edit;
using osu.Game.Rulesets.Osu.Replays;
using osu.Game.Rulesets.Replays.Types;
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;
using osu.Game.Rulesets.Configuration;
using osu.Game.Rulesets.Difficulty;
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;
2019-12-17 19:08:13 +08:00
using osu.Game.Rulesets.Osu.Scoring;
using osu.Game.Rulesets.Osu.Skinning;
2019-12-17 19:08:13 +08:00
using osu.Game.Rulesets.Scoring;
2018-11-28 15:12:57 +08:00
using osu.Game.Scoring;
using osu.Game.Skinning;
2019-11-28 21:41:29 +08:00
using System;
2018-04-13 17:19:50 +08:00
namespace osu.Game.Rulesets.Osu
{
2019-12-24 12:48:27 +08:00
public class OsuRuleset : Ruleset, ILegacyRuleset
2018-04-13 17:19:50 +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
public override ScoreProcessor CreateScoreProcessor() => new OsuScoreProcessor();
public override IBeatmapConverter CreateBeatmapConverter(IBeatmap beatmap) => new OsuBeatmapConverter(beatmap, this);
2019-12-17 19:08:13 +08:00
public override IBeatmapProcessor CreateBeatmapProcessor(IBeatmap beatmap) => new OsuBeatmapProcessor(beatmap);
2018-04-13 17:19:50 +08:00
public const string SHORT_NAME = "osu";
2018-04-13 17:19:50 +08:00
public override IEnumerable<KeyBinding> GetDefaultKeyBindings(int variant = 0) => new[]
{
new KeyBinding(InputKey.Z, OsuAction.LeftButton),
new KeyBinding(InputKey.X, OsuAction.RightButton),
2018-04-13 17:19:50 +08:00
new KeyBinding(InputKey.MouseLeft, OsuAction.LeftButton),
new KeyBinding(InputKey.MouseRight, OsuAction.RightButton),
};
2018-04-16 20:14:40 +08:00
public override IEnumerable<Mod> ConvertLegacyMods(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 OsuModNightcore();
else if (mods.HasFlag(LegacyMods.DoubleTime))
yield return new OsuModDoubleTime();
if (mods.HasFlag(LegacyMods.Perfect))
yield return new OsuModPerfect();
else if (mods.HasFlag(LegacyMods.SuddenDeath))
yield return new OsuModSuddenDeath();
2018-04-16 20:14:40 +08:00
if (mods.HasFlag(LegacyMods.Autopilot))
2018-04-13 21:41:35 +08:00
yield return new OsuModAutopilot();
2019-11-24 01:32:16 +08:00
if (mods.HasFlag(LegacyMods.Cinema))
yield return new OsuModCinema();
else if (mods.HasFlag(LegacyMods.Autoplay))
2018-04-13 21:41:35 +08:00
yield return new OsuModAutoplay();
if (mods.HasFlag(LegacyMods.Easy))
yield return new OsuModEasy();
2018-04-16 20:14:40 +08:00
if (mods.HasFlag(LegacyMods.Flashlight))
2018-04-13 21:41:35 +08:00
yield return new OsuModFlashlight();
if (mods.HasFlag(LegacyMods.HalfTime))
yield return new OsuModHalfTime();
if (mods.HasFlag(LegacyMods.HardRock))
yield return new OsuModHardRock();
if (mods.HasFlag(LegacyMods.Hidden))
yield return new OsuModHidden();
if (mods.HasFlag(LegacyMods.NoFail))
yield return new OsuModNoFail();
if (mods.HasFlag(LegacyMods.Relax))
yield return new OsuModRelax();
if (mods.HasFlag(LegacyMods.SpunOut))
yield return new OsuModSpunOut();
2018-04-16 20:14:40 +08:00
if (mods.HasFlag(LegacyMods.Target))
2018-04-13 21:41:35 +08:00
yield return new OsuModTarget();
if (mods.HasFlag(LegacyMods.TouchDevice))
yield return new OsuModTouchDevice();
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 OsuModEasy(),
new OsuModNoFail(),
2018-06-06 13:07:50 +08:00
new MultiMod(new OsuModHalfTime(), new OsuModDaycore()),
new OsuModSpunOut(),
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 OsuModHardRock(),
2018-06-06 13:07:50 +08:00
new MultiMod(new OsuModSuddenDeath(), new OsuModPerfect()),
new MultiMod(new OsuModDoubleTime(), new OsuModNightcore()),
new OsuModHidden(),
2018-08-05 20:20:56 +08:00
new MultiMod(new OsuModFlashlight(), new OsuModBlinds()),
2018-04-13 17:19:50 +08:00
};
2019-04-01 11:44:46 +08:00
case ModType.Conversion:
return new Mod[]
{
new OsuModTarget(),
2019-12-20 18:30:23 +08:00
new OsuModDifficultyAdjust(),
};
2019-04-01 11:44:46 +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 OsuModAutoplay(), new OsuModCinema()),
2018-04-13 17:19:50 +08:00
new OsuModRelax(),
new OsuModAutopilot(),
};
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(),
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()),
new MultiMod(new ModWindUp(), new ModWindDown()),
new OsuModTraceable(),
};
2019-04-01 11:44:46 +08:00
case ModType.System:
return new Mod[]
{
new OsuModTouchDevice(),
};
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 Drawable CreateIcon() => new SpriteIcon { Icon = OsuIcon.RulesetOsu };
2018-04-13 17:19:50 +08:00
public override DifficultyCalculator CreateDifficultyCalculator(WorkingBeatmap beatmap) => new OsuDifficultyCalculator(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 OsuPerformanceCalculator(this, beatmap, score);
2018-04-13 17:19:50 +08:00
public override HitObjectComposer CreateHitObjectComposer() => new OsuHitObjectComposer(this);
public override string Description => "osu!";
public override string ShortName => SHORT_NAME;
2018-04-13 17:19:50 +08:00
2019-01-23 18:46:53 +08:00
public override RulesetSettingsSubsection CreateSettings() => new OsuSettingsSubsection(this);
2018-04-13 17:19:50 +08:00
public override ISkin CreateLegacySkinProvider(ISkinSource source) => new OsuLegacySkinTransformer(source);
2019-12-24 12:48:27 +08:00
public int LegacyID => 0;
2018-04-13 17:19:50 +08:00
public override IConvertibleReplayFrame CreateConvertibleReplayFrame() => new OsuReplayFrame();
public override IRulesetConfigManager CreateConfig(SettingsStore settings) => new OsuRulesetConfigManager(settings, RulesetInfo);
2018-04-13 17:19:50 +08:00
}
}