2019-01-24 16:43:03 +08:00
|
|
|
|
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
|
|
|
|
|
// See the LICENCE file in the repository root for full licence text.
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Diagnostics;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using osu.Framework.Graphics;
|
|
|
|
|
using osu.Framework.Graphics.Colour;
|
|
|
|
|
using osu.Framework.Graphics.Containers;
|
|
|
|
|
using osu.Framework.Graphics.Shapes;
|
|
|
|
|
using osu.Framework.Threading;
|
2018-11-04 03:58:35 +08:00
|
|
|
|
using osu.Game.Graphics;
|
2018-08-26 00:24:19 +08:00
|
|
|
|
using osu.Game.Tournament.Components;
|
2019-06-18 13:51:48 +08:00
|
|
|
|
using osu.Game.Tournament.Models;
|
2018-11-20 15:51:59 +08:00
|
|
|
|
using osuTK;
|
|
|
|
|
using osuTK.Graphics;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2018-08-25 20:40:40 +08:00
|
|
|
|
namespace osu.Game.Tournament.Screens.Drawings.Components
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
|
|
|
|
public class ScrollingTeamContainer : Container
|
|
|
|
|
{
|
|
|
|
|
public event Action OnScrollStarted;
|
2018-08-25 20:40:40 +08:00
|
|
|
|
public event Action<TournamentTeam> OnSelected;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2018-08-25 20:40:40 +08:00
|
|
|
|
private readonly List<TournamentTeam> availableTeams = new List<TournamentTeam>();
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
|
|
|
|
private readonly Container tracker;
|
|
|
|
|
|
|
|
|
|
#pragma warning disable 649
|
|
|
|
|
// set via reflection.
|
|
|
|
|
private float speed;
|
|
|
|
|
#pragma warning restore 649
|
|
|
|
|
|
|
|
|
|
private int expiredCount;
|
|
|
|
|
|
|
|
|
|
private float offset;
|
|
|
|
|
private float timeOffset;
|
|
|
|
|
private float leftPos => offset + timeOffset + expiredCount * ScrollingTeam.WIDTH;
|
|
|
|
|
|
|
|
|
|
private double lastTime;
|
|
|
|
|
|
|
|
|
|
private ScheduledDelegate delayedStateChangeDelegate;
|
|
|
|
|
|
|
|
|
|
public ScrollingTeamContainer()
|
|
|
|
|
{
|
|
|
|
|
AutoSizeAxes = Axes.Y;
|
|
|
|
|
|
|
|
|
|
Children = new Drawable[]
|
|
|
|
|
{
|
|
|
|
|
tracker = new Container
|
|
|
|
|
{
|
|
|
|
|
Anchor = Anchor.Centre,
|
|
|
|
|
Origin = Anchor.Centre,
|
|
|
|
|
|
|
|
|
|
AutoSizeAxes = Axes.Both,
|
2018-11-04 03:58:35 +08:00
|
|
|
|
Colour = OsuColour.Gray(0.33f),
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
|
|
|
|
Masking = true,
|
|
|
|
|
CornerRadius = 10f,
|
|
|
|
|
Alpha = 0,
|
|
|
|
|
|
|
|
|
|
Children = new[]
|
|
|
|
|
{
|
|
|
|
|
new Box
|
|
|
|
|
{
|
|
|
|
|
Anchor = Anchor.Centre,
|
|
|
|
|
Origin = Anchor.BottomCentre,
|
|
|
|
|
Size = new Vector2(2, 55),
|
|
|
|
|
|
|
|
|
|
Colour = ColourInfo.GradientVertical(Color4.Transparent, Color4.White)
|
|
|
|
|
},
|
|
|
|
|
new Box
|
|
|
|
|
{
|
|
|
|
|
Anchor = Anchor.Centre,
|
|
|
|
|
Origin = Anchor.TopCentre,
|
|
|
|
|
Size = new Vector2(2, 55),
|
|
|
|
|
|
|
|
|
|
Colour = ColourInfo.GradientVertical(Color4.White, Color4.Transparent)
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
|
2019-12-11 13:10:35 +08:00
|
|
|
|
private ScrollState scrollState;
|
2018-08-25 20:40:40 +08:00
|
|
|
|
|
2019-12-11 13:10:35 +08:00
|
|
|
|
private void setScrollState(ScrollState newstate)
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
2019-12-11 13:10:35 +08:00
|
|
|
|
if (scrollState == newstate)
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
delayedStateChangeDelegate?.Cancel();
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2019-12-11 13:10:35 +08:00
|
|
|
|
switch (scrollState = newstate)
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
2019-12-11 13:10:35 +08:00
|
|
|
|
case ScrollState.Scrolling:
|
|
|
|
|
resetSelected();
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2019-12-11 13:10:35 +08:00
|
|
|
|
OnScrollStarted?.Invoke();
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2019-12-11 13:10:35 +08:00
|
|
|
|
speedTo(1000f, 200);
|
|
|
|
|
tracker.FadeOut(100);
|
|
|
|
|
break;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2019-12-11 13:10:35 +08:00
|
|
|
|
case ScrollState.Stopping:
|
|
|
|
|
speedTo(0f, 2000);
|
|
|
|
|
tracker.FadeIn(200);
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2019-12-11 13:10:35 +08:00
|
|
|
|
delayedStateChangeDelegate = Scheduler.AddDelayed(() => setScrollState(ScrollState.Stopped), 2300);
|
|
|
|
|
break;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2019-12-11 13:10:35 +08:00
|
|
|
|
case ScrollState.Stopped:
|
|
|
|
|
// Find closest to center
|
|
|
|
|
if (!Children.Any())
|
2018-04-13 17:19:50 +08:00
|
|
|
|
break;
|
2019-04-01 11:44:46 +08:00
|
|
|
|
|
2019-12-11 13:10:35 +08:00
|
|
|
|
ScrollingTeam closest = null;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2019-12-11 13:10:35 +08:00
|
|
|
|
foreach (var c in Children)
|
|
|
|
|
{
|
|
|
|
|
if (!(c is ScrollingTeam stc))
|
|
|
|
|
continue;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2019-12-11 13:10:35 +08:00
|
|
|
|
if (closest == null)
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
2019-12-11 13:10:35 +08:00
|
|
|
|
closest = stc;
|
|
|
|
|
continue;
|
|
|
|
|
}
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2019-12-11 13:10:35 +08:00
|
|
|
|
float o = Math.Abs(c.Position.X + c.DrawWidth / 2f - DrawWidth / 2f);
|
|
|
|
|
float lastOffset = Math.Abs(closest.Position.X + closest.DrawWidth / 2f - DrawWidth / 2f);
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2019-12-11 13:10:35 +08:00
|
|
|
|
if (o < lastOffset)
|
|
|
|
|
closest = stc;
|
|
|
|
|
}
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2019-12-11 13:10:35 +08:00
|
|
|
|
Trace.Assert(closest != null, "closest != null");
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2019-12-11 13:10:35 +08:00
|
|
|
|
// ReSharper disable once PossibleNullReferenceException
|
|
|
|
|
offset += DrawWidth / 2f - (closest.Position.X + closest.DrawWidth / 2f);
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2019-12-11 13:10:35 +08:00
|
|
|
|
ScrollingTeam st = closest;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2019-12-11 13:10:35 +08:00
|
|
|
|
availableTeams.RemoveAll(at => at == st.Team);
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2019-12-11 13:10:35 +08:00
|
|
|
|
st.Selected = true;
|
|
|
|
|
OnSelected?.Invoke(st.Team);
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2019-12-11 13:10:35 +08:00
|
|
|
|
delayedStateChangeDelegate = Scheduler.AddDelayed(() => setScrollState(ScrollState.Idle), 10000);
|
|
|
|
|
break;
|
2019-04-01 11:44:46 +08:00
|
|
|
|
|
2019-12-11 13:10:35 +08:00
|
|
|
|
case ScrollState.Idle:
|
|
|
|
|
resetSelected();
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2019-12-11 13:10:35 +08:00
|
|
|
|
OnScrollStarted?.Invoke();
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2019-12-11 13:10:35 +08:00
|
|
|
|
speedTo(40f, 200);
|
|
|
|
|
tracker.FadeOut(100);
|
|
|
|
|
break;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2018-08-25 20:40:40 +08:00
|
|
|
|
public void AddTeam(TournamentTeam team)
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
|
|
|
|
if (availableTeams.Contains(team))
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
availableTeams.Add(team);
|
|
|
|
|
|
|
|
|
|
RemoveAll(c => c is ScrollingTeam);
|
2019-12-11 13:10:35 +08:00
|
|
|
|
setScrollState(ScrollState.Idle);
|
2018-04-13 17:19:50 +08:00
|
|
|
|
}
|
|
|
|
|
|
2018-08-25 20:40:40 +08:00
|
|
|
|
public void AddTeams(IEnumerable<TournamentTeam> teams)
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
|
|
|
|
if (teams == null)
|
|
|
|
|
return;
|
|
|
|
|
|
2018-08-25 20:40:40 +08:00
|
|
|
|
foreach (TournamentTeam t in teams)
|
2018-04-13 17:19:50 +08:00
|
|
|
|
AddTeam(t);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void ClearTeams()
|
|
|
|
|
{
|
|
|
|
|
availableTeams.Clear();
|
|
|
|
|
RemoveAll(c => c is ScrollingTeam);
|
2019-12-11 13:10:35 +08:00
|
|
|
|
setScrollState(ScrollState.Idle);
|
2018-04-13 17:19:50 +08:00
|
|
|
|
}
|
|
|
|
|
|
2018-08-25 20:40:40 +08:00
|
|
|
|
public void RemoveTeam(TournamentTeam team)
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
|
|
|
|
availableTeams.Remove(team);
|
|
|
|
|
|
|
|
|
|
foreach (var c in Children)
|
|
|
|
|
{
|
2019-11-12 18:16:51 +08:00
|
|
|
|
if (c is ScrollingTeam st)
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
2019-11-12 18:16:51 +08:00
|
|
|
|
if (st.Team == team)
|
|
|
|
|
{
|
|
|
|
|
st.FadeOut(200);
|
|
|
|
|
st.Expire();
|
|
|
|
|
}
|
2018-04-13 17:19:50 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void StartScrolling()
|
|
|
|
|
{
|
|
|
|
|
if (availableTeams.Count == 0)
|
|
|
|
|
return;
|
|
|
|
|
|
2019-12-11 13:10:35 +08:00
|
|
|
|
setScrollState(ScrollState.Scrolling);
|
2018-04-13 17:19:50 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void StopScrolling()
|
|
|
|
|
{
|
|
|
|
|
if (availableTeams.Count == 0)
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
switch (scrollState)
|
|
|
|
|
{
|
|
|
|
|
case ScrollState.Stopped:
|
|
|
|
|
case ScrollState.Idle:
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2019-12-11 13:10:35 +08:00
|
|
|
|
setScrollState(ScrollState.Stopping);
|
2018-04-13 17:19:50 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected override void LoadComplete()
|
|
|
|
|
{
|
|
|
|
|
base.LoadComplete();
|
2019-12-11 13:10:35 +08:00
|
|
|
|
setScrollState(ScrollState.Idle);
|
2018-04-13 17:19:50 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected override void UpdateAfterChildren()
|
|
|
|
|
{
|
|
|
|
|
timeOffset -= (float)(Time.Current - lastTime) / 1000 * speed;
|
|
|
|
|
lastTime = Time.Current;
|
|
|
|
|
|
|
|
|
|
if (availableTeams.Count > 0)
|
|
|
|
|
{
|
|
|
|
|
// Fill more than required to account for transformation + scrolling speed
|
|
|
|
|
while (Children.Count(c => c is ScrollingTeam) < DrawWidth * 2 / ScrollingTeam.WIDTH)
|
|
|
|
|
addFlags();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
float pos = leftPos;
|
|
|
|
|
|
|
|
|
|
foreach (var c in Children)
|
|
|
|
|
{
|
|
|
|
|
if (!(c is ScrollingTeam))
|
|
|
|
|
continue;
|
|
|
|
|
|
|
|
|
|
if (c.Position.X + c.DrawWidth < 0)
|
|
|
|
|
{
|
|
|
|
|
c.ClearTransforms();
|
|
|
|
|
c.Expire();
|
|
|
|
|
expiredCount++;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
c.MoveToX(pos, 100);
|
|
|
|
|
c.FadeTo(1.0f - Math.Abs(pos - DrawWidth / 2f) / (DrawWidth / 2.5f), 100);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pos += ScrollingTeam.WIDTH;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void addFlags()
|
|
|
|
|
{
|
2018-08-25 20:40:40 +08:00
|
|
|
|
foreach (TournamentTeam t in availableTeams)
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
|
|
|
|
Add(new ScrollingTeam(t)
|
|
|
|
|
{
|
|
|
|
|
X = leftPos + DrawWidth
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void resetSelected()
|
|
|
|
|
{
|
|
|
|
|
foreach (var c in Children)
|
|
|
|
|
{
|
2019-11-12 18:16:51 +08:00
|
|
|
|
if (c is ScrollingTeam st)
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
2019-11-12 18:16:51 +08:00
|
|
|
|
if (st.Selected)
|
|
|
|
|
{
|
|
|
|
|
st.Selected = false;
|
|
|
|
|
RemoveTeam(st.Team);
|
|
|
|
|
}
|
2018-04-13 17:19:50 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void speedTo(float value, double duration = 0, Easing easing = Easing.None) =>
|
|
|
|
|
this.TransformTo(nameof(speed), value, duration, easing);
|
|
|
|
|
|
2019-12-11 13:10:35 +08:00
|
|
|
|
protected enum ScrollState
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
|
|
|
|
None,
|
|
|
|
|
Idle,
|
|
|
|
|
Stopping,
|
|
|
|
|
Stopped,
|
|
|
|
|
Scrolling
|
|
|
|
|
}
|
|
|
|
|
|
2018-08-26 00:24:19 +08:00
|
|
|
|
public class ScrollingTeam : DrawableTournamentTeam
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
|
|
|
|
public const float WIDTH = 58;
|
|
|
|
|
public const float HEIGHT = 41;
|
|
|
|
|
|
|
|
|
|
private readonly Box outline;
|
|
|
|
|
|
|
|
|
|
private bool selected;
|
2018-08-25 20:40:40 +08:00
|
|
|
|
|
2018-04-13 17:19:50 +08:00
|
|
|
|
public bool Selected
|
|
|
|
|
{
|
2019-02-28 12:58:19 +08:00
|
|
|
|
get => selected;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
|
|
|
|
set
|
|
|
|
|
{
|
|
|
|
|
selected = value;
|
|
|
|
|
|
|
|
|
|
if (selected)
|
|
|
|
|
outline.FadeIn(100);
|
|
|
|
|
else
|
|
|
|
|
outline.FadeOut(100);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2018-08-25 20:40:40 +08:00
|
|
|
|
public ScrollingTeam(TournamentTeam team)
|
2018-08-26 00:24:19 +08:00
|
|
|
|
: base(team)
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
|
|
|
|
Anchor = Anchor.CentreLeft;
|
|
|
|
|
Origin = Anchor.CentreLeft;
|
|
|
|
|
|
|
|
|
|
Size = new Vector2(WIDTH, HEIGHT);
|
|
|
|
|
Masking = true;
|
|
|
|
|
CornerRadius = 8f;
|
|
|
|
|
|
|
|
|
|
Alpha = 0;
|
|
|
|
|
|
2018-08-26 00:24:19 +08:00
|
|
|
|
Flag.Anchor = Anchor.Centre;
|
|
|
|
|
Flag.Origin = Anchor.Centre;
|
|
|
|
|
Flag.Scale = new Vector2(0.9f);
|
|
|
|
|
|
|
|
|
|
InternalChildren = new Drawable[]
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
|
|
|
|
outline = new Box
|
|
|
|
|
{
|
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
2018-11-04 03:58:35 +08:00
|
|
|
|
Colour = OsuColour.Gray(0.33f),
|
2018-04-13 17:19:50 +08:00
|
|
|
|
Alpha = 0
|
|
|
|
|
},
|
2018-08-26 00:24:19 +08:00
|
|
|
|
Flag
|
2018-04-13 17:19:50 +08:00
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|