2018-02-22 16:16:48 +08:00
|
|
|
// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
|
2017-02-07 12:59:30 +08:00
|
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
2016-12-03 20:56:35 +08:00
|
|
|
|
2017-03-06 17:36:46 +08:00
|
|
|
using System;
|
2018-02-15 13:19:16 +08:00
|
|
|
using System.Collections.Generic;
|
2017-03-06 16:09:48 +08:00
|
|
|
using System.Diagnostics;
|
2018-02-15 13:19:16 +08:00
|
|
|
using System.IO;
|
|
|
|
using System.Linq;
|
2017-03-06 16:09:48 +08:00
|
|
|
using System.Reflection;
|
2016-11-09 07:13:20 +08:00
|
|
|
using osu.Framework.Allocation;
|
2017-11-26 16:07:35 +08:00
|
|
|
using osu.Framework.Audio;
|
2016-10-28 18:55:48 +08:00
|
|
|
using osu.Framework.Configuration;
|
2017-09-19 12:29:50 +08:00
|
|
|
using osu.Framework.Development;
|
2016-09-30 17:45:27 +08:00
|
|
|
using osu.Framework.Graphics;
|
2016-09-23 23:39:20 +08:00
|
|
|
using osu.Framework.Graphics.Containers;
|
|
|
|
using osu.Framework.IO.Stores;
|
2016-11-01 02:44:20 +08:00
|
|
|
using osu.Framework.Platform;
|
2016-10-28 18:55:48 +08:00
|
|
|
using osu.Game.Beatmaps;
|
2016-09-23 23:39:20 +08:00
|
|
|
using osu.Game.Configuration;
|
2017-01-13 12:49:05 +08:00
|
|
|
using osu.Game.Graphics;
|
2016-09-28 16:32:38 +08:00
|
|
|
using osu.Game.Graphics.Cursor;
|
2016-09-23 23:39:20 +08:00
|
|
|
using osu.Game.Online.API;
|
2017-05-03 19:34:53 +08:00
|
|
|
using osu.Framework.Graphics.Performance;
|
2017-12-31 05:40:28 +08:00
|
|
|
using osu.Framework.Graphics.Textures;
|
2017-10-20 07:01:45 +08:00
|
|
|
using osu.Framework.Logging;
|
2017-07-27 19:38:35 +08:00
|
|
|
using osu.Game.Database;
|
2017-12-31 05:40:28 +08:00
|
|
|
using osu.Game.Graphics.Textures;
|
2017-08-09 11:37:47 +08:00
|
|
|
using osu.Game.Input;
|
2017-08-11 15:11:46 +08:00
|
|
|
using osu.Game.Input.Bindings;
|
2017-07-26 19:22:02 +08:00
|
|
|
using osu.Game.IO;
|
2017-07-26 12:22:46 +08:00
|
|
|
using osu.Game.Rulesets;
|
|
|
|
using osu.Game.Rulesets.Scoring;
|
2018-02-15 12:45:39 +08:00
|
|
|
using osu.Game.Skinning;
|
2016-09-23 23:39:20 +08:00
|
|
|
|
|
|
|
namespace osu.Game
|
|
|
|
{
|
2018-03-14 08:48:03 +08:00
|
|
|
public class OsuGameBase : Framework.Game, ICanAcceptFiles
|
2016-09-23 23:39:20 +08:00
|
|
|
{
|
2017-01-25 17:39:41 +08:00
|
|
|
protected OsuConfigManager LocalConfig;
|
2016-09-23 23:39:20 +08:00
|
|
|
|
2017-07-27 15:56:41 +08:00
|
|
|
protected BeatmapManager BeatmapManager;
|
2017-02-24 17:10:37 +08:00
|
|
|
|
2018-02-15 12:45:39 +08:00
|
|
|
protected SkinManager SkinManager;
|
|
|
|
|
2017-07-27 15:56:41 +08:00
|
|
|
protected RulesetStore RulesetStore;
|
2017-04-17 16:43:48 +08:00
|
|
|
|
2017-07-27 15:56:41 +08:00
|
|
|
protected FileStore FileStore;
|
2017-07-26 19:22:02 +08:00
|
|
|
|
2017-07-27 15:56:41 +08:00
|
|
|
protected ScoreStore ScoreStore;
|
2017-03-04 18:02:36 +08:00
|
|
|
|
2017-08-14 19:19:25 +08:00
|
|
|
protected KeyBindingStore KeyBindingStore;
|
2017-08-09 11:37:47 +08:00
|
|
|
|
2018-01-24 17:01:39 +08:00
|
|
|
protected SettingsStore SettingsStore;
|
|
|
|
|
2018-01-15 13:00:13 +08:00
|
|
|
protected CursorOverrideContainer CursorOverrideContainer;
|
2018-01-12 18:34:55 +08:00
|
|
|
|
2016-09-23 23:39:20 +08:00
|
|
|
protected override string MainResourceFile => @"osu.Game.Resources.dll";
|
|
|
|
|
2017-07-06 20:15:12 +08:00
|
|
|
private Container content;
|
2016-09-23 23:39:20 +08:00
|
|
|
|
2017-07-06 20:15:12 +08:00
|
|
|
protected override Container<Drawable> Content => content;
|
2016-09-23 23:39:20 +08:00
|
|
|
|
2017-07-19 12:32:16 +08:00
|
|
|
public Bindable<WorkingBeatmap> Beatmap { get; private set; }
|
2016-10-28 18:55:48 +08:00
|
|
|
|
2017-05-03 19:34:53 +08:00
|
|
|
private Bindable<bool> fpsDisplayVisible;
|
|
|
|
|
2017-03-07 09:59:19 +08:00
|
|
|
protected AssemblyName AssemblyName => Assembly.GetEntryAssembly()?.GetName() ?? new AssemblyName { Version = new Version() };
|
2017-03-06 16:09:48 +08:00
|
|
|
|
|
|
|
public bool IsDeployedBuild => AssemblyName.Version.Major > 0;
|
|
|
|
|
|
|
|
public string Version
|
|
|
|
{
|
|
|
|
get
|
|
|
|
{
|
|
|
|
if (!IsDeployedBuild)
|
2017-09-19 12:29:50 +08:00
|
|
|
return @"local " + (DebugUtils.IsDebug ? @"debug" : @"release");
|
2017-03-06 16:09:48 +08:00
|
|
|
|
|
|
|
var assembly = AssemblyName;
|
|
|
|
return $@"{assembly.Version.Major}.{assembly.Version.Minor}.{assembly.Version.Build}";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public OsuGameBase()
|
|
|
|
{
|
|
|
|
Name = @"osu!lazer";
|
|
|
|
}
|
|
|
|
|
2017-07-22 01:03:43 +08:00
|
|
|
private DependencyContainer dependencies;
|
|
|
|
|
|
|
|
protected override IReadOnlyDependencyContainer CreateLocalDependencies(IReadOnlyDependencyContainer parent) =>
|
|
|
|
dependencies = new DependencyContainer(base.CreateLocalDependencies(parent));
|
|
|
|
|
2017-10-17 14:00:27 +08:00
|
|
|
private DatabaseContextFactory contextFactory;
|
2017-09-23 19:22:53 +08:00
|
|
|
|
2016-11-12 18:44:16 +08:00
|
|
|
[BackgroundDependencyLoader]
|
|
|
|
private void load()
|
2016-09-23 23:39:20 +08:00
|
|
|
{
|
2017-10-17 14:00:27 +08:00
|
|
|
dependencies.Cache(contextFactory = new DatabaseContextFactory(Host));
|
|
|
|
|
2017-12-31 11:22:17 +08:00
|
|
|
dependencies.Cache(new LargeTextureStore(new RawTextureLoaderStore(new NamespacedResourceStore<byte[]>(Resources, @"Textures"))));
|
2017-12-31 05:40:28 +08:00
|
|
|
|
2018-01-29 14:05:07 +08:00
|
|
|
dependencies.CacheAs(this);
|
2017-07-22 01:03:43 +08:00
|
|
|
dependencies.Cache(LocalConfig);
|
2017-04-17 13:37:52 +08:00
|
|
|
|
2017-10-20 07:01:38 +08:00
|
|
|
runMigrations();
|
2017-07-27 19:38:35 +08:00
|
|
|
|
2018-02-22 16:16:48 +08:00
|
|
|
dependencies.Cache(SkinManager = new SkinManager(Host.Storage, contextFactory, Host, Audio));
|
2018-03-20 15:26:36 +08:00
|
|
|
dependencies.CacheAs<ISkinSource>(SkinManager);
|
2018-02-15 12:45:39 +08:00
|
|
|
|
2018-03-14 09:42:58 +08:00
|
|
|
var api = new APIAccess(LocalConfig);
|
|
|
|
|
|
|
|
dependencies.Cache(api);
|
|
|
|
dependencies.CacheAs<IAPIProvider>(api);
|
2017-09-09 01:07:28 +08:00
|
|
|
|
2018-02-12 16:55:11 +08:00
|
|
|
dependencies.Cache(RulesetStore = new RulesetStore(contextFactory));
|
|
|
|
dependencies.Cache(FileStore = new FileStore(contextFactory, Host.Storage));
|
2018-03-15 23:14:29 +08:00
|
|
|
dependencies.Cache(BeatmapManager = new BeatmapManager(Host.Storage, contextFactory, RulesetStore, api, Audio, Host));
|
2018-02-12 16:55:11 +08:00
|
|
|
dependencies.Cache(ScoreStore = new ScoreStore(Host.Storage, contextFactory, Host, BeatmapManager, RulesetStore));
|
|
|
|
dependencies.Cache(KeyBindingStore = new KeyBindingStore(contextFactory, RulesetStore));
|
|
|
|
dependencies.Cache(SettingsStore = new SettingsStore(contextFactory));
|
2017-07-22 01:03:43 +08:00
|
|
|
dependencies.Cache(new OsuColour());
|
2016-12-01 15:44:24 +08:00
|
|
|
|
2018-02-15 13:19:16 +08:00
|
|
|
fileImporters.Add(BeatmapManager);
|
2018-02-19 14:52:14 +08:00
|
|
|
fileImporters.Add(ScoreStore);
|
2018-02-15 12:45:39 +08:00
|
|
|
fileImporters.Add(SkinManager);
|
2018-02-15 13:19:16 +08:00
|
|
|
|
2016-09-23 23:39:20 +08:00
|
|
|
//this completely overrides the framework default. will need to change once we make a proper FontStore.
|
2018-01-22 11:56:30 +08:00
|
|
|
dependencies.Cache(Fonts = new FontStore { ScaleAdjust = 100 });
|
2016-11-04 17:08:43 +08:00
|
|
|
|
2016-09-23 23:39:20 +08:00
|
|
|
Fonts.AddStore(new GlyphStore(Resources, @"Fonts/FontAwesome"));
|
|
|
|
Fonts.AddStore(new GlyphStore(Resources, @"Fonts/osuFont"));
|
2016-11-15 15:55:11 +08:00
|
|
|
Fonts.AddStore(new GlyphStore(Resources, @"Fonts/Exo2.0-Medium"));
|
|
|
|
Fonts.AddStore(new GlyphStore(Resources, @"Fonts/Exo2.0-MediumItalic"));
|
|
|
|
|
2017-04-03 13:41:46 +08:00
|
|
|
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"));
|
2017-02-09 09:35:25 +08:00
|
|
|
|
2016-11-04 17:08:43 +08:00
|
|
|
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"));
|
2016-11-09 07:51:39 +08:00
|
|
|
|
2016-11-16 18:24:48 +08:00
|
|
|
Fonts.AddStore(new GlyphStore(Resources, @"Fonts/Venera"));
|
2017-04-19 16:32:18 +08:00
|
|
|
Fonts.AddStore(new GlyphStore(Resources, @"Fonts/Venera-Light"));
|
2016-11-16 18:24:48 +08:00
|
|
|
|
2017-07-19 12:32:16 +08:00
|
|
|
var defaultBeatmap = new DummyWorkingBeatmap(this);
|
|
|
|
Beatmap = new NonNullableBindable<WorkingBeatmap>(defaultBeatmap);
|
2017-07-27 15:56:41 +08:00
|
|
|
BeatmapManager.DefaultBeatmap = defaultBeatmap;
|
2017-07-19 12:32:16 +08:00
|
|
|
|
2017-11-26 16:07:35 +08:00
|
|
|
// tracks play so loud our samples can't keep up.
|
|
|
|
// this adds a global reduction of track volume for the time being.
|
|
|
|
Audio.Track.AddAdjustment(AdjustableProperty.Volume, new BindableDouble(0.8));
|
|
|
|
|
2017-07-20 15:45:44 +08:00
|
|
|
Beatmap.ValueChanged += b =>
|
|
|
|
{
|
2017-09-12 15:55:48 +08:00
|
|
|
var trackLoaded = lastBeatmap?.TrackLoaded ?? false;
|
|
|
|
|
2017-08-25 12:04:32 +08:00
|
|
|
// compare to last beatmap as sometimes the two may share a track representation (optimisation, see WorkingBeatmap.TransferTo)
|
2017-09-12 15:55:48 +08:00
|
|
|
if (!trackLoaded || lastBeatmap?.Track != b.Track)
|
2017-07-20 16:46:23 +08:00
|
|
|
{
|
2017-09-12 15:55:48 +08:00
|
|
|
if (trackLoaded)
|
|
|
|
{
|
|
|
|
Debug.Assert(lastBeatmap != null);
|
|
|
|
Debug.Assert(lastBeatmap.Track != null);
|
|
|
|
|
2017-11-30 04:05:07 +08:00
|
|
|
lastBeatmap.RecycleTrack();
|
2017-09-12 15:55:48 +08:00
|
|
|
}
|
|
|
|
|
2017-07-20 16:46:23 +08:00
|
|
|
Audio.Track.AddItem(b.Track);
|
|
|
|
}
|
|
|
|
|
2017-07-20 15:45:44 +08:00
|
|
|
lastBeatmap = b;
|
|
|
|
};
|
|
|
|
|
2017-10-17 18:58:33 +08:00
|
|
|
FileStore.Cleanup();
|
2018-03-14 09:42:58 +08:00
|
|
|
|
|
|
|
AddInternal(api);
|
2016-11-30 18:22:36 +08:00
|
|
|
}
|
|
|
|
|
2017-10-20 07:01:38 +08:00
|
|
|
private void runMigrations()
|
|
|
|
{
|
|
|
|
try
|
|
|
|
{
|
2018-02-12 16:55:11 +08:00
|
|
|
using (var db = contextFactory.GetForWrite())
|
|
|
|
db.Context.Migrate();
|
2017-10-20 07:01:38 +08:00
|
|
|
}
|
2017-10-20 07:01:45 +08:00
|
|
|
catch (MigrationFailedException e)
|
2017-10-20 07:01:38 +08:00
|
|
|
{
|
2017-12-25 17:21:15 +08:00
|
|
|
Logger.Error(e.InnerException ?? e, "Migration failed! We'll be starting with a fresh database.", LoggingTarget.Database);
|
2017-10-20 07:01:45 +08:00
|
|
|
|
2017-10-20 07:01:38 +08:00
|
|
|
// 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.
|
2017-10-20 23:15:02 +08:00
|
|
|
contextFactory.ResetDatabase();
|
|
|
|
Logger.Log("Database purged successfully.", LoggingTarget.Database, LogLevel.Important);
|
2017-10-20 07:01:38 +08:00
|
|
|
|
2018-02-12 16:55:11 +08:00
|
|
|
using (var db = contextFactory.GetForWrite())
|
|
|
|
db.Context.Migrate();
|
2017-10-20 07:01:38 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-07-20 15:45:44 +08:00
|
|
|
private WorkingBeatmap lastBeatmap;
|
|
|
|
|
2016-11-13 01:34:36 +08:00
|
|
|
protected override void LoadComplete()
|
|
|
|
{
|
|
|
|
base.LoadComplete();
|
|
|
|
|
2018-01-30 13:54:30 +08:00
|
|
|
GlobalActionContainer globalBinding;
|
2017-08-14 19:19:25 +08:00
|
|
|
|
2018-01-15 13:00:13 +08:00
|
|
|
CursorOverrideContainer = new CursorOverrideContainer { RelativeSizeAxes = Axes.Both };
|
2018-01-30 13:54:30 +08:00
|
|
|
CursorOverrideContainer.Child = globalBinding = new GlobalActionContainer(this)
|
2016-11-13 01:34:36 +08:00
|
|
|
{
|
2018-01-12 17:13:17 +08:00
|
|
|
RelativeSizeAxes = Axes.Both,
|
2018-02-12 14:39:13 +08:00
|
|
|
Child = content = new OsuTooltipContainer(CursorOverrideContainer.Cursor) { RelativeSizeAxes = Axes.Both }
|
2018-01-12 17:13:17 +08:00
|
|
|
};
|
|
|
|
|
2018-01-15 13:00:13 +08:00
|
|
|
base.Content.Add(new DrawSizePreservingFillContainer { Child = CursorOverrideContainer });
|
2017-05-03 19:34:53 +08:00
|
|
|
|
2017-08-15 22:59:58 +08:00
|
|
|
KeyBindingStore.Register(globalBinding);
|
2017-08-14 19:19:25 +08:00
|
|
|
dependencies.Cache(globalBinding);
|
|
|
|
|
2017-05-03 19:34:53 +08:00
|
|
|
// 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.
|
2017-05-15 09:56:27 +08:00
|
|
|
fpsDisplayVisible = LocalConfig.GetBindable<bool>(OsuSetting.ShowFpsDisplay);
|
2017-10-19 20:37:09 +08:00
|
|
|
fpsDisplayVisible.ValueChanged += val => { FrameStatisticsMode = val ? FrameStatisticsMode.Minimal : FrameStatisticsMode.None; };
|
2017-05-03 19:34:53 +08:00
|
|
|
fpsDisplayVisible.TriggerChange();
|
2016-11-13 01:34:36 +08:00
|
|
|
}
|
|
|
|
|
2017-02-23 14:38:17 +08:00
|
|
|
public override void SetHost(GameHost host)
|
2016-11-01 02:44:20 +08:00
|
|
|
{
|
2017-01-25 17:39:41 +08:00
|
|
|
if (LocalConfig == null)
|
|
|
|
LocalConfig = new OsuConfigManager(host.Storage);
|
2016-11-01 02:44:20 +08:00
|
|
|
base.SetHost(host);
|
|
|
|
}
|
|
|
|
|
2018-02-15 13:19:16 +08:00
|
|
|
private readonly List<ICanAcceptFiles> fileImporters = new List<ICanAcceptFiles>();
|
|
|
|
|
|
|
|
public void Import(params string[] paths)
|
|
|
|
{
|
|
|
|
var extension = Path.GetExtension(paths.First());
|
|
|
|
|
|
|
|
foreach (var importer in fileImporters)
|
|
|
|
if (importer.HandledExtensions.Contains(extension)) importer.Import(paths);
|
|
|
|
}
|
|
|
|
|
|
|
|
public string[] HandledExtensions => fileImporters.SelectMany(i => i.HandledExtensions).ToArray();
|
2016-09-23 23:39:20 +08:00
|
|
|
}
|
|
|
|
}
|