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.Transformations;
|
|
|
|
|
using OpenTK;
|
2016-10-07 17:58:20 +08:00
|
|
|
|
using osu.Framework.Graphics;
|
|
|
|
|
using osu.Framework.Input;
|
2016-10-10 16:17:26 +08:00
|
|
|
|
using osu.Framework;
|
2016-11-01 22:24:14 +08:00
|
|
|
|
using System.Threading;
|
2016-11-09 07:13:20 +08:00
|
|
|
|
using osu.Framework.Allocation;
|
2016-10-05 15:35:10 +08:00
|
|
|
|
|
|
|
|
|
namespace osu.Game.GameModes
|
|
|
|
|
{
|
|
|
|
|
public abstract class BackgroundMode : GameMode, IEquatable<BackgroundMode>
|
|
|
|
|
{
|
|
|
|
|
public virtual bool Equals(BackgroundMode other)
|
|
|
|
|
{
|
|
|
|
|
return other?.GetType() == GetType();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const float transition_length = 500;
|
|
|
|
|
const float x_movement_amount = 50;
|
|
|
|
|
|
2016-10-07 17:58:59 +08:00
|
|
|
|
protected override bool OnKeyDown(InputState state, KeyDownEventArgs args)
|
|
|
|
|
{
|
|
|
|
|
//we don't want to handle escape key.
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
2016-11-01 22:24:14 +08:00
|
|
|
|
BaseGame game;
|
|
|
|
|
|
2016-11-12 18:44:16 +08:00
|
|
|
|
[BackgroundDependencyLoader]
|
|
|
|
|
private void load(BaseGame game)
|
2016-10-05 15:35:10 +08:00
|
|
|
|
{
|
2016-11-01 22:24:14 +08:00
|
|
|
|
this.game = game;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public override bool Push(GameMode mode)
|
|
|
|
|
{
|
|
|
|
|
//don't actually push until we've finished loading.
|
|
|
|
|
if (!mode.IsLoaded)
|
|
|
|
|
{
|
|
|
|
|
mode.Preload(game, d => Push((BackgroundMode)d));
|
|
|
|
|
return true;
|
|
|
|
|
}
|
2016-10-05 15:35:10 +08:00
|
|
|
|
|
2016-11-01 22:24:14 +08:00
|
|
|
|
base.Push(mode);
|
|
|
|
|
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected override void Update()
|
|
|
|
|
{
|
|
|
|
|
base.Update();
|
|
|
|
|
Content.Scale = new Vector2(1 + (x_movement_amount / DrawSize.X) * 2);
|
2016-10-05 15:35:10 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected override void OnEntering(GameMode last)
|
|
|
|
|
{
|
|
|
|
|
Content.FadeOut();
|
|
|
|
|
Content.MoveToX(x_movement_amount);
|
|
|
|
|
|
|
|
|
|
Content.FadeIn(transition_length, EasingTypes.InOutQuart);
|
|
|
|
|
Content.MoveToX(0, transition_length, EasingTypes.InOutQuart);
|
|
|
|
|
|
|
|
|
|
base.OnEntering(last);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected override void OnSuspending(GameMode next)
|
|
|
|
|
{
|
|
|
|
|
Content.MoveToX(-x_movement_amount, transition_length, EasingTypes.InOutQuart);
|
|
|
|
|
base.OnSuspending(next);
|
|
|
|
|
}
|
|
|
|
|
|
2016-10-07 17:58:20 +08:00
|
|
|
|
protected override bool OnExiting(GameMode next)
|
2016-10-05 15:35:10 +08:00
|
|
|
|
{
|
|
|
|
|
Content.FadeOut(transition_length, EasingTypes.OutExpo);
|
|
|
|
|
Content.MoveToX(x_movement_amount, transition_length, EasingTypes.OutExpo);
|
|
|
|
|
|
2016-10-07 17:58:20 +08:00
|
|
|
|
return base.OnExiting(next);
|
2016-10-05 15:35:10 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected override void OnResuming(GameMode last)
|
|
|
|
|
{
|
|
|
|
|
Content.MoveToX(0, transition_length, EasingTypes.OutExpo);
|
|
|
|
|
base.OnResuming(last);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|