2016-10-28 10:55:48 +00:00
|
|
|
|
using System;
|
|
|
|
|
using osu.Framework;
|
|
|
|
|
using osu.Framework.Configuration;
|
2016-10-10 08:17:26 +00:00
|
|
|
|
using osu.Framework.GameModes;
|
2016-09-30 09:45:27 +00:00
|
|
|
|
using osu.Framework.Graphics;
|
2016-09-23 15:39:20 +00:00
|
|
|
|
using osu.Framework.Graphics.Containers;
|
|
|
|
|
using osu.Framework.Graphics.Cursor;
|
|
|
|
|
using osu.Framework.Graphics.Textures;
|
|
|
|
|
using osu.Framework.IO.Stores;
|
2016-10-31 18:44:20 +00:00
|
|
|
|
using osu.Framework.Platform;
|
2016-10-28 10:55:48 +00:00
|
|
|
|
using osu.Game.Beatmaps;
|
2016-10-07 19:09:52 +00:00
|
|
|
|
using osu.Game.Beatmaps.IO;
|
2016-09-23 15:39:20 +00:00
|
|
|
|
using osu.Game.Configuration;
|
2016-10-04 15:31:10 +00:00
|
|
|
|
using osu.Game.Database;
|
2016-09-28 08:32:38 +00:00
|
|
|
|
using osu.Game.Graphics.Cursor;
|
2016-09-23 15:39:20 +00:00
|
|
|
|
using osu.Game.Graphics.Processing;
|
2016-10-21 09:25:22 +00:00
|
|
|
|
using osu.Game.IPC;
|
2016-09-23 15:39:20 +00:00
|
|
|
|
using osu.Game.Online.API;
|
2016-09-29 11:13:58 +00:00
|
|
|
|
using osu.Game.Overlays;
|
2016-09-23 15:39:20 +00:00
|
|
|
|
|
|
|
|
|
namespace osu.Game
|
|
|
|
|
{
|
2016-10-12 10:52:49 +00:00
|
|
|
|
public class OsuGameBase : BaseGame
|
2016-09-23 15:39:20 +00:00
|
|
|
|
{
|
2016-10-31 18:44:20 +00:00
|
|
|
|
internal OsuConfigManager Config;
|
2016-10-21 09:25:22 +00:00
|
|
|
|
public BeatmapDatabase Beatmaps { get; private set; }
|
2016-09-23 15:39:20 +00:00
|
|
|
|
|
|
|
|
|
protected override string MainResourceFile => @"osu.Game.Resources.dll";
|
|
|
|
|
|
2016-11-03 02:22:34 +00:00
|
|
|
|
public OptionsOverlay Options;
|
2016-09-27 09:31:36 +00:00
|
|
|
|
public APIAccess API;
|
2016-09-23 15:39:20 +00:00
|
|
|
|
|
2016-10-16 08:33:53 +00:00
|
|
|
|
protected override Container Content => ratioContainer;
|
2016-09-23 15:39:20 +00:00
|
|
|
|
|
|
|
|
|
private RatioAdjust ratioContainer;
|
|
|
|
|
|
2016-10-06 12:09:18 +00:00
|
|
|
|
public CursorContainer Cursor;
|
|
|
|
|
|
2016-10-28 10:55:48 +00:00
|
|
|
|
public readonly Bindable<WorkingBeatmap> Beatmap = new Bindable<WorkingBeatmap>();
|
|
|
|
|
|
2016-10-16 08:33:53 +00:00
|
|
|
|
public OsuGameBase()
|
|
|
|
|
{
|
|
|
|
|
AddInternal(ratioContainer = new RatioAdjust());
|
|
|
|
|
|
|
|
|
|
Children = new Drawable[]
|
|
|
|
|
{
|
2016-11-03 02:22:34 +00:00
|
|
|
|
Options = new OptionsOverlay(),
|
2016-10-16 08:33:53 +00:00
|
|
|
|
Cursor = new OsuCursorContainer()
|
|
|
|
|
};
|
2016-10-28 10:55:48 +00:00
|
|
|
|
|
|
|
|
|
Beatmap.ValueChanged += Beatmap_ValueChanged;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void Beatmap_ValueChanged(object sender, EventArgs e)
|
|
|
|
|
{
|
|
|
|
|
throw new NotImplementedException();
|
2016-10-16 08:33:53 +00:00
|
|
|
|
}
|
|
|
|
|
|
2016-11-01 14:24:14 +00:00
|
|
|
|
protected override void Load(BaseGame game)
|
2016-09-23 15:39:20 +00:00
|
|
|
|
{
|
2016-10-10 08:17:26 +00:00
|
|
|
|
base.Load(game);
|
2016-09-23 15:39:20 +00:00
|
|
|
|
|
2016-10-07 19:09:52 +00:00
|
|
|
|
OszArchiveReader.Register();
|
2016-10-27 08:34:43 +00:00
|
|
|
|
Beatmaps = new BeatmapDatabase(Host.Storage, Host);
|
2016-10-04 17:35:40 +00:00
|
|
|
|
|
2016-09-23 15:39:20 +00:00
|
|
|
|
//this completely overrides the framework default. will need to change once we make a proper FontStore.
|
|
|
|
|
Fonts = new TextureStore() { ScaleAdjust = 0.01f };
|
2016-11-04 09:08:43 +00:00
|
|
|
|
|
2016-09-23 15:39:20 +00:00
|
|
|
|
Fonts.AddStore(new GlyphStore(Resources, @"Fonts/FontAwesome"));
|
|
|
|
|
Fonts.AddStore(new GlyphStore(Resources, @"Fonts/osuFont"));
|
2016-11-04 09:08:43 +00: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-Medium"));
|
|
|
|
|
Fonts.AddStore(new GlyphStore(Resources, @"Fonts/Exo2.0-MediumItalic"));
|
|
|
|
|
Fonts.AddStore(new GlyphStore(Resources, @"Fonts/Exo2.0-Black"));
|
|
|
|
|
Fonts.AddStore(new GlyphStore(Resources, @"Fonts/Exo2.0-BlackItalic"));
|
2016-09-23 15:39:20 +00:00
|
|
|
|
|
|
|
|
|
API = new APIAccess()
|
|
|
|
|
{
|
|
|
|
|
Username = Config.Get<string>(OsuConfig.Username),
|
|
|
|
|
Password = Config.Get<string>(OsuConfig.Password),
|
|
|
|
|
Token = Config.Get<string>(OsuConfig.Token)
|
|
|
|
|
};
|
|
|
|
|
}
|
2016-09-27 09:31:36 +00:00
|
|
|
|
|
2016-10-31 18:44:20 +00:00
|
|
|
|
public override void SetHost(BasicGameHost host)
|
|
|
|
|
{
|
|
|
|
|
if (Config == null)
|
|
|
|
|
Config = new OsuConfigManager(host.Storage);
|
|
|
|
|
base.SetHost(host);
|
|
|
|
|
}
|
|
|
|
|
|
2016-09-27 10:22:02 +00:00
|
|
|
|
protected override void Update()
|
|
|
|
|
{
|
|
|
|
|
base.Update();
|
|
|
|
|
API.Update();
|
|
|
|
|
}
|
|
|
|
|
|
2016-09-27 09:31:36 +00:00
|
|
|
|
protected override void Dispose(bool isDisposing)
|
|
|
|
|
{
|
|
|
|
|
//refresh token may have changed.
|
2016-10-14 18:10:01 +00:00
|
|
|
|
if (Config != null && API != null)
|
|
|
|
|
{
|
|
|
|
|
Config.Set(OsuConfig.Token, API.Token);
|
|
|
|
|
Config.Save();
|
|
|
|
|
}
|
2016-09-27 09:31:36 +00:00
|
|
|
|
|
|
|
|
|
base.Dispose(isDisposing);
|
|
|
|
|
}
|
2016-09-23 15:39:20 +00:00
|
|
|
|
}
|
|
|
|
|
}
|