osu/osu.Game/OsuGame.cs

64 lines
2.0 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.Framework.Configuration;
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-30 09:45:55 +00:00
using osu.Framework.Graphics.Sprites;
2016-09-20 07:26:07 +00:00
using osu.Framework.OS;
2016-09-30 09:45:55 +00:00
using osu.Game.Graphics.Background;
2016-09-02 09:06:36 +00:00
using osu.Game.GameModes.Play;
2016-09-30 09:45:55 +00:00
using osu.Game.Graphics.Containers;
2016-10-01 09:01:52 +00:00
using osu.Game.Overlays;
2016-08-26 03:28:23 +00:00
namespace osu.Game
{
public class OsuGame : OsuGameBase
2016-08-26 03:28:23 +00:00
{
2016-10-01 09:01:52 +00:00
public Toolbar Toolbar;
public MainMenu MainMenu;
public Bindable<PlayMode> PlayMode;
2016-10-01 09:01:52 +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();
2016-09-30 09:45:55 +00:00
Add(new Drawable[] {
MainMenu = new MainMenu(),
Toolbar = new Toolbar
{
OnHome = delegate { MainMenu.MakeCurrent(); },
OnSettings = delegate { Options.PoppedOut = !Options.PoppedOut; },
OnPlayModeChange = delegate (PlayMode m) { PlayMode.Value = m; },
},
2016-09-30 09:45:55 +00:00
});
PlayMode = Config.GetBindable<PlayMode>(OsuConfig.PlayMode);
PlayMode.ValueChanged += delegate { Toolbar.SetGameMode(PlayMode.Value); };
PlayMode.TriggerChange();
2016-08-26 03:28:23 +00:00
}
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)
{
Config.Set(OsuConfig.Width, Size.X);
Config.Set(OsuConfig.Height, Size.Y);
2016-09-01 10:06:09 +00:00
}
return true;
2016-08-26 03:28:23 +00:00
}
}
}