1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-21 20:47:28 +08:00
osu-lazer/osu.Game/Beatmaps/DummyWorkingBeatmap.cs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

106 lines
3.5 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
2022-06-17 15:37:17 +08:00
#nullable disable
2017-07-19 17:02:11 +08:00
using System;
using System.Collections.Generic;
using System.IO;
using System.Threading;
2020-08-07 21:05:58 +08:00
using JetBrains.Annotations;
using osu.Framework.Audio;
using osu.Framework.Audio.Track;
2019-04-25 16:36:17 +08:00
using osu.Framework.Extensions.IEnumerableExtensions;
using osu.Framework.Graphics.Textures;
2017-07-19 08:59:47 +08:00
using osu.Game.Rulesets;
using osu.Game.Rulesets.Difficulty;
2017-07-19 08:59:47 +08:00
using osu.Game.Rulesets.Mods;
using osu.Game.Rulesets.Objects;
2017-07-19 08:59:47 +08:00
using osu.Game.Rulesets.UI;
using osu.Game.Skinning;
2018-04-13 17:19:50 +08:00
namespace osu.Game.Beatmaps
{
public class DummyWorkingBeatmap : WorkingBeatmap
{
private readonly TextureStore textures;
2018-04-13 17:19:50 +08:00
2020-08-07 21:05:58 +08:00
public DummyWorkingBeatmap([NotNull] AudioManager audio, TextureStore textures)
: base(new BeatmapInfo
{
Metadata = new BeatmapMetadata
{
Artist = "please load a beatmap!",
Title = "no beatmaps available!"
},
BeatmapSet = new BeatmapSetInfo(),
Difficulty = new BeatmapDifficulty
{
CircleSize = 0,
DrainRate = 0,
OverallDifficulty = 0,
ApproachRate = 0,
},
2021-11-22 15:39:17 +08:00
Ruleset = new DummyRuleset().RulesetInfo
}, audio)
{
this.textures = textures;
// We are guaranteed to have a virtual track.
// To ease usability, ensure the track is available from point of construction.
LoadTrack();
}
2018-04-13 17:19:50 +08:00
2018-05-07 10:22:25 +08:00
protected override IBeatmap GetBeatmap() => new Beatmap();
2018-04-13 17:19:50 +08:00
public override Texture GetBackground() => textures?.Get(@"Backgrounds/bg4");
2018-04-13 17:19:50 +08:00
2020-08-07 21:31:41 +08:00
protected override Track GetBeatmapTrack() => GetVirtualTrack();
2018-04-13 17:19:50 +08:00
protected internal override ISkin GetSkin() => null;
public override Stream GetStream(string storagePath) => null;
2021-11-22 15:39:17 +08:00
private class DummyRuleset : Ruleset
2017-07-19 08:59:47 +08:00
{
2021-11-22 15:39:17 +08:00
public override IEnumerable<Mod> GetModsFor(ModType type) => Array.Empty<Mod>();
2018-04-13 17:19:50 +08:00
2021-11-22 15:39:17 +08:00
public override DrawableRuleset CreateDrawableRulesetWith(IBeatmap beatmap, IReadOnlyList<Mod> mods = null)
2017-07-19 08:59:47 +08:00
{
2021-11-22 15:39:17 +08:00
throw new NotImplementedException();
}
2018-04-13 17:19:50 +08:00
2023-10-17 16:48:51 +08:00
public override IBeatmapConverter CreateBeatmapConverter(IBeatmap beatmap) => new DummyBeatmapConverter(beatmap);
2023-10-17 16:48:51 +08:00
public override DifficultyCalculator CreateDifficultyCalculator(IWorkingBeatmap beatmap) => throw new NotImplementedException();
2018-04-13 17:19:50 +08:00
2021-11-22 15:39:17 +08:00
public override string Description => "dummy";
2018-04-13 17:19:50 +08:00
2021-11-22 15:39:17 +08:00
public override string ShortName => "dummy";
2018-04-13 17:19:50 +08:00
2021-11-22 15:39:17 +08:00
private class DummyBeatmapConverter : IBeatmapConverter
{
2023-10-17 16:48:51 +08:00
public IBeatmap Beatmap { get; }
2019-04-25 16:36:17 +08:00
2023-10-17 16:48:51 +08:00
public DummyBeatmapConverter(IBeatmap beatmap)
{
Beatmap = beatmap;
}
[CanBeNull]
public event Action<HitObject, IEnumerable<HitObject>> ObjectConverted;
2019-04-25 16:36:17 +08:00
2021-11-22 15:39:17 +08:00
public bool CanConvert() => true;
2019-04-25 16:36:17 +08:00
2021-11-22 15:39:17 +08:00
public IBeatmap Convert(CancellationToken cancellationToken = default)
{
foreach (var obj in Beatmap.HitObjects)
ObjectConverted?.Invoke(obj, obj.Yield());
2019-04-25 16:36:17 +08:00
2021-11-22 15:39:17 +08:00
return Beatmap;
}
2017-07-19 08:59:47 +08:00
}
}
}
}