osu/osu.Game/OsuGame.cs

93 lines
2.7 KiB
C#
Raw Normal View History

2016-08-26 03:28:23 +00:00
//Copyright (c) 2007-2016 ppy Pty Ltd <contact@ppy.sh>.
2016-08-26 08:27:49 +00:00
//Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
2016-08-26 03:28:23 +00:00
2016-09-01 10:06:09 +00:00
using System;
2016-08-31 10:49:34 +00:00
using System.Collections.Generic;
2016-08-26 03:28:23 +00:00
using osu.Game.Configuration;
using osu.Game.GameModes.Menu;
using osu.Game.Graphics.Processing;
2016-08-31 10:49:34 +00:00
using osu.Game.Online.API;
using osu.Game.Online.API.Requests;
2016-09-01 10:06:09 +00:00
using OpenTK;
using osu.Framework.Graphics;
using osu.Framework.Graphics.Cursor;
using osu.Framework.Graphics.Textures;
using osu.Framework.IO.Stores;
2016-09-20 07:26:07 +00:00
using osu.Framework.OS;
2016-08-26 03:28:23 +00:00
namespace osu.Game
{
public class OsuGame : Framework.Game
{
internal OsuConfigManager Config = new OsuConfigManager();
protected override string MainResourceFile => @"osu.Game.Resources.dll";
2016-08-31 10:49:34 +00:00
internal APIAccess API;
2016-09-20 07:26:07 +00:00
public override void SetHost(BasicGameHost host)
{
base.SetHost(host);
host.Size = new Vector2(Config.Get<int>(OsuConfig.Width), Config.Get<int>(OsuConfig.Height));
}
2016-08-26 03:28:23 +00:00
public override void Load()
{
base.Load();
//this completely overrides the framework default. will need to change once we make a proper FontStore.
2016-09-21 09:33:09 +00:00
Fonts = new TextureStore() { ScaleAdjust = 0.01f };
Fonts.AddStore(new GlyphStore(Resources, @"Fonts/Exo2.0-Regular"));
Fonts.AddStore(new GlyphStore(Resources, @"Fonts/FontAwesome"));
Fonts.AddStore(new GlyphStore(Resources, @"Fonts/osuFont"));
2016-08-31 10:49:34 +00:00
API = new APIAccess()
{
Username = Config.Get<string>(OsuConfig.Username),
Password = Config.Get<string>(OsuConfig.Password),
Token = Config.Get<string>(OsuConfig.Token)
};
//var req = new ListChannelsRequest();
//req.Success += content =>
//{
//};
//API.Queue(req);
2016-08-31 10:49:34 +00:00
Children = new Drawable[]
{
new RatioAdjust
{
Children = new Drawable[]
{
new MainMenu(),
new CursorContainer()
}
}
};
2016-08-26 03:28:23 +00:00
}
2016-08-31 10:49:34 +00:00
protected override void Dispose(bool isDisposing)
{
//refresh token may have changed.
Config.Set(OsuConfig.Token, API.Token);
base.Dispose(isDisposing);
}
2016-09-10 17:23:26 +00:00
public override bool Invalidate(Invalidation invalidation = Invalidation.All, Drawable source = null, bool shallPropagate = true)
2016-08-26 03:28:23 +00:00
{
2016-09-10 17:23:26 +00:00
if (!base.Invalidate(invalidation, source, shallPropagate)) return false;
2016-09-01 10:06:09 +00:00
if (Parent != null)
{
2016-09-20 07:26:07 +00:00
Config.Set(OsuConfig.Width, ActualSize.X);
Config.Set(OsuConfig.Height, ActualSize.Y);
2016-09-01 10:06:09 +00:00
}
return true;
2016-08-26 03:28:23 +00:00
}
}
}