2018-01-05 11:21:19 +00:00
|
|
|
|
// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
|
2017-02-07 04:59:30 +00:00
|
|
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
2016-11-09 10:49:05 +00:00
|
|
|
|
|
2017-01-30 04:12:30 +00:00
|
|
|
|
using osu.Game.Beatmaps;
|
|
|
|
|
using osu.Game.Graphics;
|
2017-04-18 07:05:58 +00:00
|
|
|
|
using osu.Game.Rulesets.Mods;
|
|
|
|
|
using osu.Game.Rulesets.Osu.Mods;
|
2017-06-05 21:45:22 +00:00
|
|
|
|
using osu.Game.Rulesets.Osu.OsuDifficulty;
|
2017-04-18 07:05:58 +00:00
|
|
|
|
using osu.Game.Rulesets.Osu.UI;
|
|
|
|
|
using osu.Game.Rulesets.UI;
|
2017-03-10 06:08:53 +00:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
2017-08-03 05:36:21 +00:00
|
|
|
|
using osu.Framework.Graphics;
|
2017-07-11 18:25:24 +00:00
|
|
|
|
using osu.Game.Overlays.Settings;
|
2017-08-14 11:19:25 +00:00
|
|
|
|
using osu.Framework.Input.Bindings;
|
2017-11-17 03:35:23 +00:00
|
|
|
|
using osu.Game.Rulesets.Scoring;
|
2017-11-17 05:29:19 +00:00
|
|
|
|
using osu.Game.Rulesets.Osu.Scoring;
|
2017-11-29 08:46:12 +00:00
|
|
|
|
using osu.Game.Rulesets.Osu.Edit;
|
|
|
|
|
using osu.Game.Rulesets.Edit;
|
2017-12-13 15:32:32 +00:00
|
|
|
|
using osu.Game.Rulesets.Objects.Types;
|
|
|
|
|
using osu.Game.Rulesets.Objects;
|
2016-11-09 10:49:05 +00:00
|
|
|
|
|
2017-04-18 07:05:58 +00:00
|
|
|
|
namespace osu.Game.Rulesets.Osu
|
2016-11-09 10:49:05 +00:00
|
|
|
|
{
|
2016-11-14 10:20:21 +00:00
|
|
|
|
public class OsuRuleset : Ruleset
|
2016-11-09 10:49:05 +00:00
|
|
|
|
{
|
2017-08-09 04:28:29 +00:00
|
|
|
|
public override RulesetContainer CreateRulesetContainerWith(WorkingBeatmap beatmap, bool isForCurrentRuleset) => new OsuRulesetContainer(this, beatmap, isForCurrentRuleset);
|
2016-11-14 13:03:39 +00:00
|
|
|
|
|
2017-08-14 11:19:25 +00:00
|
|
|
|
public override IEnumerable<KeyBinding> GetDefaultKeyBindings(int variant = 0) => new[]
|
2017-01-30 04:12:30 +00:00
|
|
|
|
{
|
2017-08-18 09:22:00 +00:00
|
|
|
|
new KeyBinding(InputKey.Z, OsuAction.LeftButton),
|
|
|
|
|
new KeyBinding(InputKey.X, OsuAction.RightButton),
|
2017-08-20 12:56:28 +00:00
|
|
|
|
new KeyBinding(InputKey.MouseLeft, OsuAction.LeftButton),
|
|
|
|
|
new KeyBinding(InputKey.MouseRight, OsuAction.RightButton),
|
2017-08-14 11:19:25 +00:00
|
|
|
|
};
|
|
|
|
|
|
2017-12-13 15:32:32 +00:00
|
|
|
|
public override IEnumerable<BeatmapStatistic> GetBeatmapStatistics(WorkingBeatmap beatmap)
|
2017-11-21 03:30:06 +00:00
|
|
|
|
{
|
2017-12-13 15:32:32 +00:00
|
|
|
|
IEnumerable<HitObject> hitObjects = beatmap.Beatmap.HitObjects;
|
2017-12-14 18:55:15 +00:00
|
|
|
|
IEnumerable<HitObject> circles = hitObjects.Where(c => !(c is IHasEndTime));
|
2017-12-13 15:32:32 +00:00
|
|
|
|
IEnumerable<HitObject> sliders = hitObjects.Where(s => s is IHasCurve);
|
2017-12-14 18:55:15 +00:00
|
|
|
|
IEnumerable<HitObject> spinners = hitObjects.Where(s => s is IHasEndTime && !(s is IHasCurve));
|
2017-12-13 15:32:32 +00:00
|
|
|
|
|
|
|
|
|
return new[]
|
2017-01-30 04:12:30 +00:00
|
|
|
|
{
|
2017-12-13 15:32:32 +00:00
|
|
|
|
new BeatmapStatistic
|
|
|
|
|
{
|
|
|
|
|
Name = @"Circle Count",
|
|
|
|
|
Content = circles.Count().ToString(),
|
|
|
|
|
Icon = FontAwesome.fa_circle_o
|
|
|
|
|
},
|
|
|
|
|
new BeatmapStatistic
|
|
|
|
|
{
|
|
|
|
|
Name = @"Slider Count",
|
|
|
|
|
Content = sliders.Count().ToString(),
|
|
|
|
|
Icon = FontAwesome.fa_circle
|
2017-12-14 18:55:15 +00:00
|
|
|
|
},
|
|
|
|
|
new BeatmapStatistic
|
|
|
|
|
{
|
|
|
|
|
Name = @"Spinner Count",
|
|
|
|
|
Content = spinners.Count().ToString(),
|
|
|
|
|
Icon = FontAwesome.fa_circle
|
2017-12-13 15:32:32 +00:00
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
}
|
2017-01-30 04:12:30 +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 OsuModEasy(),
|
|
|
|
|
new OsuModNoFail(),
|
2017-05-30 16:49:06 +00:00
|
|
|
|
new MultiMod
|
|
|
|
|
{
|
|
|
|
|
Mods = new Mod[]
|
|
|
|
|
{
|
|
|
|
|
new OsuModHalfTime(),
|
|
|
|
|
new OsuModDaycore(),
|
|
|
|
|
},
|
|
|
|
|
},
|
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 OsuModHardRock(),
|
|
|
|
|
new MultiMod
|
2017-03-02 02:05:52 +00:00
|
|
|
|
{
|
2017-03-02 05:07:28 +00:00
|
|
|
|
Mods = new Mod[]
|
|
|
|
|
{
|
|
|
|
|
new OsuModSuddenDeath(),
|
|
|
|
|
new OsuModPerfect(),
|
|
|
|
|
},
|
2017-03-02 02:05:52 +00:00
|
|
|
|
},
|
2017-03-02 05:07:28 +00:00
|
|
|
|
new MultiMod
|
2017-03-02 02:05:52 +00:00
|
|
|
|
{
|
2017-03-02 05:07:28 +00:00
|
|
|
|
Mods = new Mod[]
|
|
|
|
|
{
|
|
|
|
|
new OsuModDoubleTime(),
|
|
|
|
|
new OsuModNightcore(),
|
|
|
|
|
},
|
2017-03-02 02:05:52 +00:00
|
|
|
|
},
|
2017-03-02 05:07:28 +00:00
|
|
|
|
new OsuModHidden(),
|
|
|
|
|
new OsuModFlashlight(),
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
case ModType.Special:
|
|
|
|
|
return new Mod[]
|
2017-03-02 02:05:52 +00:00
|
|
|
|
{
|
2017-03-02 05:07:28 +00:00
|
|
|
|
new OsuModRelax(),
|
|
|
|
|
new OsuModAutopilot(),
|
|
|
|
|
new OsuModSpunOut(),
|
|
|
|
|
new MultiMod
|
2017-03-02 02:05:52 +00:00
|
|
|
|
{
|
2017-03-02 05:07:28 +00:00
|
|
|
|
Mods = new Mod[]
|
|
|
|
|
{
|
2017-03-06 13:57:30 +00:00
|
|
|
|
new OsuModAutoplay(),
|
2017-03-02 05:07:28 +00:00
|
|
|
|
new ModCinema(),
|
|
|
|
|
},
|
2017-03-02 02:05:52 +00:00
|
|
|
|
},
|
2017-03-07 12:05:50 +00:00
|
|
|
|
new OsuModTarget(),
|
2017-03-02 05:07:28 +00:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
default:
|
|
|
|
|
return new Mod[] { };
|
|
|
|
|
}
|
|
|
|
|
}
|
2017-03-02 02:05:52 +00:00
|
|
|
|
|
2017-08-03 05:36:21 +00:00
|
|
|
|
public override Drawable CreateIcon() => new SpriteIcon { Icon = FontAwesome.fa_osu_osu_o };
|
2017-01-30 04:35:40 +00:00
|
|
|
|
|
2017-11-17 05:23:52 +00:00
|
|
|
|
public override DifficultyCalculator CreateDifficultyCalculator(Beatmap beatmap, Mod[] mods = null) => new OsuDifficultyCalculator(beatmap, mods);
|
2017-02-19 16:41:51 +00:00
|
|
|
|
|
2017-11-17 03:35:23 +00:00
|
|
|
|
public override PerformanceCalculator CreatePerformanceCalculator(Beatmap beatmap, Score score) => new OsuPerformanceCalculator(this, beatmap, score);
|
|
|
|
|
|
2017-11-29 08:46:12 +00:00
|
|
|
|
public override HitObjectComposer CreateHitObjectComposer() => new OsuHitObjectComposer(this);
|
|
|
|
|
|
2017-03-09 20:37:03 +00:00
|
|
|
|
public override string Description => "osu!";
|
2017-03-10 05:42:14 +00:00
|
|
|
|
|
2017-12-08 09:55:25 +00:00
|
|
|
|
public override string ShortName => "osu";
|
|
|
|
|
|
2017-07-11 18:25:24 +00:00
|
|
|
|
public override SettingsSubsection CreateSettings() => new OsuSettings();
|
|
|
|
|
|
2017-04-17 08:43:48 +00:00
|
|
|
|
public override int LegacyID => 0;
|
2017-08-09 04:04:11 +00:00
|
|
|
|
|
2018-01-10 07:58:10 +00:00
|
|
|
|
public OsuRuleset(RulesetInfo rulesetInfo = null)
|
2017-08-09 04:04:11 +00:00
|
|
|
|
: base(rulesetInfo)
|
|
|
|
|
{
|
|
|
|
|
}
|
2016-11-14 10:20:21 +00:00
|
|
|
|
}
|
|
|
|
|
}
|