2017-02-07 12:59:30 +08:00
|
|
|
|
// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
|
|
|
|
|
// 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;
|
2017-03-06 16:09:48 +08:00
|
|
|
|
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;
|
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.Graphics.Processing;
|
|
|
|
|
using osu.Game.Online.API;
|
2017-04-17 13:37:52 +08:00
|
|
|
|
using SQLite.Net;
|
2017-05-03 19:34:53 +08:00
|
|
|
|
using osu.Framework.Graphics.Performance;
|
2017-07-27 19:38:35 +08:00
|
|
|
|
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;
|
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;
|
2016-09-23 23:39:20 +08:00
|
|
|
|
|
|
|
|
|
namespace osu.Game
|
|
|
|
|
{
|
2017-02-23 14:38:17 +08:00
|
|
|
|
public class OsuGameBase : Framework.Game, IOnlineComponent
|
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
|
|
|
|
|
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
|
|
|
|
|
2016-09-23 23:39:20 +08:00
|
|
|
|
protected override string MainResourceFile => @"osu.Game.Resources.dll";
|
|
|
|
|
|
2016-09-27 17:31:36 +08:00
|
|
|
|
public APIAccess API;
|
2016-09-23 23:39:20 +08:00
|
|
|
|
|
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-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
|
|
|
|
|
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 bool IsDebug
|
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
2017-03-09 14:52:40 +08:00
|
|
|
|
// ReSharper disable once RedundantAssignment
|
2017-03-06 16:09:48 +08:00
|
|
|
|
bool isDebug = false;
|
2017-03-07 02:59:29 +08:00
|
|
|
|
// Debug.Assert conditions are only evaluated in debug mode
|
2017-03-06 16:09:48 +08:00
|
|
|
|
Debug.Assert(isDebug = true);
|
2017-03-07 09:59:19 +08:00
|
|
|
|
// ReSharper disable once ConditionIsAlwaysTrueOrFalse
|
2017-03-06 16:09:48 +08:00
|
|
|
|
return isDebug;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public string Version
|
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
|
|
|
|
if (!IsDeployedBuild)
|
2017-03-07 02:59:29 +08:00
|
|
|
|
return @"local " + (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-08-21 12:05:06 +08:00
|
|
|
|
private SQLiteConnection connection;
|
|
|
|
|
|
2016-11-12 18:44:16 +08:00
|
|
|
|
[BackgroundDependencyLoader]
|
|
|
|
|
private void load()
|
2016-09-23 23:39:20 +08:00
|
|
|
|
{
|
2017-07-22 01:03:43 +08:00
|
|
|
|
dependencies.Cache(this);
|
|
|
|
|
dependencies.Cache(LocalConfig);
|
2017-04-17 13:37:52 +08:00
|
|
|
|
|
2017-08-21 12:05:06 +08:00
|
|
|
|
connection = Host.Storage.GetDatabase(@"client");
|
2017-04-17 13:37:52 +08:00
|
|
|
|
|
2017-07-27 19:38:35 +08:00
|
|
|
|
connection.CreateTable<StoreVersion>();
|
|
|
|
|
|
2017-07-27 15:56:41 +08:00
|
|
|
|
dependencies.Cache(RulesetStore = new RulesetStore(connection));
|
|
|
|
|
dependencies.Cache(FileStore = new FileStore(connection, Host.Storage));
|
|
|
|
|
dependencies.Cache(BeatmapManager = new BeatmapManager(Host.Storage, FileStore, connection, RulesetStore, Host));
|
2017-08-08 23:17:53 +08:00
|
|
|
|
dependencies.Cache(ScoreStore = new ScoreStore(Host.Storage, connection, Host, BeatmapManager, RulesetStore));
|
2017-08-14 21:31:23 +08:00
|
|
|
|
dependencies.Cache(KeyBindingStore = new KeyBindingStore(connection, RulesetStore));
|
2017-07-22 01:03:43 +08:00
|
|
|
|
dependencies.Cache(new OsuColour());
|
2016-12-01 15:44:24 +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.
|
2017-07-22 01:03:43 +08:00
|
|
|
|
dependencies.Cache(Fonts = new FontStore { ScaleAdjust = 100 }, true);
|
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-07-22 01:03:43 +08:00
|
|
|
|
dependencies.Cache(API = new APIAccess
|
2016-09-23 23:39:20 +08:00
|
|
|
|
{
|
2017-05-15 09:56:27 +08:00
|
|
|
|
Username = LocalConfig.Get<string>(OsuSetting.Username),
|
|
|
|
|
Token = LocalConfig.Get<string>(OsuSetting.Token)
|
2016-11-09 07:46:08 +08:00
|
|
|
|
});
|
2016-11-30 18:22:36 +08:00
|
|
|
|
|
2017-07-20 15:45:44 +08:00
|
|
|
|
Beatmap.ValueChanged += b =>
|
|
|
|
|
{
|
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-07-20 16:46:23 +08:00
|
|
|
|
if (lastBeatmap?.Track != b.Track)
|
|
|
|
|
{
|
2017-08-25 12:04:32 +08:00
|
|
|
|
lastBeatmap?.Track?.Dispose();
|
2017-07-20 16:46:23 +08:00
|
|
|
|
Audio.Track.AddItem(b.Track);
|
|
|
|
|
}
|
|
|
|
|
|
2017-07-20 15:45:44 +08:00
|
|
|
|
lastBeatmap = b;
|
|
|
|
|
};
|
|
|
|
|
|
2016-12-01 15:44:24 +08:00
|
|
|
|
API.Register(this);
|
2016-11-30 18:22:36 +08:00
|
|
|
|
}
|
|
|
|
|
|
2017-07-20 15:45:44 +08:00
|
|
|
|
private WorkingBeatmap lastBeatmap;
|
|
|
|
|
|
2016-12-01 15:44:24 +08:00
|
|
|
|
public void APIStateChanged(APIAccess api, APIState state)
|
2016-11-30 18:22:36 +08:00
|
|
|
|
{
|
2016-12-01 15:44:24 +08:00
|
|
|
|
switch (state)
|
2016-11-30 18:22:36 +08:00
|
|
|
|
{
|
|
|
|
|
case APIState.Online:
|
2017-05-15 09:56:27 +08:00
|
|
|
|
LocalConfig.Set(OsuSetting.Username, LocalConfig.Get<bool>(OsuSetting.SaveUsername) ? API.Username : string.Empty);
|
2016-11-30 18:22:36 +08:00
|
|
|
|
break;
|
|
|
|
|
}
|
2016-09-23 23:39:20 +08:00
|
|
|
|
}
|
2016-09-27 17:31:36 +08:00
|
|
|
|
|
2016-11-13 01:34:36 +08:00
|
|
|
|
protected override void LoadComplete()
|
|
|
|
|
{
|
|
|
|
|
base.LoadComplete();
|
|
|
|
|
|
2017-08-16 16:34:49 +08:00
|
|
|
|
GlobalKeyBindingInputManager globalBinding;
|
2017-08-14 19:19:25 +08:00
|
|
|
|
|
2017-07-06 20:15:12 +08:00
|
|
|
|
base.Content.Add(new RatioAdjust
|
2016-11-13 01:34:36 +08:00
|
|
|
|
{
|
2017-04-20 06:42:40 +08:00
|
|
|
|
Children = new Drawable[]
|
2016-11-13 01:34:36 +08:00
|
|
|
|
{
|
2017-07-06 20:15:12 +08:00
|
|
|
|
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-08-09 16:10:32 +08:00
|
|
|
|
Child = new OsuTooltipContainer(Cursor)
|
2017-04-20 19:27:53 +08:00
|
|
|
|
{
|
2017-07-06 20:15:12 +08:00
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
2017-08-09 16:10:32 +08:00
|
|
|
|
Child = content = new OsuContextMenuContainer { RelativeSizeAxes = Axes.Both },
|
|
|
|
|
}
|
2017-07-06 20:15:12 +08:00
|
|
|
|
}
|
2016-11-13 01:34:36 +08:00
|
|
|
|
}
|
|
|
|
|
});
|
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-05-03 19:34:53 +08:00
|
|
|
|
fpsDisplayVisible.ValueChanged += val =>
|
|
|
|
|
{
|
|
|
|
|
FrameStatisticsMode = val ? FrameStatisticsMode.Minimal : FrameStatisticsMode.None;
|
|
|
|
|
};
|
|
|
|
|
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);
|
|
|
|
|
}
|
|
|
|
|
|
2016-09-27 18:22:02 +08:00
|
|
|
|
protected override void Update()
|
|
|
|
|
{
|
|
|
|
|
base.Update();
|
|
|
|
|
API.Update();
|
|
|
|
|
}
|
|
|
|
|
|
2016-09-27 17:31:36 +08:00
|
|
|
|
protected override void Dispose(bool isDisposing)
|
|
|
|
|
{
|
|
|
|
|
//refresh token may have changed.
|
2017-01-25 17:39:41 +08:00
|
|
|
|
if (LocalConfig != null && API != null)
|
2016-10-15 02:10:01 +08:00
|
|
|
|
{
|
2017-05-15 09:56:27 +08:00
|
|
|
|
LocalConfig.Set(OsuSetting.Token, LocalConfig.Get<bool>(OsuSetting.SavePassword) ? API.Token : string.Empty);
|
2017-01-25 17:39:41 +08:00
|
|
|
|
LocalConfig.Save();
|
2016-10-15 02:10:01 +08:00
|
|
|
|
}
|
2016-09-27 17:31:36 +08:00
|
|
|
|
|
2017-08-21 12:05:06 +08:00
|
|
|
|
connection.Dispose();
|
|
|
|
|
|
2016-09-27 17:31:36 +08:00
|
|
|
|
base.Dispose(isDisposing);
|
|
|
|
|
}
|
2016-09-23 23:39:20 +08:00
|
|
|
|
}
|
|
|
|
|
}
|