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 System;
|
|
|
|
using System.Collections.Generic;
|
|
|
|
using System.IO;
|
|
|
|
using System.Linq;
|
|
|
|
using System.Reflection;
|
2019-05-28 17:59:21 +08:00
|
|
|
using System.Threading.Tasks;
|
2018-04-13 17:19:50 +08:00
|
|
|
using osu.Framework.Allocation;
|
|
|
|
using osu.Framework.Audio;
|
2019-02-21 18:04:31 +08:00
|
|
|
using osu.Framework.Bindables;
|
2019-06-20 11:48:45 +08:00
|
|
|
using osu.Framework.Development;
|
2018-04-13 17:19:50 +08:00
|
|
|
using osu.Framework.Graphics;
|
|
|
|
using osu.Framework.Graphics.Containers;
|
|
|
|
using osu.Framework.IO.Stores;
|
|
|
|
using osu.Framework.Platform;
|
|
|
|
using osu.Game.Beatmaps;
|
|
|
|
using osu.Game.Configuration;
|
|
|
|
using osu.Game.Graphics;
|
|
|
|
using osu.Game.Graphics.Cursor;
|
|
|
|
using osu.Game.Online.API;
|
|
|
|
using osu.Framework.Graphics.Performance;
|
|
|
|
using osu.Framework.Graphics.Textures;
|
2018-07-09 14:26:22 +08:00
|
|
|
using osu.Framework.Input;
|
2018-04-13 17:19:50 +08:00
|
|
|
using osu.Framework.Logging;
|
2018-05-09 19:52:46 +08:00
|
|
|
using osu.Game.Audio;
|
2018-04-13 17:19:50 +08:00
|
|
|
using osu.Game.Database;
|
2019-01-04 12:29:37 +08:00
|
|
|
using osu.Game.Graphics.Containers;
|
2018-04-13 17:19:50 +08:00
|
|
|
using osu.Game.Input;
|
|
|
|
using osu.Game.Input.Bindings;
|
|
|
|
using osu.Game.IO;
|
|
|
|
using osu.Game.Rulesets;
|
2019-05-15 12:00:11 +08:00
|
|
|
using osu.Game.Rulesets.Mods;
|
2018-11-28 15:12:57 +08:00
|
|
|
using osu.Game.Scoring;
|
2018-04-13 17:19:50 +08:00
|
|
|
using osu.Game.Skinning;
|
2018-11-20 15:51:59 +08:00
|
|
|
using osuTK.Input;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
|
|
namespace osu.Game
|
|
|
|
{
|
|
|
|
/// <summary>
|
|
|
|
/// The most basic <see cref="Game"/> that can be used to host osu! components and systems.
|
|
|
|
/// Unlike <see cref="OsuGame"/>, this class will not load any kind of UI, allowing it to be used
|
|
|
|
/// for provide dependencies to test cases without interfering with them.
|
|
|
|
/// </summary>
|
|
|
|
public class OsuGameBase : Framework.Game, ICanAcceptFiles
|
|
|
|
{
|
2019-06-03 12:16:05 +08:00
|
|
|
public const string CLIENT_STREAM_NAME = "lazer";
|
|
|
|
|
2018-04-13 17:19:50 +08:00
|
|
|
protected OsuConfigManager LocalConfig;
|
|
|
|
|
|
|
|
protected BeatmapManager BeatmapManager;
|
|
|
|
|
2018-11-28 15:47:10 +08:00
|
|
|
protected ScoreManager ScoreManager;
|
|
|
|
|
2018-04-13 17:19:50 +08:00
|
|
|
protected SkinManager SkinManager;
|
|
|
|
|
|
|
|
protected RulesetStore RulesetStore;
|
|
|
|
|
|
|
|
protected FileStore FileStore;
|
|
|
|
|
|
|
|
protected KeyBindingStore KeyBindingStore;
|
|
|
|
|
|
|
|
protected SettingsStore SettingsStore;
|
|
|
|
|
2018-06-11 14:07:42 +08:00
|
|
|
protected RulesetConfigCache RulesetConfigCache;
|
|
|
|
|
2018-12-06 11:17:08 +08:00
|
|
|
protected APIAccess API;
|
|
|
|
|
2018-05-26 03:13:40 +08:00
|
|
|
protected MenuCursorContainer MenuCursorContainer;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
|
|
private Container content;
|
|
|
|
|
|
|
|
protected override Container<Drawable> Content => content;
|
|
|
|
|
2019-05-15 12:00:11 +08:00
|
|
|
private Bindable<WorkingBeatmap> beatmap; // cached via load() method
|
|
|
|
|
|
|
|
[Cached]
|
|
|
|
[Cached(typeof(IBindable<RulesetInfo>))]
|
|
|
|
protected readonly Bindable<RulesetInfo> Ruleset = new Bindable<RulesetInfo>();
|
|
|
|
|
|
|
|
// todo: move this to SongSelect once Screen has the ability to unsuspend.
|
|
|
|
[Cached]
|
|
|
|
[Cached(Type = typeof(IBindable<IReadOnlyList<Mod>>))]
|
|
|
|
protected readonly Bindable<IReadOnlyList<Mod>> Mods = new Bindable<IReadOnlyList<Mod>>(Array.Empty<Mod>());
|
2019-02-01 14:42:15 +08:00
|
|
|
|
|
|
|
protected Bindable<WorkingBeatmap> Beatmap => beatmap;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
|
|
private Bindable<bool> fpsDisplayVisible;
|
|
|
|
|
2019-03-01 19:15:09 +08:00
|
|
|
public virtual Version AssemblyVersion => Assembly.GetEntryAssembly()?.GetName().Version ?? new Version();
|
2018-04-13 17:19:50 +08:00
|
|
|
|
2019-03-01 18:59:39 +08:00
|
|
|
public bool IsDeployedBuild => AssemblyVersion.Major > 0;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
|
|
public string Version
|
|
|
|
{
|
|
|
|
get
|
|
|
|
{
|
|
|
|
if (!IsDeployedBuild)
|
2019-06-20 11:48:45 +08:00
|
|
|
return @"local " + (DebugUtils.IsDebugBuild ? @"debug" : @"release");
|
2018-04-13 17:19:50 +08:00
|
|
|
|
2019-03-01 18:59:39 +08:00
|
|
|
var version = AssemblyVersion;
|
|
|
|
return $@"{version.Major}.{version.Minor}.{version.Build}";
|
2018-04-13 17:19:50 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public OsuGameBase()
|
|
|
|
{
|
|
|
|
Name = @"osu!lazer";
|
|
|
|
}
|
|
|
|
|
|
|
|
private DependencyContainer dependencies;
|
|
|
|
|
2018-07-11 16:07:14 +08:00
|
|
|
protected override IReadOnlyDependencyContainer CreateChildDependencies(IReadOnlyDependencyContainer parent) =>
|
|
|
|
dependencies = new DependencyContainer(base.CreateChildDependencies(parent));
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
|
|
private DatabaseContextFactory contextFactory;
|
|
|
|
|
2018-07-09 14:26:22 +08:00
|
|
|
protected override UserInputManager CreateUserInputManager() => new OsuUserInputManager();
|
|
|
|
|
2018-04-13 17:19:50 +08:00
|
|
|
[BackgroundDependencyLoader]
|
|
|
|
private void load()
|
|
|
|
{
|
2018-06-04 19:01:55 +08:00
|
|
|
Resources.AddStore(new DllResourceStore(@"osu.Game.Resources.dll"));
|
|
|
|
|
2018-07-18 15:43:46 +08:00
|
|
|
dependencies.Cache(contextFactory = new DatabaseContextFactory(Host.Storage));
|
2018-04-13 17:19:50 +08:00
|
|
|
|
2019-01-25 10:41:44 +08:00
|
|
|
var largeStore = new LargeTextureStore(Host.CreateTextureLoaderStore(new NamespacedResourceStore<byte[]>(Resources, @"Textures")));
|
|
|
|
largeStore.AddStore(Host.CreateTextureLoaderStore(new OnlineStore()));
|
2018-09-09 01:41:47 +08:00
|
|
|
dependencies.Cache(largeStore);
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
|
|
dependencies.CacheAs(this);
|
|
|
|
dependencies.Cache(LocalConfig);
|
|
|
|
|
|
|
|
Fonts.AddStore(new GlyphStore(Resources, @"Fonts/osuFont"));
|
|
|
|
Fonts.AddStore(new GlyphStore(Resources, @"Fonts/Exo2.0-Medium"));
|
|
|
|
Fonts.AddStore(new GlyphStore(Resources, @"Fonts/Exo2.0-MediumItalic"));
|
|
|
|
|
|
|
|
Fonts.AddStore(new GlyphStore(Resources, @"Fonts/Noto-Basic"));
|
|
|
|
Fonts.AddStore(new GlyphStore(Resources, @"Fonts/Noto-Hangul"));
|
|
|
|
Fonts.AddStore(new GlyphStore(Resources, @"Fonts/Noto-CJK-Basic"));
|
|
|
|
Fonts.AddStore(new GlyphStore(Resources, @"Fonts/Noto-CJK-Compatibility"));
|
|
|
|
|
|
|
|
Fonts.AddStore(new GlyphStore(Resources, @"Fonts/Exo2.0-Regular"));
|
|
|
|
Fonts.AddStore(new GlyphStore(Resources, @"Fonts/Exo2.0-RegularItalic"));
|
|
|
|
Fonts.AddStore(new GlyphStore(Resources, @"Fonts/Exo2.0-SemiBold"));
|
|
|
|
Fonts.AddStore(new GlyphStore(Resources, @"Fonts/Exo2.0-SemiBoldItalic"));
|
|
|
|
Fonts.AddStore(new GlyphStore(Resources, @"Fonts/Exo2.0-Bold"));
|
|
|
|
Fonts.AddStore(new GlyphStore(Resources, @"Fonts/Exo2.0-BoldItalic"));
|
|
|
|
Fonts.AddStore(new GlyphStore(Resources, @"Fonts/Exo2.0-Light"));
|
|
|
|
Fonts.AddStore(new GlyphStore(Resources, @"Fonts/Exo2.0-LightItalic"));
|
|
|
|
Fonts.AddStore(new GlyphStore(Resources, @"Fonts/Exo2.0-Black"));
|
|
|
|
Fonts.AddStore(new GlyphStore(Resources, @"Fonts/Exo2.0-BlackItalic"));
|
|
|
|
|
|
|
|
Fonts.AddStore(new GlyphStore(Resources, @"Fonts/Venera"));
|
|
|
|
Fonts.AddStore(new GlyphStore(Resources, @"Fonts/Venera-Light"));
|
2019-06-30 08:16:58 +08:00
|
|
|
Fonts.AddStore(new GlyphStore(Resources, @"Fonts/Venera-Medium"));
|
2018-04-13 17:19:50 +08:00
|
|
|
|
2018-09-01 16:39:54 +08:00
|
|
|
runMigrations();
|
|
|
|
|
2019-08-29 15:38:39 +08:00
|
|
|
dependencies.Cache(SkinManager = new SkinManager(Host.Storage, contextFactory, Host, Audio, new NamespacedResourceStore<byte[]>(Resources, "Skins/Legacy")));
|
2018-09-01 16:39:54 +08:00
|
|
|
dependencies.CacheAs<ISkinSource>(SkinManager);
|
|
|
|
|
2018-12-06 11:17:08 +08:00
|
|
|
API = new APIAccess(LocalConfig);
|
2018-09-01 16:39:54 +08:00
|
|
|
|
2018-12-06 11:17:08 +08:00
|
|
|
dependencies.CacheAs<IAPIProvider>(API);
|
2018-09-01 16:39:54 +08:00
|
|
|
|
2019-05-31 13:51:12 +08:00
|
|
|
var defaultBeatmap = new DummyWorkingBeatmap(Audio, Textures);
|
2018-12-25 17:34:45 +08:00
|
|
|
|
2018-09-01 16:39:54 +08:00
|
|
|
dependencies.Cache(RulesetStore = new RulesetStore(contextFactory));
|
|
|
|
dependencies.Cache(FileStore = new FileStore(contextFactory, Host.Storage));
|
2019-05-09 14:15:28 +08:00
|
|
|
|
|
|
|
// ordering is important here to ensure foreign keys rules are not broken in ModelStore.Cleanup()
|
2019-06-12 04:01:57 +08:00
|
|
|
dependencies.Cache(ScoreManager = new ScoreManager(RulesetStore, () => BeatmapManager, Host.Storage, API, contextFactory, Host));
|
2018-12-25 17:34:45 +08:00
|
|
|
dependencies.Cache(BeatmapManager = new BeatmapManager(Host.Storage, contextFactory, RulesetStore, API, Audio, Host, defaultBeatmap));
|
2019-05-09 14:15:28 +08:00
|
|
|
|
|
|
|
// this should likely be moved to ArchiveModelManager when another case appers where it is necessary
|
|
|
|
// to have inter-dependent model managers. this could be obtained with an IHasForeign<T> interface to
|
|
|
|
// allow lookups to be done on the child (ScoreManager in this case) to perform the cascading delete.
|
|
|
|
List<ScoreInfo> getBeatmapScores(BeatmapSetInfo set)
|
|
|
|
{
|
|
|
|
var beatmapIds = BeatmapManager.QueryBeatmaps(b => b.BeatmapSetInfoID == set.ID).Select(b => b.ID).ToList();
|
|
|
|
return ScoreManager.QueryScores(s => beatmapIds.Contains(s.Beatmap.ID)).ToList();
|
|
|
|
}
|
|
|
|
|
|
|
|
BeatmapManager.ItemRemoved += i => ScoreManager.Delete(getBeatmapScores(i), true);
|
2019-06-26 10:40:33 +08:00
|
|
|
BeatmapManager.ItemAdded += i => ScoreManager.Undelete(getBeatmapScores(i), true);
|
2019-05-09 14:15:28 +08:00
|
|
|
|
2018-09-01 16:39:54 +08:00
|
|
|
dependencies.Cache(KeyBindingStore = new KeyBindingStore(contextFactory, RulesetStore));
|
|
|
|
dependencies.Cache(SettingsStore = new SettingsStore(contextFactory));
|
|
|
|
dependencies.Cache(RulesetConfigCache = new RulesetConfigCache(SettingsStore));
|
|
|
|
dependencies.Cache(new OsuColour());
|
|
|
|
|
|
|
|
fileImporters.Add(BeatmapManager);
|
2018-11-28 15:47:10 +08:00
|
|
|
fileImporters.Add(ScoreManager);
|
2018-09-01 16:39:54 +08:00
|
|
|
fileImporters.Add(SkinManager);
|
|
|
|
|
2018-04-13 17:19:50 +08:00
|
|
|
// tracks play so loud our samples can't keep up.
|
|
|
|
// this adds a global reduction of track volume for the time being.
|
2019-05-28 16:06:01 +08:00
|
|
|
Audio.Tracks.AddAdjustment(AdjustableProperty.Volume, new BindableDouble(0.8));
|
2018-04-13 17:19:50 +08:00
|
|
|
|
2019-05-31 13:40:53 +08:00
|
|
|
beatmap = new OsuBindableBeatmap(defaultBeatmap);
|
2019-02-01 14:42:15 +08:00
|
|
|
|
|
|
|
dependencies.CacheAs<IBindable<WorkingBeatmap>>(beatmap);
|
|
|
|
dependencies.CacheAs(beatmap);
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
|
|
FileStore.Cleanup();
|
|
|
|
|
2018-12-06 11:17:08 +08:00
|
|
|
AddInternal(API);
|
2019-09-06 00:13:58 +08:00
|
|
|
AddInternal(RulesetConfigCache);
|
2018-04-22 03:10:06 +08:00
|
|
|
|
|
|
|
GlobalActionContainer globalBinding;
|
|
|
|
|
2018-05-26 03:13:40 +08:00
|
|
|
MenuCursorContainer = new MenuCursorContainer { RelativeSizeAxes = Axes.Both };
|
|
|
|
MenuCursorContainer.Child = globalBinding = new GlobalActionContainer(this)
|
2018-04-22 03:10:06 +08:00
|
|
|
{
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
2018-05-26 03:13:40 +08:00
|
|
|
Child = content = new OsuTooltipContainer(MenuCursorContainer.Cursor) { RelativeSizeAxes = Axes.Both }
|
2018-04-22 03:10:06 +08:00
|
|
|
};
|
|
|
|
|
2019-01-04 12:29:37 +08:00
|
|
|
base.Content.Add(new ScalingContainer(ScalingMode.Everything) { Child = MenuCursorContainer });
|
2018-04-22 03:10:06 +08:00
|
|
|
|
|
|
|
KeyBindingStore.Register(globalBinding);
|
|
|
|
dependencies.Cache(globalBinding);
|
2018-05-09 19:52:46 +08:00
|
|
|
|
|
|
|
PreviewTrackManager previewTrackManager;
|
|
|
|
dependencies.Cache(previewTrackManager = new PreviewTrackManager());
|
|
|
|
Add(previewTrackManager);
|
2018-04-13 17:19:50 +08:00
|
|
|
}
|
|
|
|
|
2018-05-23 13:56:40 +08:00
|
|
|
protected override void LoadComplete()
|
|
|
|
{
|
|
|
|
base.LoadComplete();
|
|
|
|
|
|
|
|
// TODO: This is temporary until we reimplement the local FPS display.
|
|
|
|
// It's just to allow end-users to access the framework FPS display without knowing the shortcut key.
|
|
|
|
fpsDisplayVisible = LocalConfig.GetBindable<bool>(OsuSetting.ShowFpsDisplay);
|
2019-05-14 12:13:51 +08:00
|
|
|
fpsDisplayVisible.ValueChanged += visible => { FrameStatistics.Value = visible.NewValue ? FrameStatisticsMode.Minimal : FrameStatisticsMode.None; };
|
2018-05-23 13:56:40 +08:00
|
|
|
fpsDisplayVisible.TriggerChange();
|
2019-05-14 12:13:51 +08:00
|
|
|
|
|
|
|
FrameStatistics.ValueChanged += e => fpsDisplayVisible.Value = e.NewValue != FrameStatisticsMode.None;
|
2018-05-23 13:56:40 +08:00
|
|
|
}
|
|
|
|
|
2018-04-13 17:19:50 +08:00
|
|
|
private void runMigrations()
|
|
|
|
{
|
|
|
|
try
|
|
|
|
{
|
2018-05-29 09:59:39 +08:00
|
|
|
using (var db = contextFactory.GetForWrite(false))
|
2018-04-13 17:19:50 +08:00
|
|
|
db.Context.Migrate();
|
|
|
|
}
|
2018-06-04 01:07:02 +08:00
|
|
|
catch (Exception e)
|
2018-04-13 17:19:50 +08:00
|
|
|
{
|
|
|
|
Logger.Error(e.InnerException ?? e, "Migration failed! We'll be starting with a fresh database.", LoggingTarget.Database);
|
|
|
|
|
|
|
|
// if we failed, let's delete the database and start fresh.
|
|
|
|
// todo: we probably want a better (non-destructive) migrations/recovery process at a later point than this.
|
|
|
|
contextFactory.ResetDatabase();
|
2018-06-04 01:07:02 +08:00
|
|
|
|
2018-07-24 18:11:20 +08:00
|
|
|
Logger.Log("Database purged successfully.", LoggingTarget.Database);
|
2018-04-13 17:19:50 +08:00
|
|
|
|
2018-06-04 01:07:02 +08:00
|
|
|
// only run once more, then hard bail.
|
2018-05-29 09:59:39 +08:00
|
|
|
using (var db = contextFactory.GetForWrite(false))
|
2018-04-13 17:19:50 +08:00
|
|
|
db.Context.Migrate();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public override void SetHost(GameHost host)
|
|
|
|
{
|
|
|
|
if (LocalConfig == null)
|
|
|
|
LocalConfig = new OsuConfigManager(host.Storage);
|
|
|
|
base.SetHost(host);
|
|
|
|
}
|
|
|
|
|
|
|
|
private readonly List<ICanAcceptFiles> fileImporters = new List<ICanAcceptFiles>();
|
|
|
|
|
2019-05-28 17:59:21 +08:00
|
|
|
public async Task Import(params string[] paths)
|
2018-04-13 17:19:50 +08:00
|
|
|
{
|
2018-09-26 17:44:03 +08:00
|
|
|
var extension = Path.GetExtension(paths.First())?.ToLowerInvariant();
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
|
|
foreach (var importer in fileImporters)
|
2019-01-04 12:29:37 +08:00
|
|
|
if (importer.HandledExtensions.Contains(extension))
|
2019-05-28 17:59:21 +08:00
|
|
|
await importer.Import(paths);
|
2018-04-13 17:19:50 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
public string[] HandledExtensions => fileImporters.SelectMany(i => i.HandledExtensions).ToArray();
|
2018-05-28 16:55:41 +08:00
|
|
|
|
2018-06-06 19:16:20 +08:00
|
|
|
private class OsuBindableBeatmap : BindableBeatmap
|
2018-05-28 16:55:41 +08:00
|
|
|
{
|
2018-12-05 19:42:16 +08:00
|
|
|
public OsuBindableBeatmap(WorkingBeatmap defaultValue)
|
2018-05-28 16:55:41 +08:00
|
|
|
: base(defaultValue)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
}
|
2018-07-09 14:26:22 +08:00
|
|
|
|
|
|
|
private class OsuUserInputManager : UserInputManager
|
|
|
|
{
|
|
|
|
protected override MouseButtonEventManager CreateButtonManagerFor(MouseButton button)
|
|
|
|
{
|
|
|
|
switch (button)
|
|
|
|
{
|
|
|
|
case MouseButton.Right:
|
|
|
|
return new RightMouseManager(button);
|
|
|
|
}
|
|
|
|
|
|
|
|
return base.CreateButtonManagerFor(button);
|
|
|
|
}
|
|
|
|
|
|
|
|
private class RightMouseManager : MouseButtonEventManager
|
|
|
|
{
|
|
|
|
public RightMouseManager(MouseButton button)
|
|
|
|
: base(button)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
public override bool EnableDrag => true; // allow right-mouse dragging for absolute scroll in scroll containers.
|
|
|
|
public override bool EnableClick => false;
|
|
|
|
public override bool ChangeFocusOnClick => false;
|
|
|
|
}
|
|
|
|
}
|
2018-04-13 17:19:50 +08:00
|
|
|
}
|
|
|
|
}
|