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-10-04 08:15:03 +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
|
|
|
|
|
{
|
2016-09-23 15:39:20 +00:00
|
|
|
|
public class OsuGame : OsuGameBase
|
2016-08-26 03:28:23 +00:00
|
|
|
|
{
|
2016-10-01 09:01:52 +00:00
|
|
|
|
public Toolbar Toolbar;
|
2016-10-04 08:15:03 +00:00
|
|
|
|
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[] {
|
2016-10-04 08:15:03 +00:00
|
|
|
|
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
|
|
|
|
});
|
2016-10-04 08:15:03 +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-23 15:39:20 +00:00
|
|
|
|
|
2016-09-01 10:06:09 +00:00
|
|
|
|
if (Parent != null)
|
|
|
|
|
{
|
2016-10-01 09:40:14 +00:00
|
|
|
|
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
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|