2016-08-26 11:28:23 +08:00
|
|
|
|
//Copyright (c) 2007-2016 ppy Pty Ltd <contact@ppy.sh>.
|
2016-08-26 16:27:49 +08:00
|
|
|
|
//Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
2016-08-26 11:28:23 +08:00
|
|
|
|
|
|
|
|
|
using osu.Game.Configuration;
|
|
|
|
|
using osu.Game.GameModes.Menu;
|
2016-09-01 18:06:09 +08:00
|
|
|
|
using OpenTK;
|
|
|
|
|
using osu.Framework.Graphics;
|
2016-09-30 17:45:55 +08:00
|
|
|
|
using osu.Framework.Graphics.Sprites;
|
2016-09-20 15:26:07 +08:00
|
|
|
|
using osu.Framework.OS;
|
2016-09-30 17:45:55 +08:00
|
|
|
|
using osu.Game.Graphics.Background;
|
2016-09-02 17:06:36 +08:00
|
|
|
|
using osu.Game.GameModes.Play;
|
2016-09-30 17:45:55 +08:00
|
|
|
|
using osu.Game.Graphics.Containers;
|
2016-08-26 11:28:23 +08:00
|
|
|
|
|
|
|
|
|
namespace osu.Game
|
|
|
|
|
{
|
2016-09-23 23:39:20 +08:00
|
|
|
|
public class OsuGame : OsuGameBase
|
2016-08-26 11:28:23 +08:00
|
|
|
|
{
|
2016-09-20 15:26:07 +08: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 11:28:23 +08:00
|
|
|
|
public override void Load()
|
|
|
|
|
{
|
|
|
|
|
base.Load();
|
|
|
|
|
|
2016-09-30 17:45:55 +08:00
|
|
|
|
Add(new Drawable[] {
|
|
|
|
|
new ParallaxContainer
|
|
|
|
|
{
|
|
|
|
|
Children = new [] {
|
|
|
|
|
new Background()
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
new MainMenu()
|
|
|
|
|
});
|
2016-08-26 11:28:23 +08:00
|
|
|
|
}
|
|
|
|
|
|
2016-09-11 01:23:26 +08:00
|
|
|
|
public override bool Invalidate(Invalidation invalidation = Invalidation.All, Drawable source = null, bool shallPropagate = true)
|
2016-08-26 11:28:23 +08:00
|
|
|
|
{
|
2016-09-11 01:23:26 +08:00
|
|
|
|
if (!base.Invalidate(invalidation, source, shallPropagate)) return false;
|
2016-09-23 23:39:20 +08:00
|
|
|
|
|
2016-09-01 18:06:09 +08:00
|
|
|
|
if (Parent != null)
|
|
|
|
|
{
|
2016-09-20 15:26:07 +08:00
|
|
|
|
Config.Set(OsuConfig.Width, ActualSize.X);
|
|
|
|
|
Config.Set(OsuConfig.Height, ActualSize.Y);
|
2016-09-01 18:06:09 +08:00
|
|
|
|
}
|
|
|
|
|
return true;
|
2016-08-26 11:28:23 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|