osu/osu.Game/OsuGame.cs

49 lines
1.4 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
using osu.Game.Configuration;
using osu.Game.GameModes.Menu;
2016-09-01 10:06:09 +00:00
using OpenTK;
using osu.Framework.Graphics;
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 : OsuGameBase
2016-08-26 03:28:23 +00:00
{
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();
Add(new MainMenu());
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
}
}
}