1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 03:27:24 +08:00
osu-lazer/osu.Game/Storyboards/CommandTimeline.cs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

90 lines
2.6 KiB
C#
Raw Normal View History

// 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
2022-06-17 15:37:17 +08:00
#nullable disable
2017-09-08 05:55:05 +08:00
using osu.Framework.Graphics;
2017-09-09 17:00:58 +08:00
using System;
2017-09-08 05:55:05 +08:00
using System.Collections.Generic;
using System.Linq;
2018-04-13 17:19:50 +08:00
2017-09-08 05:55:05 +08:00
namespace osu.Game.Storyboards
{
2017-09-08 19:04:53 +08:00
public class CommandTimeline<T> : ICommandTimeline
2017-09-08 05:55:05 +08:00
{
private readonly List<TypedCommand> commands = new List<TypedCommand>();
public IEnumerable<TypedCommand> Commands => commands.OrderBy(c => c.StartTime);
2018-04-13 17:19:50 +08:00
public bool HasCommands => commands.Count > 0;
2018-04-13 17:19:50 +08:00
public double StartTime { get; private set; } = double.MaxValue;
public double EndTime { get; private set; } = double.MinValue;
2018-04-13 17:19:50 +08:00
public T StartValue { get; private set; }
public T EndValue { get; private set; }
2018-04-13 17:19:50 +08:00
2017-09-08 05:55:05 +08:00
public void Add(Easing easing, double startTime, double endTime, T startValue, T endValue)
{
if (endTime < startTime)
{
endTime = startTime;
}
2018-04-13 17:19:50 +08:00
commands.Add(new TypedCommand { Easing = easing, StartTime = startTime, EndTime = endTime, StartValue = startValue, EndValue = endValue });
if (startTime < StartTime)
{
StartValue = startValue;
StartTime = startTime;
}
2018-04-13 17:19:50 +08:00
if (endTime > EndTime)
{
EndValue = endValue;
EndTime = endTime;
}
2017-09-08 05:55:05 +08:00
}
2018-04-13 17:19:50 +08:00
2017-09-08 05:55:05 +08:00
public override string ToString()
=> $"{commands.Count} command(s)";
2018-04-13 17:19:50 +08:00
2017-09-08 19:04:53 +08:00
public class TypedCommand : ICommand
2017-09-08 05:55:05 +08:00
{
public Easing Easing { get; set; }
public double StartTime { get; set; }
public double EndTime { get; set; }
public double Duration => EndTime - StartTime;
2018-04-13 17:19:50 +08:00
2017-09-08 05:55:05 +08:00
public T StartValue;
public T EndValue;
2018-04-13 17:19:50 +08:00
2017-09-09 17:00:58 +08:00
public int CompareTo(ICommand other)
{
int result = StartTime.CompareTo(other.StartTime);
2017-09-09 17:00:58 +08:00
if (result != 0) return result;
2019-02-28 12:31:40 +08:00
2017-09-09 17:00:58 +08:00
return EndTime.CompareTo(other.EndTime);
}
2018-04-13 17:19:50 +08:00
2017-09-08 05:55:05 +08:00
public override string ToString()
=> $"{StartTime} -> {EndTime}, {StartValue} -> {EndValue} {Easing}";
}
}
2018-04-13 17:19:50 +08:00
2017-09-08 19:04:53 +08:00
public interface ICommandTimeline
2017-09-08 05:55:05 +08:00
{
double StartTime { get; }
double EndTime { get; }
bool HasCommands { get; }
}
2018-04-13 17:19:50 +08:00
2017-09-09 17:00:58 +08:00
public interface ICommand : IComparable<ICommand>
{
Easing Easing { get; set; }
double StartTime { get; set; }
double EndTime { get; set; }
double Duration { get; }
}
2017-09-08 05:55:05 +08:00
}