1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 00:47:24 +08:00
osu-lazer/osu.Game/OsuGameBase.cs

272 lines
10 KiB
C#
Raw Normal View History

// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
using System;
using System.Diagnostics;
using System.Reflection;
2016-11-09 07:13:20 +08:00
using osu.Framework.Allocation;
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;
using osu.Framework.Graphics.Containers;
using osu.Framework.IO.Stores;
using osu.Framework.Platform;
2016-10-28 18:55:48 +08:00
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;
2017-10-20 07:01:45 +08:00
using osu.Framework.Logging;
using osu.Game.Database;
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;
using osu.Game.IO;
2017-07-26 12:22:46 +08:00
using osu.Game.Rulesets;
using osu.Game.Rulesets.Scoring;
namespace osu.Game
{
2017-02-23 14:38:17 +08:00
public class OsuGameBase : Framework.Game, IOnlineComponent
{
protected OsuConfigManager LocalConfig;
protected BeatmapManager BeatmapManager;
2017-02-24 17:10:37 +08:00
protected RulesetStore RulesetStore;
2017-04-17 16:43:48 +08:00
protected FileStore FileStore;
protected ScoreStore ScoreStore;
2017-03-04 18:02:36 +08:00
protected KeyBindingStore KeyBindingStore;
2017-08-09 11:37:47 +08:00
protected override string MainResourceFile => @"osu.Game.Resources.dll";
public APIAccess API;
private Container content;
protected override Container<Drawable> Content => content;
2017-03-16 22:58:36 +08:00
protected MenuCursor Cursor;
2016-10-06 20:09:18 +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
private Bindable<bool> fpsDisplayVisible;
2017-03-07 09:59:19 +08:00
protected AssemblyName AssemblyName => Assembly.GetEntryAssembly()?.GetName() ?? new AssemblyName { Version = new Version() };
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");
var assembly = AssemblyName;
return $@"{assembly.Version.Major}.{assembly.Version.Minor}.{assembly.Version.Build}";
}
}
public OsuGameBase()
{
Name = @"osu!lazer";
}
private DependencyContainer dependencies;
protected override IReadOnlyDependencyContainer CreateLocalDependencies(IReadOnlyDependencyContainer parent) =>
dependencies = new DependencyContainer(base.CreateLocalDependencies(parent));
private DatabaseContextFactory contextFactory;
[BackgroundDependencyLoader]
private void load()
{
dependencies.Cache(contextFactory = new DatabaseContextFactory(Host));
dependencies.Cache(this);
dependencies.Cache(LocalConfig);
2017-10-20 07:01:38 +08:00
runMigrations();
dependencies.Cache(API = new APIAccess
{
Username = LocalConfig.Get<string>(OsuSetting.Username),
Token = LocalConfig.Get<string>(OsuSetting.Token)
});
dependencies.Cache(RulesetStore = new RulesetStore(contextFactory.GetContext));
dependencies.Cache(FileStore = new FileStore(contextFactory.GetContext, Host.Storage));
dependencies.Cache(BeatmapManager = new BeatmapManager(Host.Storage, contextFactory.GetContext, RulesetStore, API, Host));
dependencies.Cache(ScoreStore = new ScoreStore(Host.Storage, contextFactory.GetContext, Host, BeatmapManager, RulesetStore));
dependencies.Cache(KeyBindingStore = new KeyBindingStore(contextFactory.GetContext, RulesetStore));
dependencies.Cache(new OsuColour());
//this completely overrides the framework default. will need to change once we make a proper FontStore.
dependencies.Cache(Fonts = new FontStore { ScaleAdjust = 100 }, true);
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
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"));
2017-04-19 16:32:18 +08:00
Fonts.AddStore(new GlyphStore(Resources, @"Fonts/Venera-Light"));
2017-07-19 12:32:16 +08:00
var defaultBeatmap = new DummyWorkingBeatmap(this);
Beatmap = new NonNullableBindable<WorkingBeatmap>(defaultBeatmap);
BeatmapManager.DefaultBeatmap = defaultBeatmap;
2017-07-19 12:32:16 +08:00
Beatmap.ValueChanged += b =>
{
var trackLoaded = lastBeatmap?.TrackLoaded ?? false;
// compare to last beatmap as sometimes the two may share a track representation (optimisation, see WorkingBeatmap.TransferTo)
if (!trackLoaded || lastBeatmap?.Track != b.Track)
{
if (trackLoaded)
{
Debug.Assert(lastBeatmap != null);
Debug.Assert(lastBeatmap.Track != null);
lastBeatmap.DisposeTrack();
}
Audio.Track.AddItem(b.Track);
}
lastBeatmap = b;
};
API.Register(this);
FileStore.Cleanup();
}
2017-10-20 07:01:38 +08:00
private void runMigrations()
{
try
{
using (var context = contextFactory.GetContext())
context.Migrate();
}
2017-10-20 07:01:45 +08:00
catch (MigrationFailedException e)
2017-10-20 07:01:38 +08:00
{
Logger.Log((e.InnerException ?? e).ToString(), LoggingTarget.Database, LogLevel.Error);
2017-10-20 07:01:45 +08:00
Logger.Log("Migration failed! We'll be starting with a fresh database.", LoggingTarget.Database, LogLevel.Error);
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.
int retries = 20;
while (retries-- > 0)
{
try
{
using (var context = contextFactory.GetContext())
{
context.Database.EnsureDeleted();
2017-10-20 07:01:45 +08:00
Logger.Log("Database purged successfully.", LoggingTarget.Database, LogLevel.Important);
2017-10-20 07:01:38 +08:00
break;
}
}
catch
{
}
}
using (var context = contextFactory.GetContext())
context.Migrate();
}
}
private WorkingBeatmap lastBeatmap;
public void APIStateChanged(APIAccess api, APIState state)
{
switch (state)
{
case APIState.Online:
2017-05-15 09:56:27 +08:00
LocalConfig.Set(OsuSetting.Username, LocalConfig.Get<bool>(OsuSetting.SaveUsername) ? API.Username : string.Empty);
break;
}
}
protected override void LoadComplete()
{
base.LoadComplete();
2017-08-16 16:34:49 +08:00
GlobalKeyBindingInputManager globalBinding;
2017-10-12 15:42:06 +08:00
base.Content.Add(new DrawSizePreservingFillContainer
{
2017-04-20 06:42:40 +08:00
Children = new Drawable[]
{
Cursor = new MenuCursor(),
2017-08-16 16:34:49 +08:00
globalBinding = new GlobalKeyBindingInputManager(this)
2017-04-20 19:27:53 +08:00
{
RelativeSizeAxes = Axes.Both,
2017-09-14 14:41:32 +08:00
Child = content = new OsuTooltipContainer(Cursor)
2017-04-20 19:27:53 +08:00
{
RelativeSizeAxes = Axes.Both,
}
}
}
});
KeyBindingStore.Register(globalBinding);
dependencies.Cache(globalBinding);
// 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);
fpsDisplayVisible.ValueChanged += val => { FrameStatisticsMode = val ? FrameStatisticsMode.Minimal : FrameStatisticsMode.None; };
fpsDisplayVisible.TriggerChange();
}
2017-02-23 14:38:17 +08:00
public override void SetHost(GameHost host)
{
if (LocalConfig == null)
LocalConfig = new OsuConfigManager(host.Storage);
base.SetHost(host);
}
2016-09-27 18:22:02 +08:00
protected override void Update()
{
base.Update();
API.Update();
}
protected override void Dispose(bool isDisposing)
{
//refresh token may have changed.
if (LocalConfig != null && API != null)
{
2017-05-15 09:56:27 +08:00
LocalConfig.Set(OsuSetting.Token, LocalConfig.Get<bool>(OsuSetting.SavePassword) ? API.Token : string.Empty);
LocalConfig.Save();
}
base.Dispose(isDisposing);
}
}
}