2017-02-23 10:16:23 +08:00
|
|
|
|
// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
|
|
|
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
|
|
|
|
|
2017-02-23 10:26:50 +08:00
|
|
|
|
using System.Linq;
|
2017-02-23 11:17:59 +08:00
|
|
|
|
using osu.Framework;
|
2017-02-18 19:28:22 +08:00
|
|
|
|
using OpenTK.Graphics;
|
2017-02-23 10:16:23 +08:00
|
|
|
|
using osu.Framework.Graphics.Containers;
|
2017-02-18 19:28:22 +08:00
|
|
|
|
using osu.Game.Graphics;
|
|
|
|
|
using osu.Framework.Graphics;
|
|
|
|
|
using osu.Framework.Graphics.Sprites;
|
|
|
|
|
using OpenTK;
|
|
|
|
|
using osu.Framework.Graphics.Transformations;
|
|
|
|
|
|
2017-02-23 10:16:23 +08:00
|
|
|
|
namespace osu.Game.Overlays
|
|
|
|
|
{
|
|
|
|
|
public abstract class WaveOverlayContainer : OverlayContainer
|
|
|
|
|
{
|
|
|
|
|
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;
|
2017-02-23 11:17:59 +08:00
|
|
|
|
|
2017-02-23 10:16:23 +08:00
|
|
|
|
internal const float CONTENT_EXIT_DURATION = 600;
|
|
|
|
|
|
2017-02-23 11:17:59 +08:00
|
|
|
|
private const float waves_container_position = -150;
|
2017-02-23 10:16:23 +08:00
|
|
|
|
|
2017-02-23 10:26:50 +08:00
|
|
|
|
private Wave firstWave, secondWave, thirdWave, fourthWave;
|
|
|
|
|
|
|
|
|
|
private Container<Wave> wavesContainer;
|
2017-02-23 10:16:23 +08:00
|
|
|
|
|
|
|
|
|
private readonly Container contentContainer;
|
|
|
|
|
protected override Container<Drawable> Content => contentContainer;
|
|
|
|
|
|
|
|
|
|
public Color4 FirstWaveColour
|
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
2017-02-23 11:17:59 +08:00
|
|
|
|
return firstWave.Colour;
|
2017-02-23 10:16:23 +08:00
|
|
|
|
}
|
|
|
|
|
set
|
|
|
|
|
{
|
2017-02-23 11:17:59 +08:00
|
|
|
|
if (firstWave.Colour == value) return;
|
2017-02-23 10:16:23 +08:00
|
|
|
|
firstWave.Colour = value;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Color4 SecondWaveColour
|
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
2017-02-23 11:17:59 +08:00
|
|
|
|
return secondWave.Colour;
|
2017-02-23 10:16:23 +08:00
|
|
|
|
}
|
|
|
|
|
set
|
|
|
|
|
{
|
2017-02-23 11:17:59 +08:00
|
|
|
|
if (secondWave.Colour == value) return;
|
2017-02-23 10:16:23 +08:00
|
|
|
|
secondWave.Colour = value;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Color4 ThirdWaveColour
|
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
2017-02-23 11:17:59 +08:00
|
|
|
|
return thirdWave.Colour;
|
2017-02-23 10:16:23 +08:00
|
|
|
|
}
|
|
|
|
|
set
|
|
|
|
|
{
|
2017-02-23 11:17:59 +08:00
|
|
|
|
if (thirdWave.Colour == value) return;
|
2017-02-23 10:16:23 +08:00
|
|
|
|
thirdWave.Colour = value;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Color4 FourthWaveColour
|
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
2017-02-23 11:17:59 +08:00
|
|
|
|
return fourthWave.Colour;
|
2017-02-23 10:16:23 +08:00
|
|
|
|
}
|
|
|
|
|
set
|
|
|
|
|
{
|
2017-02-23 11:17:59 +08:00
|
|
|
|
if (fourthWave.Colour == value) return;
|
2017-02-23 10:16:23 +08:00
|
|
|
|
fourthWave.Colour = value;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2017-02-18 19:28:22 +08:00
|
|
|
|
protected override void PopIn()
|
|
|
|
|
{
|
2017-02-23 10:26:50 +08:00
|
|
|
|
foreach (var w in wavesContainer.Children)
|
2017-02-23 11:17:59 +08:00
|
|
|
|
w.State = Visibility.Visible;
|
2017-02-23 10:16:23 +08:00
|
|
|
|
|
|
|
|
|
DelayReset();
|
2017-02-18 19:28:22 +08:00
|
|
|
|
Delay(container_wait);
|
2017-02-23 10:16:23 +08:00
|
|
|
|
Schedule(() =>
|
|
|
|
|
{
|
|
|
|
|
if (State == Visibility.Visible)
|
|
|
|
|
{
|
2017-02-23 11:17:59 +08:00
|
|
|
|
//wavesContainer.MoveToY(waves_container_position, waves_container_duration, EasingTypes.None);
|
2017-02-23 10:16:23 +08:00
|
|
|
|
contentContainer.FadeIn(content_duration, EasingTypes.OutQuint);
|
|
|
|
|
contentContainer.MoveToY(0, content_duration, EasingTypes.OutQuint);
|
|
|
|
|
|
|
|
|
|
Delay(content_transition_wait);
|
|
|
|
|
Schedule(() => { if (State == Visibility.Visible) TransitionIn(); });
|
|
|
|
|
}
|
2017-02-18 19:28:22 +08:00
|
|
|
|
});
|
2017-02-23 10:16:23 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected abstract void TransitionIn();
|
|
|
|
|
|
2017-02-18 19:28:22 +08:00
|
|
|
|
protected override void PopOut()
|
2017-02-23 10:16:23 +08:00
|
|
|
|
{
|
2017-02-23 01:12:39 +08:00
|
|
|
|
contentContainer.FadeOut(CONTENT_EXIT_DURATION, EasingTypes.InSine);
|
2017-02-23 10:16:23 +08:00
|
|
|
|
contentContainer.MoveToY(DrawHeight, CONTENT_EXIT_DURATION, EasingTypes.InSine);
|
|
|
|
|
TransitionOut();
|
|
|
|
|
|
2017-02-23 10:26:50 +08:00
|
|
|
|
foreach (var w in wavesContainer.Children)
|
2017-02-23 11:17:59 +08:00
|
|
|
|
w.State = Visibility.Hidden;
|
2017-02-23 10:16:23 +08:00
|
|
|
|
|
|
|
|
|
DelayReset();
|
|
|
|
|
Delay(container_wait);
|
2017-02-23 11:17:59 +08:00
|
|
|
|
//wavesContainer.MoveToY(0, waves_container_duration);
|
2017-02-23 10:16:23 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected abstract void TransitionOut();
|
|
|
|
|
|
|
|
|
|
public WaveOverlayContainer()
|
|
|
|
|
{
|
|
|
|
|
Masking = true;
|
|
|
|
|
|
2017-02-23 11:17:59 +08:00
|
|
|
|
const int wave_count = 4;
|
|
|
|
|
|
|
|
|
|
const float total_duration = 800;
|
|
|
|
|
const float duration_change = 0;
|
|
|
|
|
|
|
|
|
|
float appearDuration = total_duration - wave_count * duration_change;
|
|
|
|
|
float disappearDuration = total_duration;
|
|
|
|
|
|
2017-02-23 10:26:50 +08:00
|
|
|
|
AddInternal(wavesContainer = new Container<Wave>
|
2017-02-23 10:16:23 +08:00
|
|
|
|
{
|
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
|
|
|
|
Origin = Anchor.TopCentre,
|
|
|
|
|
Anchor = Anchor.TopCentre,
|
2017-02-23 11:17:59 +08:00
|
|
|
|
Children = new[]
|
2017-02-23 10:16:23 +08:00
|
|
|
|
{
|
2017-02-23 10:22:01 +08:00
|
|
|
|
firstWave = new Wave
|
2017-02-23 10:16:23 +08:00
|
|
|
|
{
|
2017-02-23 11:17:59 +08:00
|
|
|
|
Rotation = 13,
|
|
|
|
|
FinalPosition = -830,
|
|
|
|
|
TransitionDurationAppear = (appearDuration += duration_change),
|
|
|
|
|
TransitionDurationDisappear = (disappearDuration -= duration_change),
|
2017-02-23 10:16:23 +08:00
|
|
|
|
},
|
2017-02-23 10:22:01 +08:00
|
|
|
|
secondWave = new Wave
|
2017-02-23 10:16:23 +08:00
|
|
|
|
{
|
|
|
|
|
Origin = Anchor.TopRight,
|
|
|
|
|
Anchor = Anchor.TopRight,
|
2017-02-23 11:17:59 +08:00
|
|
|
|
Rotation = -7,
|
|
|
|
|
FinalPosition = -460,
|
|
|
|
|
TransitionDurationAppear = (appearDuration += duration_change),
|
|
|
|
|
TransitionDurationDisappear = (disappearDuration -= duration_change),
|
2017-02-23 10:16:23 +08:00
|
|
|
|
},
|
2017-02-23 10:22:01 +08:00
|
|
|
|
thirdWave = new Wave
|
2017-02-23 10:16:23 +08:00
|
|
|
|
{
|
2017-02-23 11:17:59 +08:00
|
|
|
|
Rotation = 4,
|
|
|
|
|
FinalPosition = -290,
|
|
|
|
|
TransitionDurationAppear = (appearDuration += duration_change),
|
|
|
|
|
TransitionDurationDisappear = (disappearDuration -= duration_change),
|
2017-02-23 10:16:23 +08:00
|
|
|
|
},
|
2017-02-23 10:22:01 +08:00
|
|
|
|
fourthWave = new Wave
|
2017-02-23 10:16:23 +08:00
|
|
|
|
{
|
|
|
|
|
Origin = Anchor.TopRight,
|
|
|
|
|
Anchor = Anchor.TopRight,
|
2017-02-23 11:17:59 +08:00
|
|
|
|
Rotation = -2,
|
|
|
|
|
FinalPosition = -120,
|
|
|
|
|
TransitionDurationAppear = (appearDuration += duration_change),
|
|
|
|
|
TransitionDurationDisappear = (disappearDuration -= duration_change),
|
2017-02-23 10:16:23 +08:00
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
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),
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
});
|
2017-02-23 10:22:01 +08:00
|
|
|
|
}
|
|
|
|
|
|
2017-02-23 11:17:59 +08:00
|
|
|
|
class Wave : Container, IStateful<Visibility>
|
2017-02-23 10:22:01 +08:00
|
|
|
|
{
|
2017-02-23 11:17:59 +08:00
|
|
|
|
public float FinalPosition;
|
|
|
|
|
public float TransitionDurationAppear;
|
|
|
|
|
public float TransitionDurationDisappear;
|
|
|
|
|
|
2017-02-23 10:22:01 +08:00
|
|
|
|
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,
|
|
|
|
|
},
|
|
|
|
|
};
|
|
|
|
|
}
|
2017-02-23 11:17:59 +08:00
|
|
|
|
|
|
|
|
|
private Visibility state;
|
|
|
|
|
public Visibility State
|
|
|
|
|
{
|
|
|
|
|
get { return state; }
|
|
|
|
|
set
|
|
|
|
|
{
|
|
|
|
|
if (value == state) return;
|
|
|
|
|
state = value;
|
|
|
|
|
|
|
|
|
|
switch (value)
|
|
|
|
|
{
|
|
|
|
|
case Visibility.Hidden:
|
|
|
|
|
MoveToY(DrawHeight / Height, TransitionDurationDisappear, EasingTypes.OutSine);
|
|
|
|
|
break;
|
|
|
|
|
case Visibility.Visible:
|
|
|
|
|
MoveToY(FinalPosition, TransitionDurationAppear, EasingTypes.Out);
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2017-02-23 10:16:23 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|