1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 00:47:24 +08:00
osu-lazer/osu.Game/OsuGame.cs

135 lines
4.1 KiB
C#
Raw Normal View History

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 System;
using osu.Framework.Configuration;
using osu.Framework.GameModes;
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-10-07 11:49:53 +08:00
using osu.Framework.Platform;
2016-10-06 22:32:56 +08:00
using osu.Game.GameModes;
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-10-01 17:01:52 +08:00
using osu.Game.Overlays;
2016-08-26 11:28:23 +08:00
namespace osu.Game
{
public class OsuGame : OsuGameBase
2016-08-26 11:28:23 +08:00
{
2016-10-01 17:01:52 +08:00
public Toolbar Toolbar;
public MainMenu MainMenu => intro?.ChildGameMode as MainMenu;
private Intro intro;
public Bindable<PlayMode> PlayMode;
2016-10-01 17:01:52 +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();
//attach out bindables to the audio subsystem.
Audio.Volume.Weld(Config.GetBindable<double>(OsuConfig.VolumeGlobal));
Audio.VolumeSample.Weld(Config.GetBindable<double>(OsuConfig.VolumeEffect));
Audio.VolumeTrack.Weld(Config.GetBindable<double>(OsuConfig.VolumeMusic));
2016-09-30 17:45:55 +08:00
Add(new Drawable[] {
intro = new Intro(),
Toolbar = new Toolbar
{
OnHome = delegate { MainMenu?.MakeCurrent(); },
OnSettings = delegate { Options.PoppedOut = !Options.PoppedOut; },
OnPlayModeChange = delegate (PlayMode m) { PlayMode.Value = m; },
Alpha = 0.001f //fixes invalidation fuckup
},
new VolumeControl
{
VolumeGlobal = Audio.Volume,
VolumeSample = Audio.VolumeSample,
VolumeTrack = Audio.VolumeTrack
}
2016-09-30 17:45:55 +08:00
});
intro.ModePushed += modeAdded;
intro.Exited += modeRemoved;
PlayMode = Config.GetBindable<PlayMode>(OsuConfig.PlayMode);
PlayMode.ValueChanged += delegate { Toolbar.SetGameMode(PlayMode.Value); };
PlayMode.TriggerChange();
Cursor.Alpha = 0;
}
public Action<GameMode> ModeChanged;
private void modeChanged(GameMode newMode)
{
2016-10-06 22:32:56 +08:00
// - Ability to change window size
// - Ability to adjust music playback
// - Frame limiter changes
//central game mode change logic.
if (newMode is Player)
2016-10-06 22:32:56 +08:00
{
Toolbar.FadeOut(100);
2016-10-06 22:32:56 +08:00
}
else
2016-10-06 22:32:56 +08:00
{
Toolbar.FadeIn(100);
2016-10-06 22:32:56 +08:00
}
Cursor.FadeIn(100);
ModeChanged?.Invoke(newMode);
if (newMode == null)
Host.Exit();
}
protected override bool OnExiting()
{
if (!intro.DidLoadMenu || intro.ChildGameMode != null)
{
intro.MakeCurrent();
return true;
}
return base.OnExiting();
}
private void modeAdded(GameMode newMode)
{
newMode.ModePushed += modeAdded;
newMode.Exited += modeRemoved;
modeChanged(newMode);
}
private void modeRemoved(GameMode newMode)
{
modeChanged(newMode);
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-01 18:06:09 +08:00
if (Parent != null)
{
Config.Set(OsuConfig.Width, Size.X);
Config.Set(OsuConfig.Height, Size.Y);
2016-09-01 18:06:09 +08:00
}
return true;
2016-08-26 11:28:23 +08:00
}
}
}