1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 01:27:29 +08:00
osu-lazer/osu.Game/GameModes/OsuGameMode.cs

75 lines
2.3 KiB
C#
Raw Normal View History

2016-10-05 15:35:10 +08:00
//Copyright (c) 2007-2016 ppy Pty Ltd <contact@ppy.sh>.
//Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using osu.Framework.GameModes;
using osu.Framework.Graphics.Containers;
using osu.Game.Graphics.Background;
2016-10-05 19:03:52 +08:00
using osu.Game.Graphics.Containers;
2016-10-05 15:35:10 +08:00
namespace osu.Game.GameModes
{
public class OsuGameMode : GameMode
{
internal BackgroundMode Background { get; private set; }
/// <summary>
/// Override to create a BackgroundMode for the current GameMode.
/// Note that the instance created may not be the used instance if it matches the BackgroundMode equality clause.
/// </summary>
protected virtual BackgroundMode CreateBackground() => null;
protected override void OnEntering(GameMode last)
{
OsuGameMode lastOsu = last as OsuGameMode;
BackgroundMode bg = CreateBackground();
if (lastOsu?.Background != null)
{
if (bg == null || lastOsu.Background.Equals(bg))
//we can keep the previous mode's background.
Background = lastOsu.Background;
else
{
lastOsu.Background.Push(Background = bg);
}
}
else if (bg != null)
{
2016-10-05 19:03:52 +08:00
AddTopLevel(new ParallaxContainer
{
Depth = float.MinValue,
Children = new[]
{
Background = bg
}
});
2016-10-05 15:35:10 +08:00
}
base.OnEntering(last);
}
protected override bool OnExiting(GameMode next)
2016-10-05 15:35:10 +08:00
{
OsuGameMode nextOsu = next as OsuGameMode;
if (Background != null && !Background.Equals(nextOsu?.Background))
{
if (nextOsu != null)
//We need to use MakeCurrent in case we are jumping up multiple game modes.
nextOsu.Background.MakeCurrent();
else
Background.Exit();
}
2016-10-05 15:35:10 +08:00
return base.OnExiting(next);
2016-10-05 15:35:10 +08:00
}
}
}