1
0
mirror of https://github.com/ppy/osu.git synced 2025-03-29 19:58:40 +08:00

Merge pull request from peppy/general-fixes

Framework updates.
This commit is contained in:
Dean Herbert 2016-09-21 17:39:36 +09:00 committed by GitHub
commit edcc48c49b
4 changed files with 22 additions and 13 deletions
osu-framework
osu.Game
GameModes/Menu
Online/API
OsuGame.cs

@ -1 +1 @@
Subproject commit 6e7fa7ebe564e9bca957ea26ff2bee6038c2bf67 Subproject commit 6357711a41aaaeecfb8a60c09c5d5cc3c01d1778

@ -181,6 +181,8 @@ namespace osu.Game.GameModes.Menu
MenuState state; MenuState state;
public override bool HandleInput => state != MenuState.Exit;
public MenuState State public MenuState State
{ {
get get
@ -239,8 +241,6 @@ namespace osu.Game.GameModes.Menu
b.State = Button.ButtonState.Expanded; b.State = Button.ButtonState.Expanded;
break; break;
case MenuState.Exit: case MenuState.Exit:
HandleInput = false;
buttonArea.FadeOut(200); buttonArea.FadeOut(200);
foreach (Button b in buttonsTopLevel) foreach (Button b in buttonsTopLevel)
@ -298,14 +298,16 @@ namespace osu.Game.GameModes.Menu
{ {
Children = new Drawable[] Children = new Drawable[]
{ {
logo = new Sprite(Game.Textures.Get(@"menu-osu")) logo = new Sprite()
{ {
Anchor = Anchor.Centre, Texture = Game.Textures.Get(@"menu-osu"),
Anchor = Anchor.Centre,
Origin = Anchor.Centre Origin = Anchor.Centre
}, },
ripple = new Sprite(Game.Textures.Get(@"menu-osu")) ripple = new Sprite()
{ {
Anchor = Anchor.Centre, Texture = Game.Textures.Get(@"menu-osu"),
Anchor = Anchor.Centre,
Origin = Anchor.Centre, Origin = Anchor.Centre,
Alpha = 0.4f Alpha = 0.4f
}, },
@ -587,9 +589,10 @@ namespace osu.Game.GameModes.Menu
//box.FlashColour(ColourHelper.Lighten2(colour, 0.7f), 200); //box.FlashColour(ColourHelper.Lighten2(colour, 0.7f), 200);
} }
public override bool HandleInput => state != ButtonState.Exploded && box.Scale.X >= 0.8f;
protected override void Update() protected override void Update()
{ {
HandleInput = state != ButtonState.Exploded && box.Scale.X >= 0.8f;
iconText.Alpha = MathHelper.Clamp((box.Scale.X - 0.5f) / 0.3f, 0, 1); iconText.Alpha = MathHelper.Clamp((box.Scale.X - 0.5f) / 0.3f, 0, 1);
base.Update(); base.Update();
} }

@ -65,7 +65,7 @@ namespace osu.Game.Online.API
Token = req.ResponseObject; Token = req.ResponseObject;
return true; return true;
} }
catch (Exception e) catch
{ {
//todo: potentially only kill the refresh token on certain exception types. //todo: potentially only kill the refresh token on certain exception types.
Token = null; Token = null;

@ -13,6 +13,7 @@ using osu.Framework.Graphics;
using osu.Framework.Graphics.Cursor; using osu.Framework.Graphics.Cursor;
using osu.Framework.Graphics.Textures; using osu.Framework.Graphics.Textures;
using osu.Framework.IO.Stores; using osu.Framework.IO.Stores;
using osu.Framework.OS;
namespace osu.Game namespace osu.Game
{ {
@ -24,6 +25,13 @@ namespace osu.Game
internal APIAccess API; internal APIAccess API;
public override void SetHost(BasicGameHost host)
{
base.SetHost(host);
host.Size = new Vector2(Config.Get<int>(OsuConfig.Width), Config.Get<int>(OsuConfig.Height));
}
public override void Load() public override void Load()
{ {
base.Load(); base.Load();
@ -31,8 +39,6 @@ namespace osu.Game
//this completely overrides the framework default. will need to change once we make a proper FontStore. //this completely overrides the framework default. will need to change once we make a proper FontStore.
Fonts = new TextureStore(new GlyphStore(Resources, @"Fonts/Exo2.0-Regular")) { ScaleAdjust = 0.01f }; Fonts = new TextureStore(new GlyphStore(Resources, @"Fonts/Exo2.0-Regular")) { ScaleAdjust = 0.01f };
Parent.Size = new Vector2(Config.Get<int>(OsuConfig.Width), Config.Get<int>(OsuConfig.Height));
API = new APIAccess() API = new APIAccess()
{ {
Username = Config.Get<string>(OsuConfig.Username), Username = Config.Get<string>(OsuConfig.Username),
@ -73,8 +79,8 @@ namespace osu.Game
if (Parent != null) if (Parent != null)
{ {
Parent.Width = Config.Set(OsuConfig.Width, ActualSize.X).Value; Config.Set(OsuConfig.Width, ActualSize.X);
Parent.Height = Config.Set(OsuConfig.Height, ActualSize.Y).Value; Config.Set(OsuConfig.Height, ActualSize.Y);
} }
return true; return true;
} }