2017-02-07 04:59:30 +00:00
|
|
|
|
// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
|
|
|
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
2016-10-05 07:35:10 +00:00
|
|
|
|
|
|
|
|
|
using System;
|
2016-11-10 22:40:42 +00:00
|
|
|
|
using osu.Framework.Allocation;
|
2016-10-28 10:55:48 +00:00
|
|
|
|
using osu.Framework.Configuration;
|
2017-02-17 09:59:30 +00:00
|
|
|
|
using osu.Framework.Screens;
|
2016-10-28 10:55:48 +00:00
|
|
|
|
using osu.Game.Beatmaps;
|
2016-10-05 11:03:52 +00:00
|
|
|
|
using osu.Game.Graphics.Containers;
|
2016-10-05 07:35:10 +00:00
|
|
|
|
|
2016-11-14 08:23:33 +00:00
|
|
|
|
namespace osu.Game.Screens
|
2016-10-05 07:35:10 +00:00
|
|
|
|
{
|
2017-02-17 09:59:30 +00:00
|
|
|
|
public abstract class OsuScreen : Screen
|
2016-10-05 07:35:10 +00:00
|
|
|
|
{
|
2017-02-17 09:59:30 +00:00
|
|
|
|
internal BackgroundScreen Background { get; private set; }
|
2016-10-05 07:35:10 +00:00
|
|
|
|
|
|
|
|
|
/// <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>
|
2017-02-17 09:59:30 +00:00
|
|
|
|
protected virtual BackgroundScreen CreateBackground() => null;
|
2016-10-05 07:35:10 +00:00
|
|
|
|
|
2016-11-15 11:43:43 +00:00
|
|
|
|
internal virtual bool ShowOverlays => true;
|
2016-11-09 06:22:54 +00:00
|
|
|
|
|
2016-11-12 10:44:16 +00:00
|
|
|
|
protected new OsuGameBase Game => base.Game as OsuGameBase;
|
2016-11-09 06:22:54 +00:00
|
|
|
|
|
2017-03-16 14:58:36 +00:00
|
|
|
|
internal virtual bool HasLocalCursorDisplayed => false;
|
|
|
|
|
|
2017-02-26 13:08:21 +00:00
|
|
|
|
private readonly Bindable<WorkingBeatmap> beatmap = new Bindable<WorkingBeatmap>();
|
2016-10-28 10:55:48 +00:00
|
|
|
|
|
|
|
|
|
public WorkingBeatmap Beatmap
|
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
|
|
|
|
return beatmap.Value;
|
|
|
|
|
}
|
|
|
|
|
set
|
|
|
|
|
{
|
|
|
|
|
beatmap.Value = value;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void beatmap_ValueChanged(object sender, EventArgs e)
|
|
|
|
|
{
|
|
|
|
|
OnBeatmapChanged(beatmap.Value);
|
|
|
|
|
}
|
|
|
|
|
|
2016-11-12 10:44:16 +00:00
|
|
|
|
[BackgroundDependencyLoader(permitNulls: true)]
|
|
|
|
|
private void load(OsuGameBase game)
|
2016-10-28 13:03:59 +00:00
|
|
|
|
{
|
2017-02-27 03:24:50 +00:00
|
|
|
|
if (game != null)
|
2017-02-27 09:08:05 +00:00
|
|
|
|
{
|
|
|
|
|
//if we were given a beatmap at ctor time, we want to pass this on to the game-wide beatmap.
|
|
|
|
|
var localMap = beatmap.Value;
|
2017-02-27 03:24:50 +00:00
|
|
|
|
beatmap.BindTo(game.Beatmap);
|
2017-02-27 09:08:05 +00:00
|
|
|
|
if (localMap != null)
|
|
|
|
|
beatmap.Value = localMap;
|
|
|
|
|
}
|
|
|
|
|
|
2017-02-26 13:08:21 +00:00
|
|
|
|
beatmap.ValueChanged += beatmap_ValueChanged;
|
2016-10-28 10:55:48 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected virtual void OnBeatmapChanged(WorkingBeatmap beatmap)
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
2017-02-17 09:59:30 +00:00
|
|
|
|
protected override void OnEntering(Screen last)
|
2016-10-05 07:35:10 +00:00
|
|
|
|
{
|
2017-02-17 09:59:30 +00:00
|
|
|
|
OsuScreen lastOsu = last as OsuScreen;
|
2016-10-05 07:35:10 +00:00
|
|
|
|
|
2017-02-17 09:59:30 +00:00
|
|
|
|
BackgroundScreen bg = CreateBackground();
|
2016-10-05 07:35:10 +00:00
|
|
|
|
|
2017-03-15 10:09:30 +00:00
|
|
|
|
OnBeatmapChanged(Beatmap);
|
|
|
|
|
|
2016-10-05 07:35:10 +00:00
|
|
|
|
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-09 09:56:41 +00:00
|
|
|
|
AddInternal(new ParallaxContainer
|
2016-10-05 11:03:52 +00:00
|
|
|
|
{
|
2016-11-29 19:50:12 +00:00
|
|
|
|
Depth = float.MaxValue,
|
2016-10-05 11:03:52 +00:00
|
|
|
|
Children = new[]
|
|
|
|
|
{
|
|
|
|
|
Background = bg
|
|
|
|
|
}
|
|
|
|
|
});
|
2016-10-05 07:35:10 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
base.OnEntering(last);
|
|
|
|
|
}
|
|
|
|
|
|
2017-02-17 09:59:30 +00:00
|
|
|
|
protected override bool OnExiting(Screen next)
|
2016-10-05 07:35:10 +00:00
|
|
|
|
{
|
2017-02-17 09:59:30 +00:00
|
|
|
|
OsuScreen nextOsu = next as OsuScreen;
|
2016-10-05 07:35:10 +00:00
|
|
|
|
|
|
|
|
|
if (Background != null && !Background.Equals(nextOsu?.Background))
|
2016-10-07 11:35:44 +00:00
|
|
|
|
{
|
|
|
|
|
if (nextOsu != null)
|
|
|
|
|
//We need to use MakeCurrent in case we are jumping up multiple game modes.
|
2017-01-20 08:20:56 +00:00
|
|
|
|
nextOsu.Background?.MakeCurrent();
|
2016-10-07 11:35:44 +00:00
|
|
|
|
else
|
|
|
|
|
Background.Exit();
|
|
|
|
|
}
|
2016-10-05 07:35:10 +00:00
|
|
|
|
|
2016-10-07 09:58:20 +00:00
|
|
|
|
return base.OnExiting(next);
|
2016-10-05 07:35:10 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|