mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 06:09:34 +08:00
79 lines
2.5 KiB
C#
79 lines
2.5 KiB
C#
// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
|
|
|
using osu.Framework.Graphics.Containers;
|
|
using osu.Framework.Graphics;
|
|
using osu.Framework.Input;
|
|
using OpenTK;
|
|
using osu.Framework.Allocation;
|
|
using osu.Game.Configuration;
|
|
using osu.Framework.Configuration;
|
|
using osu.Framework.MathUtils;
|
|
|
|
namespace osu.Game.Graphics.Containers
|
|
{
|
|
public class ParallaxContainer : Container, IRequireHighFrequencyMousePosition
|
|
{
|
|
public const float DEFAULT_PARALLAX_AMOUNT = 0.02f;
|
|
|
|
public float ParallaxAmount = DEFAULT_PARALLAX_AMOUNT;
|
|
|
|
private Bindable<bool> parallaxEnabled;
|
|
|
|
public ParallaxContainer()
|
|
{
|
|
RelativeSizeAxes = Axes.Both;
|
|
AddInternal(content = new Container
|
|
{
|
|
RelativeSizeAxes = Axes.Both,
|
|
Anchor = Anchor.Centre,
|
|
Origin = Anchor.Centre
|
|
});
|
|
}
|
|
|
|
private readonly Container content;
|
|
private InputManager input;
|
|
|
|
protected override Container<Drawable> Content => content;
|
|
|
|
[BackgroundDependencyLoader]
|
|
private void load(OsuConfigManager config)
|
|
{
|
|
parallaxEnabled = config.GetBindable<bool>(OsuSetting.MenuParallax);
|
|
parallaxEnabled.ValueChanged += delegate
|
|
{
|
|
if (!parallaxEnabled)
|
|
{
|
|
content.MoveTo(Vector2.Zero, firstUpdate ? 0 : 1000, Easing.OutQuint);
|
|
content.Scale = new Vector2(1 + ParallaxAmount);
|
|
}
|
|
};
|
|
}
|
|
|
|
protected override void LoadComplete()
|
|
{
|
|
base.LoadComplete();
|
|
input = GetContainingInputManager();
|
|
}
|
|
|
|
private bool firstUpdate = true;
|
|
|
|
protected override void Update()
|
|
{
|
|
base.Update();
|
|
|
|
if (parallaxEnabled)
|
|
{
|
|
Vector2 offset = (input.CurrentState.Mouse == null ? Vector2.Zero : ToLocalSpace(input.CurrentState.Mouse.NativeState.Position) - DrawSize / 2) * ParallaxAmount;
|
|
|
|
double elapsed = MathHelper.Clamp(Clock.ElapsedFrameTime, 0, 1000);
|
|
|
|
content.Position = Interpolation.ValueAt(elapsed, content.Position, offset, 0, 1000, Easing.OutQuint);
|
|
content.Scale = Interpolation.ValueAt(elapsed, content.Scale, new Vector2(1 + ParallaxAmount), 0, 1000, Easing.OutQuint);
|
|
}
|
|
|
|
firstUpdate = false;
|
|
}
|
|
}
|
|
}
|