2016-10-28 18:55:48 +08:00
|
|
|
|
using System;
|
|
|
|
|
using osu.Framework;
|
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-10-10 16:17:26 +08:00
|
|
|
|
using osu.Framework.GameModes;
|
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.Graphics.Cursor;
|
|
|
|
|
using osu.Framework.Graphics.Textures;
|
|
|
|
|
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-10-08 03:09:52 +08:00
|
|
|
|
using osu.Game.Beatmaps.IO;
|
2016-09-23 23:39:20 +08:00
|
|
|
|
using osu.Game.Configuration;
|
2016-10-04 23:31:10 +08:00
|
|
|
|
using osu.Game.Database;
|
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;
|
2016-10-21 17:25:22 +08:00
|
|
|
|
using osu.Game.IPC;
|
2016-09-23 23:39:20 +08:00
|
|
|
|
using osu.Game.Online.API;
|
2016-09-29 19:13:58 +08:00
|
|
|
|
using osu.Game.Overlays;
|
2016-09-23 23:39:20 +08:00
|
|
|
|
|
|
|
|
|
namespace osu.Game
|
|
|
|
|
{
|
2016-10-12 18:52:49 +08:00
|
|
|
|
public class OsuGameBase : BaseGame
|
2016-09-23 23:39:20 +08:00
|
|
|
|
{
|
2016-11-01 02:44:20 +08:00
|
|
|
|
internal OsuConfigManager Config;
|
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
|
|
|
|
|
2016-11-07 20:13:56 +08:00
|
|
|
|
protected override Container<Drawable> Content => ratioContainer;
|
2016-09-23 23:39:20 +08:00
|
|
|
|
|
|
|
|
|
private RatioAdjust ratioContainer;
|
|
|
|
|
|
2016-10-06 20:09:18 +08:00
|
|
|
|
public CursorContainer Cursor;
|
|
|
|
|
|
2016-10-28 18:55:48 +08:00
|
|
|
|
public readonly Bindable<WorkingBeatmap> Beatmap = new Bindable<WorkingBeatmap>();
|
|
|
|
|
|
2016-11-12 18:44:16 +08:00
|
|
|
|
[BackgroundDependencyLoader]
|
|
|
|
|
private void load()
|
2016-09-23 23:39:20 +08:00
|
|
|
|
{
|
2016-11-05 06:06:58 +08:00
|
|
|
|
Dependencies.Cache(this);
|
2016-11-09 07:51:39 +08:00
|
|
|
|
Dependencies.Cache(new OsuConfigManager(Host.Storage));
|
2016-11-05 06:06:58 +08:00
|
|
|
|
Dependencies.Cache(new BeatmapDatabase(Host.Storage, Host));
|
2016-11-09 07:46:08 +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.
|
2016-11-23 19:38:33 +08:00
|
|
|
|
Dependencies.Cache(Fonts = new FontStore { ScaleAdjust = 0.01f }, 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"));
|
|
|
|
|
|
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"));
|
|
|
|
|
|
2016-11-09 07:51:39 +08:00
|
|
|
|
OszArchiveReader.Register();
|
2016-09-23 23:39:20 +08:00
|
|
|
|
|
2016-11-09 07:46:08 +08:00
|
|
|
|
Dependencies.Cache(API = new APIAccess
|
2016-09-23 23:39:20 +08:00
|
|
|
|
{
|
|
|
|
|
Username = Config.Get<string>(OsuConfig.Username),
|
|
|
|
|
Password = Config.Get<string>(OsuConfig.Password),
|
|
|
|
|
Token = Config.Get<string>(OsuConfig.Token)
|
2016-11-09 07:46:08 +08:00
|
|
|
|
});
|
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();
|
|
|
|
|
|
|
|
|
|
AddInternal(ratioContainer = new RatioAdjust
|
|
|
|
|
{
|
|
|
|
|
Children = new[]
|
|
|
|
|
{
|
|
|
|
|
Cursor = new OsuCursorContainer { Depth = float.MaxValue }
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
2016-11-01 02:44:20 +08:00
|
|
|
|
public override void SetHost(BasicGameHost host)
|
|
|
|
|
{
|
|
|
|
|
if (Config == null)
|
|
|
|
|
Config = new OsuConfigManager(host.Storage);
|
|
|
|
|
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.
|
2016-10-15 02:10:01 +08:00
|
|
|
|
if (Config != null && API != null)
|
|
|
|
|
{
|
|
|
|
|
Config.Set(OsuConfig.Token, API.Token);
|
|
|
|
|
Config.Save();
|
|
|
|
|
}
|
2016-09-27 17:31:36 +08:00
|
|
|
|
|
|
|
|
|
base.Dispose(isDisposing);
|
|
|
|
|
}
|
2016-09-23 23:39:20 +08:00
|
|
|
|
}
|
|
|
|
|
}
|