mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 06:57:39 +08:00
252 lines
8.0 KiB
C#
252 lines
8.0 KiB
C#
// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
|
|
|
using System.Linq;
|
|
using OpenTK.Graphics;
|
|
using osu.Framework.Graphics.Containers;
|
|
using osu.Game.Graphics;
|
|
using osu.Framework.Graphics;
|
|
using osu.Framework.Graphics.Sprites;
|
|
using OpenTK;
|
|
using osu.Framework.Graphics.Transformations;
|
|
|
|
namespace osu.Game.Overlays
|
|
{
|
|
public abstract class WaveOverlayContainer : OverlayContainer
|
|
{
|
|
private const float first_wave_position = -130;
|
|
private const float second_wave_position = 0;
|
|
private const float third_wave_position = 70;
|
|
private const float fourth_wave_position = 100;
|
|
private const float waves_container_position = -150;
|
|
private float[] wavePositions
|
|
{
|
|
get
|
|
{
|
|
return new float[] { first_wave_position, second_wave_position, third_wave_position, fourth_wave_position };
|
|
}
|
|
}
|
|
|
|
private const float first_wave_duration = 600;
|
|
private const float second_wave_duration = 700;
|
|
private const float third_wave_duration = 800;
|
|
private const float fourth_wave_duration = 900;
|
|
private const float container_wait = 200;
|
|
private const float waves_container_duration = 400;
|
|
private const float content_duration = 700;
|
|
private const float content_transition_wait = 100;
|
|
internal const float CONTENT_EXIT_DURATION = 600;
|
|
private float[] waveDurations
|
|
{
|
|
get
|
|
{
|
|
return new float[] { first_wave_duration, second_wave_duration, third_wave_duration, fourth_wave_duration };
|
|
}
|
|
}
|
|
|
|
private const float first_wave_rotation = 13;
|
|
private const float second_wave_rotation = -7;
|
|
private const float third_wave_rotation = 4;
|
|
private const float fourth_wave_rotation = -2;
|
|
|
|
private Wave firstWave, secondWave, thirdWave, fourthWave;
|
|
|
|
private Container<Wave> wavesContainer;
|
|
|
|
private readonly Container contentContainer;
|
|
protected override Container<Drawable> Content => contentContainer;
|
|
|
|
private Color4 firstWaveColour;
|
|
public Color4 FirstWaveColour
|
|
{
|
|
get
|
|
{
|
|
return firstWaveColour;
|
|
}
|
|
set
|
|
{
|
|
if (firstWaveColour == value) return;
|
|
firstWaveColour = value;
|
|
firstWave.Colour = value;
|
|
}
|
|
}
|
|
|
|
private Color4 secondWaveColour;
|
|
public Color4 SecondWaveColour
|
|
{
|
|
get
|
|
{
|
|
return secondWaveColour;
|
|
}
|
|
set
|
|
{
|
|
if (secondWaveColour == value) return;
|
|
secondWaveColour = value;
|
|
secondWave.Colour = value;
|
|
}
|
|
}
|
|
|
|
private Color4 thirdWaveColour;
|
|
public Color4 ThirdWaveColour
|
|
{
|
|
get
|
|
{
|
|
return thirdWaveColour;
|
|
}
|
|
set
|
|
{
|
|
if (thirdWaveColour == value) return;
|
|
thirdWaveColour = value;
|
|
thirdWave.Colour = value;
|
|
}
|
|
}
|
|
|
|
private Color4 fourthWaveColour;
|
|
public Color4 FourthWaveColour
|
|
{
|
|
get
|
|
{
|
|
return fourthWaveColour;
|
|
}
|
|
set
|
|
{
|
|
if (fourthWaveColour == value) return;
|
|
fourthWaveColour = value;
|
|
fourthWave.Colour = value;
|
|
}
|
|
}
|
|
|
|
protected override void PopIn()
|
|
{
|
|
base.Show();
|
|
|
|
int i = 0;
|
|
foreach (var w in wavesContainer.Children)
|
|
{
|
|
w.MoveToY(wavePositions[i], waveDurations[i], EasingTypes.OutQuint);
|
|
i++;
|
|
}
|
|
|
|
DelayReset();
|
|
Delay(container_wait);
|
|
Schedule(() =>
|
|
{
|
|
if (State == Visibility.Visible)
|
|
{
|
|
wavesContainer.MoveToY(waves_container_position, waves_container_duration, EasingTypes.None);
|
|
contentContainer.FadeIn(content_duration, EasingTypes.OutQuint);
|
|
contentContainer.MoveToY(0, content_duration, EasingTypes.OutQuint);
|
|
|
|
Delay(content_transition_wait);
|
|
Schedule(() => { if (State == Visibility.Visible) TransitionIn(); });
|
|
}
|
|
});
|
|
}
|
|
|
|
protected abstract void TransitionIn();
|
|
|
|
protected override void PopOut()
|
|
{
|
|
base.Hide();
|
|
|
|
contentContainer.FadeOut(CONTENT_EXIT_DURATION, EasingTypes.InSine);
|
|
contentContainer.MoveToY(DrawHeight, CONTENT_EXIT_DURATION, EasingTypes.InSine);
|
|
TransitionOut();
|
|
|
|
foreach (var w in wavesContainer.Children)
|
|
w.MoveToY(DrawHeight, second_wave_duration, EasingTypes.InSine);
|
|
|
|
DelayReset();
|
|
Delay(container_wait);
|
|
Schedule(() =>
|
|
{
|
|
if (State == Visibility.Hidden)
|
|
{
|
|
wavesContainer.MoveToY(0, waves_container_duration, EasingTypes.None);
|
|
}
|
|
});
|
|
}
|
|
|
|
protected abstract void TransitionOut();
|
|
|
|
public WaveOverlayContainer()
|
|
{
|
|
Masking = true;
|
|
|
|
AddInternal(wavesContainer = new Container<Wave>
|
|
{
|
|
RelativeSizeAxes = Axes.Both,
|
|
Origin = Anchor.TopCentre,
|
|
Anchor = Anchor.TopCentre,
|
|
Children = new Wave[]
|
|
{
|
|
firstWave = new Wave
|
|
{
|
|
Rotation = first_wave_rotation,
|
|
Colour = FirstWaveColour,
|
|
},
|
|
secondWave = new Wave
|
|
{
|
|
Origin = Anchor.TopRight,
|
|
Anchor = Anchor.TopRight,
|
|
Rotation = second_wave_rotation,
|
|
Colour = SecondWaveColour,
|
|
|
|
},
|
|
thirdWave = new Wave
|
|
{
|
|
Rotation = third_wave_rotation,
|
|
Colour = ThirdWaveColour,
|
|
},
|
|
fourthWave = new Wave
|
|
{
|
|
Origin = Anchor.TopRight,
|
|
Anchor = Anchor.TopRight,
|
|
Rotation = fourth_wave_rotation,
|
|
Colour = FourthWaveColour,
|
|
},
|
|
},
|
|
});
|
|
|
|
AddInternal(contentContainer = new Container
|
|
{
|
|
RelativeSizeAxes = Axes.Both,
|
|
Anchor = Anchor.BottomCentre,
|
|
Origin = Anchor.BottomCentre,
|
|
Children = new Drawable[]
|
|
{
|
|
new Box
|
|
{
|
|
RelativeSizeAxes = Axes.Both,
|
|
Colour = Color4.White.Opacity(50),
|
|
},
|
|
},
|
|
});
|
|
}
|
|
|
|
class Wave : Container
|
|
{
|
|
public Wave()
|
|
{
|
|
RelativeSizeAxes = Axes.Both;
|
|
Size = new Vector2(1.5f);
|
|
Masking = true;
|
|
EdgeEffect = new EdgeEffect
|
|
{
|
|
Type = EdgeEffectType.Shadow,
|
|
Colour = Color4.Black.Opacity(50),
|
|
Radius = 20f,
|
|
};
|
|
|
|
Children = new Drawable[]
|
|
{
|
|
new Box
|
|
{
|
|
RelativeSizeAxes = Axes.Both,
|
|
},
|
|
};
|
|
}
|
|
}
|
|
}
|
|
}
|