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

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

119 lines
3.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
using System;
2018-11-20 15:51:59 +08:00
using osuTK;
using osuTK.Graphics;
2017-09-09 21:34:26 +08:00
using osu.Framework.Graphics;
2017-09-08 05:55:05 +08:00
using System.Collections.Generic;
using System.Linq;
using Newtonsoft.Json;
2018-04-13 17:19:50 +08:00
2017-09-08 05:55:05 +08:00
namespace osu.Game.Storyboards
{
2017-09-09 00:00:17 +08:00
public delegate CommandTimeline<T> CommandTimelineSelector<T>(CommandTimelineGroup commandTimelineGroup);
2018-04-13 17:19:50 +08:00
2017-09-08 05:55:05 +08:00
public class CommandTimelineGroup
{
public CommandTimeline<float> X = new CommandTimeline<float>();
public CommandTimeline<float> Y = new CommandTimeline<float>();
public CommandTimeline<float> Scale = new CommandTimeline<float>();
public CommandTimeline<Vector2> VectorScale = new CommandTimeline<Vector2>();
2017-09-08 05:55:05 +08:00
public CommandTimeline<float> Rotation = new CommandTimeline<float>();
public CommandTimeline<Color4> Colour = new CommandTimeline<Color4>();
public CommandTimeline<float> Alpha = new CommandTimeline<float>();
2019-08-21 12:29:50 +08:00
public CommandTimeline<BlendingParameters> BlendingParameters = new CommandTimeline<BlendingParameters>();
2017-09-08 05:55:05 +08:00
public CommandTimeline<bool> FlipH = new CommandTimeline<bool>();
public CommandTimeline<bool> FlipV = new CommandTimeline<bool>();
2018-04-13 17:19:50 +08:00
private readonly ICommandTimeline[] timelines;
public CommandTimelineGroup()
{
timelines = new ICommandTimeline[]
{
X,
Y,
Scale,
VectorScale,
Rotation,
Colour,
Alpha,
BlendingParameters,
FlipH,
FlipV
};
}
[JsonIgnore]
public double CommandsStartTime
2017-09-08 05:55:05 +08:00
{
get
{
double min = double.MaxValue;
for (int i = 0; i < timelines.Length; i++)
min = Math.Min(min, timelines[i].StartTime);
return min;
2017-09-08 05:55:05 +08:00
}
}
2018-04-13 17:19:50 +08:00
[JsonIgnore]
public double CommandsEndTime
{
get
{
double max = double.MinValue;
2018-04-13 17:19:50 +08:00
for (int i = 0; i < timelines.Length; i++)
max = Math.Max(max, timelines[i].EndTime);
return max;
}
}
2018-04-13 17:19:50 +08:00
[JsonIgnore]
2017-09-09 00:03:04 +08:00
public double CommandsDuration => CommandsEndTime - CommandsStartTime;
2018-04-13 17:19:50 +08:00
[JsonIgnore]
2017-09-09 00:03:04 +08:00
public virtual double StartTime => CommandsStartTime;
2018-04-13 17:19:50 +08:00
[JsonIgnore]
2017-09-09 00:03:04 +08:00
public virtual double EndTime => CommandsEndTime;
2018-04-13 17:19:50 +08:00
[JsonIgnore]
public bool HasCommands
{
get
{
for (int i = 0; i < timelines.Length; i++)
{
if (timelines[i].HasCommands)
return true;
}
return false;
}
}
2018-04-13 17:19:50 +08:00
2017-09-09 00:00:17 +08:00
public virtual IEnumerable<CommandTimeline<T>.TypedCommand> GetCommands<T>(CommandTimelineSelector<T> timelineSelector, double offset = 0)
2017-09-08 05:55:05 +08:00
{
2017-09-09 00:00:17 +08:00
if (offset != 0)
2019-11-11 19:53:22 +08:00
{
2017-09-09 00:00:17 +08:00
return timelineSelector(this).Commands.Select(command =>
new CommandTimeline<T>.TypedCommand
{
Easing = command.Easing,
StartTime = offset + command.StartTime,
EndTime = offset + command.EndTime,
StartValue = command.StartValue,
EndValue = command.EndValue,
});
2019-11-11 19:53:22 +08:00
}
2018-04-13 17:19:50 +08:00
2017-09-09 00:00:17 +08:00
return timelineSelector(this).Commands;
}
2017-09-08 05:55:05 +08:00
}
}