// Copyright (c) 2007-2017 ppy Pty Ltd . // Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE using osu.Framework.Graphics; using osu.Framework.Graphics.Sprites; using osu.Game.Rulesets.Mania.Objects; using osu.Game.Rulesets.UI; using OpenTK; using OpenTK.Graphics; using osu.Game.Rulesets.Mania.Judgements; using osu.Framework.Graphics.Containers; using System; using osu.Framework.Graphics.Primitives; using osu.Game.Graphics; using osu.Framework.Allocation; using OpenTK.Input; using System.Linq; using System.Collections.Generic; using osu.Framework.Extensions.IEnumerableExtensions; using osu.Game.Rulesets.Objects.Drawables; using osu.Game.Rulesets.Mania.Timing; using osu.Framework.Input; namespace osu.Game.Rulesets.Mania.UI { public class ManiaPlayfield : Playfield { public const float HIT_TARGET_POSITION = 50; private const float time_span_default = 500; private const float time_span_min = 10; private const float time_span_max = 20000; private const float time_span_step = 100; /// /// Default column keys, expanding outwards from the middle as more column are added. /// E.g. 2 columns use FJ, 4 columns use DFJK, 6 use SDFJKL, etc... /// private static readonly Key[] default_keys = { Key.A, Key.S, Key.D, Key.F, Key.J, Key.K, Key.L, Key.Semicolon }; private SpecialColumnPosition specialColumnPosition; /// /// The style to use for the special column. /// public SpecialColumnPosition SpecialColumnPosition { get { return specialColumnPosition; } set { if (IsLoaded) throw new InvalidOperationException($"Setting {nameof(SpecialColumnPosition)} after the playfield is loaded requires re-creating the playfield."); specialColumnPosition = value; } } public readonly FlowContainer Columns; private readonly TimingSectionContainer barlineContainer; private List normalColumnColours = new List(); private Color4 specialColumnColour; private readonly int columnCount; public ManiaPlayfield(int columnCount, IEnumerable timingSections) { this.columnCount = columnCount; if (columnCount <= 0) throw new ArgumentException("Can't have zero or fewer columns."); Children = new Drawable[] { new Container { Anchor = Anchor.Centre, Origin = Anchor.Centre, RelativeSizeAxes = Axes.Y, AutoSizeAxes = Axes.X, Children = new Drawable[] { new Box { RelativeSizeAxes = Axes.Both, Colour = Color4.Black }, Columns = new FillFlowContainer { Name = "Columns", RelativeSizeAxes = Axes.Y, AutoSizeAxes = Axes.X, Direction = FillDirection.Horizontal, Padding = new MarginPadding { Left = 1, Right = 1 }, Spacing = new Vector2(1, 0) }, barlineContainer = new TimingSectionContainer(timingSections) { Name = "Barlines", Anchor = Anchor.BottomCentre, Origin = Anchor.BottomCentre, RelativeSizeAxes = Axes.Both, Padding = new MarginPadding { Bottom = HIT_TARGET_POSITION } } } } }; for (int i = 0; i < columnCount; i++) Columns.Add(new Column(timingSections)); TimeSpan = time_span_default; } [BackgroundDependencyLoader] private void load(OsuColour colours) { normalColumnColours = new List { colours.RedDark, colours.GreenDark }; specialColumnColour = colours.BlueDark; // Set the special column + colour + key for (int i = 0; i < columnCount; i++) { Column column = Columns.Children.ElementAt(i); column.IsSpecial = isSpecialColumn(i); if (!column.IsSpecial) continue; column.Key = Key.Space; column.AccentColour = specialColumnColour; } var nonSpecialColumns = Columns.Children.Where(c => !c.IsSpecial).ToList(); // We'll set the colours of the non-special columns in a separate loop, because the non-special // column colours are mirrored across their centre and special styles mess with this for (int i = 0; i < Math.Ceiling(nonSpecialColumns.Count / 2f); i++) { Color4 colour = normalColumnColours[i % normalColumnColours.Count]; nonSpecialColumns[i].AccentColour = colour; nonSpecialColumns[nonSpecialColumns.Count - 1 - i].AccentColour = colour; } // We'll set the keys for non-special columns in another separate loop because it's not mirrored like the above colours // Todo: This needs to go when we get to bindings and use Button1, ..., ButtonN instead for (int i = 0; i < nonSpecialColumns.Count; i++) { Column column = nonSpecialColumns[i]; int keyOffset = default_keys.Length / 2 - nonSpecialColumns.Count / 2 + i; if (keyOffset >= 0 && keyOffset < default_keys.Length) column.Key = default_keys[keyOffset]; else // There is no default key defined for this column. Let's set this to Unknown for now // however note that this will be gone after bindings are in place column.Key = Key.Unknown; } } /// /// Whether the column index is a special column for this playfield. /// /// The 0-based column index. /// Whether the column is a special column. private bool isSpecialColumn(int column) { switch (SpecialColumnPosition) { default: case SpecialColumnPosition.Normal: return columnCount % 2 == 1 && column == columnCount / 2; case SpecialColumnPosition.Left: return column == 0; case SpecialColumnPosition.Right: return column == columnCount - 1; } } public override void Add(DrawableHitObject h) => Columns.Children.ElementAt(h.HitObject.Column).Add(h); protected override bool OnKeyDown(InputState state, KeyDownEventArgs args) { if (args.Repeat) return false; if (state.Keyboard.ControlPressed) { switch (args.Key) { case Key.Minus: TimeSpan += time_span_step; break; case Key.Plus: TimeSpan -= time_span_step; break; } } return false; } private double timeSpan; /// /// The amount of time which the length of the playfield spans. /// public double TimeSpan { get { return timeSpan; } set { if (timeSpan == value) return; timeSpan = value; barlineContainer.TimeSpan = value; Columns.Children.ForEach(c => c.TimingSectionContainer.TimeSpan = value); } } } }