mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 12:17:46 +08:00
commit
703ce259a9
@ -123,6 +123,8 @@ namespace osu.Game.Graphics.UserInterface
|
|||||||
set { label.Text = value; }
|
set { label.Text = value; }
|
||||||
}
|
}
|
||||||
|
|
||||||
|
protected readonly TextAwesome Icon;
|
||||||
|
|
||||||
private Color4? accentColour;
|
private Color4? accentColour;
|
||||||
public virtual Color4 AccentColour
|
public virtual Color4 AccentColour
|
||||||
{
|
{
|
||||||
@ -145,19 +147,19 @@ namespace osu.Game.Graphics.UserInterface
|
|||||||
|
|
||||||
Foreground.Children = new Drawable[]
|
Foreground.Children = new Drawable[]
|
||||||
{
|
{
|
||||||
label = new OsuSpriteText
|
label = new OsuSpriteText
|
||||||
{
|
{
|
||||||
Anchor = Anchor.CentreLeft,
|
Anchor = Anchor.CentreLeft,
|
||||||
Origin = Anchor.CentreLeft,
|
Origin = Anchor.CentreLeft,
|
||||||
},
|
},
|
||||||
new TextAwesome
|
Icon = new TextAwesome
|
||||||
{
|
{
|
||||||
Icon = FontAwesome.fa_chevron_down,
|
Icon = FontAwesome.fa_chevron_down,
|
||||||
Anchor = Anchor.CentreRight,
|
Anchor = Anchor.CentreRight,
|
||||||
Origin = Anchor.CentreRight,
|
Origin = Anchor.CentreRight,
|
||||||
Margin = new MarginPadding { Right = 4 },
|
Margin = new MarginPadding { Right = 4 },
|
||||||
TextSize = 20
|
TextSize = 20
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
137
osu.Game/Overlays/Music/FilterControl.cs
Normal file
137
osu.Game/Overlays/Music/FilterControl.cs
Normal file
@ -0,0 +1,137 @@
|
|||||||
|
// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
|
||||||
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
||||||
|
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using osu.Framework.Allocation;
|
||||||
|
using osu.Framework.Extensions.Color4Extensions;
|
||||||
|
using osu.Framework.Graphics;
|
||||||
|
using osu.Framework.Graphics.Containers;
|
||||||
|
using osu.Framework.Graphics.Primitives;
|
||||||
|
using osu.Framework.Graphics.UserInterface;
|
||||||
|
using osu.Game.Graphics;
|
||||||
|
using osu.Game.Graphics.UserInterface;
|
||||||
|
using osu.Game.Screens.Select;
|
||||||
|
using OpenTK;
|
||||||
|
using OpenTK.Graphics;
|
||||||
|
using System;
|
||||||
|
|
||||||
|
namespace osu.Game.Overlays.Music
|
||||||
|
{
|
||||||
|
internal class FilterControl : Container
|
||||||
|
{
|
||||||
|
public readonly FilterTextBox Search;
|
||||||
|
|
||||||
|
public FilterControl()
|
||||||
|
{
|
||||||
|
Children = new Drawable[]
|
||||||
|
{
|
||||||
|
new FillFlowContainer
|
||||||
|
{
|
||||||
|
RelativeSizeAxes = Axes.X,
|
||||||
|
AutoSizeAxes = Axes.Y,
|
||||||
|
Spacing = new Vector2(0f, 10f),
|
||||||
|
Children = new Drawable[]
|
||||||
|
{
|
||||||
|
Search = new FilterTextBox
|
||||||
|
{
|
||||||
|
RelativeSizeAxes = Axes.X,
|
||||||
|
Height = 40,
|
||||||
|
Exit = () => ExitRequested?.Invoke(),
|
||||||
|
},
|
||||||
|
new CollectionsDropdown<PlaylistCollection>
|
||||||
|
{
|
||||||
|
RelativeSizeAxes = Axes.X,
|
||||||
|
Items = new[] { new KeyValuePair<string, PlaylistCollection>(@"All", PlaylistCollection.All) },
|
||||||
|
}
|
||||||
|
},
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
|
Search.Current.ValueChanged += current_ValueChanged;
|
||||||
|
}
|
||||||
|
|
||||||
|
private void current_ValueChanged(string newValue) => FilterChanged?.Invoke(newValue);
|
||||||
|
|
||||||
|
public Action ExitRequested;
|
||||||
|
|
||||||
|
public Action<string> FilterChanged;
|
||||||
|
|
||||||
|
public class FilterTextBox : SearchTextBox
|
||||||
|
{
|
||||||
|
private Color4 backgroundColour;
|
||||||
|
|
||||||
|
protected override Color4 BackgroundUnfocused => backgroundColour;
|
||||||
|
protected override Color4 BackgroundFocused => backgroundColour;
|
||||||
|
|
||||||
|
public FilterTextBox()
|
||||||
|
{
|
||||||
|
Masking = true;
|
||||||
|
CornerRadius = 5;
|
||||||
|
}
|
||||||
|
|
||||||
|
[BackgroundDependencyLoader]
|
||||||
|
private void load(OsuColour colours)
|
||||||
|
{
|
||||||
|
backgroundColour = colours.Gray2;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private class CollectionsDropdown<T> : OsuDropdown<T>
|
||||||
|
{
|
||||||
|
protected override DropdownHeader CreateHeader() => new CollectionsHeader { AccentColour = AccentColour };
|
||||||
|
protected override Menu CreateMenu() => new CollectionsMenu();
|
||||||
|
|
||||||
|
[BackgroundDependencyLoader]
|
||||||
|
private void load(OsuColour colours)
|
||||||
|
{
|
||||||
|
AccentColour = colours.Gray6;
|
||||||
|
}
|
||||||
|
|
||||||
|
private class CollectionsHeader : OsuDropdownHeader
|
||||||
|
{
|
||||||
|
[BackgroundDependencyLoader]
|
||||||
|
private void load(OsuColour colours)
|
||||||
|
{
|
||||||
|
BackgroundColour = colours.Gray4;
|
||||||
|
}
|
||||||
|
|
||||||
|
public CollectionsHeader()
|
||||||
|
{
|
||||||
|
CornerRadius = 5;
|
||||||
|
Height = 30;
|
||||||
|
Icon.TextSize = 14;
|
||||||
|
Icon.Margin = new MarginPadding(0);
|
||||||
|
Foreground.Padding = new MarginPadding { Top = 4, Bottom = 4, Left = 10, Right = 10 };
|
||||||
|
EdgeEffect = new EdgeEffect
|
||||||
|
{
|
||||||
|
Type = EdgeEffectType.Shadow,
|
||||||
|
Colour = Color4.Black.Opacity(0.3f),
|
||||||
|
Radius = 3,
|
||||||
|
Offset = new Vector2(0f, 1f),
|
||||||
|
};
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private class CollectionsMenu : OsuMenu
|
||||||
|
{
|
||||||
|
[BackgroundDependencyLoader]
|
||||||
|
private void load(OsuColour colours)
|
||||||
|
{
|
||||||
|
Background.Colour = colours.Gray4;
|
||||||
|
}
|
||||||
|
|
||||||
|
public CollectionsMenu()
|
||||||
|
{
|
||||||
|
CornerRadius = 5;
|
||||||
|
EdgeEffect = new EdgeEffect
|
||||||
|
{
|
||||||
|
Type = EdgeEffectType.Shadow,
|
||||||
|
Colour = Color4.Black.Opacity(0.3f),
|
||||||
|
Radius = 3,
|
||||||
|
Offset = new Vector2(0f, 1f),
|
||||||
|
};
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
119
osu.Game/Overlays/Music/PlaylistItem.cs
Normal file
119
osu.Game/Overlays/Music/PlaylistItem.cs
Normal file
@ -0,0 +1,119 @@
|
|||||||
|
// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
|
||||||
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
||||||
|
|
||||||
|
using System;
|
||||||
|
using osu.Framework.Allocation;
|
||||||
|
using osu.Framework.Graphics;
|
||||||
|
using osu.Framework.Graphics.Containers;
|
||||||
|
using osu.Framework.Graphics.Primitives;
|
||||||
|
using osu.Game.Database;
|
||||||
|
using osu.Game.Graphics;
|
||||||
|
using osu.Game.Graphics.Sprites;
|
||||||
|
using OpenTK;
|
||||||
|
using OpenTK.Graphics;
|
||||||
|
using osu.Framework.Localisation;
|
||||||
|
|
||||||
|
namespace osu.Game.Overlays.Music
|
||||||
|
{
|
||||||
|
internal class PlaylistItem : Container
|
||||||
|
{
|
||||||
|
private const float fade_duration = 100;
|
||||||
|
|
||||||
|
private Color4 hoverColour;
|
||||||
|
|
||||||
|
private TextAwesome handle;
|
||||||
|
private OsuSpriteText title;
|
||||||
|
|
||||||
|
public readonly BeatmapSetInfo BeatmapSetInfo;
|
||||||
|
|
||||||
|
public Action<BeatmapSetInfo> OnSelect;
|
||||||
|
|
||||||
|
private bool selected;
|
||||||
|
public bool Selected
|
||||||
|
{
|
||||||
|
get { return selected; }
|
||||||
|
set
|
||||||
|
{
|
||||||
|
if (value == selected) return;
|
||||||
|
selected = value;
|
||||||
|
|
||||||
|
Flush(true);
|
||||||
|
title.FadeColour(Selected ? hoverColour : Color4.White, fade_duration);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public PlaylistItem(BeatmapSetInfo setInfo)
|
||||||
|
{
|
||||||
|
BeatmapSetInfo = setInfo;
|
||||||
|
|
||||||
|
RelativeSizeAxes = Axes.X;
|
||||||
|
AutoSizeAxes = Axes.Y;
|
||||||
|
Padding = new MarginPadding { Top = 3, Bottom = 3 };
|
||||||
|
}
|
||||||
|
|
||||||
|
[BackgroundDependencyLoader]
|
||||||
|
private void load(OsuColour colours, LocalisationEngine localisation)
|
||||||
|
{
|
||||||
|
BeatmapMetadata metadata = BeatmapSetInfo.Metadata;
|
||||||
|
|
||||||
|
Children = new Drawable[]
|
||||||
|
{
|
||||||
|
handle = new TextAwesome
|
||||||
|
{
|
||||||
|
Anchor = Anchor.TopLeft,
|
||||||
|
Origin = Anchor.TopLeft,
|
||||||
|
TextSize = 12,
|
||||||
|
Colour = colours.Gray5,
|
||||||
|
Icon = FontAwesome.fa_bars,
|
||||||
|
Alpha = 0f,
|
||||||
|
Margin = new MarginPadding { Left = 5 },
|
||||||
|
Padding = new MarginPadding { Top = 2 },
|
||||||
|
},
|
||||||
|
new FillFlowContainer<OsuSpriteText>
|
||||||
|
{
|
||||||
|
RelativeSizeAxes = Axes.X,
|
||||||
|
AutoSizeAxes = Axes.Y,
|
||||||
|
Padding = new MarginPadding { Left = 20 },
|
||||||
|
Spacing = new Vector2(5f, 0f),
|
||||||
|
Children = new []
|
||||||
|
{
|
||||||
|
title = new OsuSpriteText
|
||||||
|
{
|
||||||
|
TextSize = 16,
|
||||||
|
Font = @"Exo2.0-Regular",
|
||||||
|
Current = localisation.GetUnicodePreference(metadata.TitleUnicode, metadata.Title),
|
||||||
|
},
|
||||||
|
new OsuSpriteText
|
||||||
|
{
|
||||||
|
TextSize = 14,
|
||||||
|
Font = @"Exo2.0-Bold",
|
||||||
|
Colour = colours.Gray9,
|
||||||
|
Padding = new MarginPadding { Top = 1 },
|
||||||
|
Current = localisation.GetUnicodePreference(metadata.ArtistUnicode, metadata.Artist),
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
|
hoverColour = colours.Yellow;
|
||||||
|
}
|
||||||
|
|
||||||
|
protected override bool OnHover(Framework.Input.InputState state)
|
||||||
|
{
|
||||||
|
handle.FadeIn(fade_duration);
|
||||||
|
|
||||||
|
return base.OnHover(state);
|
||||||
|
}
|
||||||
|
|
||||||
|
protected override void OnHoverLost(Framework.Input.InputState state)
|
||||||
|
{
|
||||||
|
handle.FadeOut(fade_duration);
|
||||||
|
}
|
||||||
|
|
||||||
|
protected override bool OnClick(Framework.Input.InputState state)
|
||||||
|
{
|
||||||
|
OnSelect?.Invoke(BeatmapSetInfo);
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
61
osu.Game/Overlays/Music/PlaylistList.cs
Normal file
61
osu.Game/Overlays/Music/PlaylistList.cs
Normal file
@ -0,0 +1,61 @@
|
|||||||
|
// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
|
||||||
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
||||||
|
|
||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Linq;
|
||||||
|
using osu.Framework.Graphics;
|
||||||
|
using osu.Framework.Graphics.Containers;
|
||||||
|
using osu.Game.Database;
|
||||||
|
|
||||||
|
namespace osu.Game.Overlays.Music
|
||||||
|
{
|
||||||
|
internal class PlaylistList : Container
|
||||||
|
{
|
||||||
|
private readonly FillFlowContainer<PlaylistItem> items;
|
||||||
|
|
||||||
|
public IEnumerable<BeatmapSetInfo> BeatmapSets
|
||||||
|
{
|
||||||
|
set
|
||||||
|
{
|
||||||
|
items.Children = value.Select(item => new PlaylistItem(item) { OnSelect = itemSelected }).ToList();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private void itemSelected(BeatmapSetInfo b)
|
||||||
|
{
|
||||||
|
OnSelect?.Invoke(b);
|
||||||
|
}
|
||||||
|
|
||||||
|
public Action<BeatmapSetInfo> OnSelect;
|
||||||
|
|
||||||
|
public BeatmapSetInfo SelectedItem
|
||||||
|
{
|
||||||
|
get { return items.Children.FirstOrDefault(i => i.Selected)?.BeatmapSetInfo; }
|
||||||
|
set
|
||||||
|
{
|
||||||
|
foreach (PlaylistItem s in items.Children)
|
||||||
|
s.Selected = s.BeatmapSetInfo.ID == value?.ID;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public PlaylistList()
|
||||||
|
{
|
||||||
|
Children = new Drawable[]
|
||||||
|
{
|
||||||
|
new ScrollContainer
|
||||||
|
{
|
||||||
|
RelativeSizeAxes = Axes.Both,
|
||||||
|
Children = new Drawable[]
|
||||||
|
{
|
||||||
|
items = new FillFlowContainer<PlaylistItem>
|
||||||
|
{
|
||||||
|
RelativeSizeAxes = Axes.X,
|
||||||
|
AutoSizeAxes = Axes.Y,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
};
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
169
osu.Game/Overlays/Music/PlaylistOverlay.cs
Normal file
169
osu.Game/Overlays/Music/PlaylistOverlay.cs
Normal file
@ -0,0 +1,169 @@
|
|||||||
|
// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
|
||||||
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
||||||
|
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Linq;
|
||||||
|
using System.Threading.Tasks;
|
||||||
|
using osu.Framework.Allocation;
|
||||||
|
using osu.Framework.Audio.Track;
|
||||||
|
using osu.Framework.Configuration;
|
||||||
|
using osu.Framework.Extensions.Color4Extensions;
|
||||||
|
using osu.Framework.Graphics;
|
||||||
|
using osu.Framework.Graphics.Containers;
|
||||||
|
using osu.Framework.Graphics.Primitives;
|
||||||
|
using osu.Framework.Graphics.Sprites;
|
||||||
|
using osu.Game.Beatmaps;
|
||||||
|
using osu.Game.Database;
|
||||||
|
using osu.Game.Graphics;
|
||||||
|
using OpenTK;
|
||||||
|
using OpenTK.Graphics;
|
||||||
|
using osu.Framework.Extensions;
|
||||||
|
|
||||||
|
namespace osu.Game.Overlays.Music
|
||||||
|
{
|
||||||
|
public class PlaylistOverlay : OverlayContainer
|
||||||
|
{
|
||||||
|
private const float transition_duration = 600;
|
||||||
|
|
||||||
|
private const float playlist_height = 510;
|
||||||
|
|
||||||
|
private FilterControl filter;
|
||||||
|
private PlaylistList list;
|
||||||
|
|
||||||
|
private TrackManager trackManager;
|
||||||
|
private BeatmapDatabase beatmaps;
|
||||||
|
|
||||||
|
private readonly Bindable<WorkingBeatmap> beatmapBacking = new Bindable<WorkingBeatmap>();
|
||||||
|
|
||||||
|
protected IEnumerable<BeatmapSetInfo> BeatmapSets;
|
||||||
|
|
||||||
|
[BackgroundDependencyLoader]
|
||||||
|
private void load(OsuGameBase game, BeatmapDatabase beatmaps, OsuColour colours)
|
||||||
|
{
|
||||||
|
this.beatmaps = beatmaps;
|
||||||
|
trackManager = game.Audio.Track;
|
||||||
|
|
||||||
|
Children = new Drawable[]
|
||||||
|
{
|
||||||
|
new Container
|
||||||
|
{
|
||||||
|
RelativeSizeAxes = Axes.Both,
|
||||||
|
CornerRadius = 5,
|
||||||
|
Masking = true,
|
||||||
|
EdgeEffect = new EdgeEffect
|
||||||
|
{
|
||||||
|
Type = EdgeEffectType.Shadow,
|
||||||
|
Colour = Color4.Black.Opacity(40),
|
||||||
|
Radius = 5,
|
||||||
|
},
|
||||||
|
Children = new Drawable[]
|
||||||
|
{
|
||||||
|
new Box
|
||||||
|
{
|
||||||
|
Colour = colours.Gray3,
|
||||||
|
RelativeSizeAxes = Axes.Both,
|
||||||
|
},
|
||||||
|
list = new PlaylistList
|
||||||
|
{
|
||||||
|
RelativeSizeAxes = Axes.Both,
|
||||||
|
Padding = new MarginPadding { Top = 95, Bottom = 10, Right = 10 },
|
||||||
|
OnSelect = itemSelected,
|
||||||
|
},
|
||||||
|
filter = new FilterControl
|
||||||
|
{
|
||||||
|
RelativeSizeAxes = Axes.X,
|
||||||
|
AutoSizeAxes = Axes.Y,
|
||||||
|
ExitRequested = () => State = Visibility.Hidden,
|
||||||
|
FilterChanged = filterChanged,
|
||||||
|
Padding = new MarginPadding(10),
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
|
list.BeatmapSets = BeatmapSets = beatmaps.GetAllWithChildren<BeatmapSetInfo>().ToList();
|
||||||
|
|
||||||
|
beatmapBacking.BindTo(game.Beatmap);
|
||||||
|
}
|
||||||
|
|
||||||
|
private void filterChanged(string newValue)
|
||||||
|
{
|
||||||
|
// TODO: implement
|
||||||
|
}
|
||||||
|
|
||||||
|
protected override void LoadComplete()
|
||||||
|
{
|
||||||
|
base.LoadComplete();
|
||||||
|
beatmapBacking.ValueChanged += b => list.SelectedItem = b?.BeatmapSetInfo;
|
||||||
|
beatmapBacking.TriggerChange();
|
||||||
|
}
|
||||||
|
|
||||||
|
protected override void PopIn()
|
||||||
|
{
|
||||||
|
filter.Search.HoldFocus = true;
|
||||||
|
Schedule(() => filter.Search.TriggerFocus());
|
||||||
|
|
||||||
|
ResizeTo(new Vector2(1, playlist_height), transition_duration, EasingTypes.OutQuint);
|
||||||
|
FadeIn(transition_duration, EasingTypes.OutQuint);
|
||||||
|
}
|
||||||
|
|
||||||
|
protected override void PopOut()
|
||||||
|
{
|
||||||
|
filter.Search.HoldFocus = false;
|
||||||
|
|
||||||
|
ResizeTo(new Vector2(1, 0), transition_duration, EasingTypes.OutQuint);
|
||||||
|
FadeOut(transition_duration);
|
||||||
|
}
|
||||||
|
|
||||||
|
private void itemSelected(BeatmapSetInfo set)
|
||||||
|
{
|
||||||
|
if (set.ID == (beatmapBacking.Value?.BeatmapSetInfo?.ID ?? -1))
|
||||||
|
{
|
||||||
|
beatmapBacking.Value?.Track?.Seek(0);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
playSpecified(set.Beatmaps[0]);
|
||||||
|
}
|
||||||
|
|
||||||
|
public void PlayPrevious()
|
||||||
|
{
|
||||||
|
var currentID = beatmapBacking.Value?.BeatmapSetInfo.ID ?? -1;
|
||||||
|
var available = BeatmapSets.Reverse();
|
||||||
|
|
||||||
|
var playable = available.SkipWhile(b => b.ID != currentID).Skip(1).FirstOrDefault() ?? available.FirstOrDefault();
|
||||||
|
|
||||||
|
if (playable != null)
|
||||||
|
playSpecified(playable.Beatmaps[0]);
|
||||||
|
}
|
||||||
|
|
||||||
|
public void PlayNext()
|
||||||
|
{
|
||||||
|
var currentID = beatmapBacking.Value?.BeatmapSetInfo.ID ?? -1;
|
||||||
|
var available = BeatmapSets;
|
||||||
|
|
||||||
|
var playable = available.SkipWhile(b => b.ID != currentID).Skip(1).FirstOrDefault() ?? available.FirstOrDefault();
|
||||||
|
|
||||||
|
if (playable != null)
|
||||||
|
playSpecified(playable.Beatmaps[0]);
|
||||||
|
}
|
||||||
|
|
||||||
|
private void playSpecified(BeatmapInfo info)
|
||||||
|
{
|
||||||
|
beatmapBacking.Value = beatmaps.GetWorkingBeatmap(info, beatmapBacking);
|
||||||
|
|
||||||
|
Task.Run(() =>
|
||||||
|
{
|
||||||
|
var track = beatmapBacking.Value.Track;
|
||||||
|
trackManager.SetExclusive(track);
|
||||||
|
track.Start();
|
||||||
|
}).ContinueWith(task => Schedule(task.ThrowIfFaulted), TaskContinuationOptions.OnlyOnFaulted);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
//todo: placeholder
|
||||||
|
public enum PlaylistCollection
|
||||||
|
{
|
||||||
|
All
|
||||||
|
}
|
||||||
|
}
|
@ -2,15 +2,12 @@
|
|||||||
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
||||||
|
|
||||||
using System;
|
using System;
|
||||||
using System.Collections.Generic;
|
|
||||||
using System.Diagnostics;
|
using System.Diagnostics;
|
||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
using OpenTK;
|
using OpenTK;
|
||||||
using OpenTK.Graphics;
|
using OpenTK.Graphics;
|
||||||
using osu.Framework.Allocation;
|
using osu.Framework.Allocation;
|
||||||
using osu.Framework.Audio.Track;
|
|
||||||
using osu.Framework.Configuration;
|
using osu.Framework.Configuration;
|
||||||
using osu.Framework.Extensions;
|
|
||||||
using osu.Framework.Extensions.Color4Extensions;
|
using osu.Framework.Extensions.Color4Extensions;
|
||||||
using osu.Framework.Graphics;
|
using osu.Framework.Graphics;
|
||||||
using osu.Framework.Graphics.Containers;
|
using osu.Framework.Graphics.Containers;
|
||||||
@ -19,43 +16,45 @@ using osu.Framework.Graphics.Sprites;
|
|||||||
using osu.Framework.Graphics.Textures;
|
using osu.Framework.Graphics.Textures;
|
||||||
using osu.Framework.Input;
|
using osu.Framework.Input;
|
||||||
using osu.Framework.Localisation;
|
using osu.Framework.Localisation;
|
||||||
using osu.Framework.MathUtils;
|
|
||||||
using osu.Game.Beatmaps;
|
using osu.Game.Beatmaps;
|
||||||
using osu.Game.Database;
|
using osu.Game.Database;
|
||||||
using osu.Game.Graphics;
|
using osu.Game.Graphics;
|
||||||
using osu.Game.Graphics.Sprites;
|
using osu.Game.Graphics.Sprites;
|
||||||
|
using osu.Framework.Threading;
|
||||||
|
using osu.Game.Overlays.Music;
|
||||||
|
|
||||||
namespace osu.Game.Overlays
|
namespace osu.Game.Overlays
|
||||||
{
|
{
|
||||||
public class MusicController : FocusedOverlayContainer
|
public class MusicController : FocusedOverlayContainer
|
||||||
{
|
{
|
||||||
private Drawable currentBackground;
|
private const float player_height = 130;
|
||||||
private DragBar progress;
|
|
||||||
private Button playButton;
|
|
||||||
private SpriteText title, artist;
|
|
||||||
|
|
||||||
private List<BeatmapSetInfo> playList;
|
private const float transition_length = 800;
|
||||||
private readonly List<BeatmapInfo> playHistory = new List<BeatmapInfo>();
|
|
||||||
private int playListIndex;
|
|
||||||
private int playHistoryIndex = -1;
|
|
||||||
|
|
||||||
private TrackManager trackManager;
|
|
||||||
private Bindable<WorkingBeatmap> beatmapSource;
|
|
||||||
private WorkingBeatmap current;
|
|
||||||
private BeatmapDatabase beatmaps;
|
|
||||||
private LocalisationEngine localisation;
|
|
||||||
|
|
||||||
private Container dragContainer;
|
|
||||||
|
|
||||||
private const float progress_height = 10;
|
private const float progress_height = 10;
|
||||||
|
|
||||||
private const float bottom_black_area_height = 55;
|
private const float bottom_black_area_height = 55;
|
||||||
|
|
||||||
|
private Drawable currentBackground;
|
||||||
|
private DragBar progressBar;
|
||||||
|
|
||||||
|
private Button playButton;
|
||||||
|
private Button playlistButton;
|
||||||
|
|
||||||
|
private SpriteText title, artist;
|
||||||
|
|
||||||
|
private PlaylistOverlay playlist;
|
||||||
|
|
||||||
|
private LocalisationEngine localisation;
|
||||||
|
|
||||||
|
private readonly Bindable<WorkingBeatmap> beatmapBacking = new Bindable<WorkingBeatmap>();
|
||||||
|
|
||||||
|
private Container dragContainer;
|
||||||
|
private Container playerContainer;
|
||||||
|
|
||||||
public MusicController()
|
public MusicController()
|
||||||
{
|
{
|
||||||
Width = 400;
|
Width = 400;
|
||||||
Height = 130;
|
|
||||||
|
|
||||||
Margin = new MarginPadding(10);
|
Margin = new MarginPadding(10);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -81,229 +80,207 @@ namespace osu.Game.Overlays
|
|||||||
}
|
}
|
||||||
|
|
||||||
[BackgroundDependencyLoader]
|
[BackgroundDependencyLoader]
|
||||||
private void load(OsuGameBase game, BeatmapDatabase beatmaps, OsuColour colours, LocalisationEngine localisation)
|
private void load(OsuGameBase game, OsuColour colours, LocalisationEngine localisation)
|
||||||
{
|
{
|
||||||
|
this.localisation = localisation;
|
||||||
|
|
||||||
Children = new Drawable[]
|
Children = new Drawable[]
|
||||||
{
|
{
|
||||||
dragContainer = new Container
|
dragContainer = new Container
|
||||||
{
|
{
|
||||||
Anchor = Anchor.Centre,
|
Anchor = Anchor.Centre,
|
||||||
Origin = Anchor.Centre,
|
Origin = Anchor.Centre,
|
||||||
Masking = true,
|
RelativeSizeAxes = Axes.X,
|
||||||
CornerRadius = 5,
|
AutoSizeAxes = Axes.Y,
|
||||||
EdgeEffect = new EdgeEffect
|
|
||||||
{
|
|
||||||
Type = EdgeEffectType.Shadow,
|
|
||||||
Colour = Color4.Black.Opacity(40),
|
|
||||||
Radius = 5,
|
|
||||||
},
|
|
||||||
RelativeSizeAxes = Axes.Both,
|
|
||||||
Children = new Drawable[]
|
Children = new Drawable[]
|
||||||
{
|
{
|
||||||
title = new OsuSpriteText
|
playlist = new PlaylistOverlay
|
||||||
{
|
{
|
||||||
Origin = Anchor.BottomCentre,
|
|
||||||
Anchor = Anchor.TopCentre,
|
|
||||||
Position = new Vector2(0, 40),
|
|
||||||
TextSize = 25,
|
|
||||||
Colour = Color4.White,
|
|
||||||
Text = @"Nothing to play",
|
|
||||||
Font = @"Exo2.0-MediumItalic"
|
|
||||||
},
|
|
||||||
artist = new OsuSpriteText
|
|
||||||
{
|
|
||||||
Origin = Anchor.TopCentre,
|
|
||||||
Anchor = Anchor.TopCentre,
|
|
||||||
Position = new Vector2(0, 45),
|
|
||||||
TextSize = 15,
|
|
||||||
Colour = Color4.White,
|
|
||||||
Text = @"Nothing to play",
|
|
||||||
Font = @"Exo2.0-BoldItalic"
|
|
||||||
},
|
|
||||||
new Container
|
|
||||||
{
|
|
||||||
Padding = new MarginPadding { Bottom = progress_height },
|
|
||||||
Height = bottom_black_area_height,
|
|
||||||
RelativeSizeAxes = Axes.X,
|
RelativeSizeAxes = Axes.X,
|
||||||
Origin = Anchor.BottomCentre,
|
Y = player_height + 10,
|
||||||
Anchor = Anchor.BottomCentre,
|
},
|
||||||
Children = new Drawable[]
|
playerContainer = new Container
|
||||||
|
{
|
||||||
|
RelativeSizeAxes = Axes.X,
|
||||||
|
Height = player_height,
|
||||||
|
Masking = true,
|
||||||
|
CornerRadius = 5,
|
||||||
|
EdgeEffect = new EdgeEffect
|
||||||
{
|
{
|
||||||
new FillFlowContainer<Button>
|
Type = EdgeEffectType.Shadow,
|
||||||
|
Colour = Color4.Black.Opacity(40),
|
||||||
|
Radius = 5,
|
||||||
|
},
|
||||||
|
Children = new[]
|
||||||
|
{
|
||||||
|
currentBackground = new Background(),
|
||||||
|
title = new OsuSpriteText
|
||||||
{
|
{
|
||||||
AutoSizeAxes = Axes.Both,
|
Origin = Anchor.BottomCentre,
|
||||||
Direction = FillDirection.Horizontal,
|
Anchor = Anchor.TopCentre,
|
||||||
Spacing = new Vector2(5),
|
Position = new Vector2(0, 40),
|
||||||
Origin = Anchor.Centre,
|
TextSize = 25,
|
||||||
Anchor = Anchor.Centre,
|
Colour = Color4.White,
|
||||||
Children = new[]
|
Text = @"Nothing to play",
|
||||||
|
Font = @"Exo2.0-MediumItalic"
|
||||||
|
},
|
||||||
|
artist = new OsuSpriteText
|
||||||
|
{
|
||||||
|
Origin = Anchor.TopCentre,
|
||||||
|
Anchor = Anchor.TopCentre,
|
||||||
|
Position = new Vector2(0, 45),
|
||||||
|
TextSize = 15,
|
||||||
|
Colour = Color4.White,
|
||||||
|
Text = @"Nothing to play",
|
||||||
|
Font = @"Exo2.0-BoldItalic"
|
||||||
|
},
|
||||||
|
new Container
|
||||||
|
{
|
||||||
|
Padding = new MarginPadding { Bottom = progress_height },
|
||||||
|
Height = bottom_black_area_height,
|
||||||
|
RelativeSizeAxes = Axes.X,
|
||||||
|
Origin = Anchor.BottomCentre,
|
||||||
|
Anchor = Anchor.BottomCentre,
|
||||||
|
Children = new Drawable[]
|
||||||
{
|
{
|
||||||
new Button
|
new FillFlowContainer<Button>
|
||||||
{
|
{
|
||||||
Action = prev,
|
AutoSizeAxes = Axes.Both,
|
||||||
Icon = FontAwesome.fa_step_backward,
|
Direction = FillDirection.Horizontal,
|
||||||
},
|
Spacing = new Vector2(5),
|
||||||
playButton = new Button
|
Origin = Anchor.Centre,
|
||||||
{
|
Anchor = Anchor.Centre,
|
||||||
Scale = new Vector2(1.4f),
|
Children = new[]
|
||||||
IconScale = new Vector2(1.4f),
|
|
||||||
Action = () =>
|
|
||||||
{
|
{
|
||||||
if (current?.Track == null) return;
|
new Button
|
||||||
if (current.Track.IsRunning)
|
{
|
||||||
current.Track.Stop();
|
Action = prev,
|
||||||
else
|
Icon = FontAwesome.fa_step_backward,
|
||||||
current.Track.Start();
|
},
|
||||||
},
|
playButton = new Button
|
||||||
Icon = FontAwesome.fa_play_circle_o,
|
{
|
||||||
|
Scale = new Vector2(1.4f),
|
||||||
|
IconScale = new Vector2(1.4f),
|
||||||
|
Action = play,
|
||||||
|
Icon = FontAwesome.fa_play_circle_o,
|
||||||
|
},
|
||||||
|
new Button
|
||||||
|
{
|
||||||
|
Action = next,
|
||||||
|
Icon = FontAwesome.fa_step_forward,
|
||||||
|
},
|
||||||
|
}
|
||||||
},
|
},
|
||||||
new Button
|
playlistButton = new Button
|
||||||
{
|
{
|
||||||
Action = next,
|
Origin = Anchor.Centre,
|
||||||
Icon = FontAwesome.fa_step_forward,
|
Anchor = Anchor.CentreRight,
|
||||||
|
Position = new Vector2(-bottom_black_area_height / 2, 0),
|
||||||
|
Icon = FontAwesome.fa_bars,
|
||||||
|
Action = () => playlist.ToggleVisibility(),
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
new Button
|
progressBar = new DragBar
|
||||||
{
|
{
|
||||||
Origin = Anchor.Centre,
|
Origin = Anchor.BottomCentre,
|
||||||
Anchor = Anchor.CentreRight,
|
Anchor = Anchor.BottomCentre,
|
||||||
Position = new Vector2(-bottom_black_area_height / 2, 0),
|
Height = progress_height,
|
||||||
Icon = FontAwesome.fa_bars,
|
Colour = colours.Yellow,
|
||||||
},
|
SeekRequested = seek
|
||||||
}
|
}
|
||||||
|
},
|
||||||
},
|
},
|
||||||
progress = new DragBar
|
|
||||||
{
|
|
||||||
Origin = Anchor.BottomCentre,
|
|
||||||
Anchor = Anchor.BottomCentre,
|
|
||||||
Height = progress_height,
|
|
||||||
Colour = colours.Yellow,
|
|
||||||
SeekRequested = seek
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
this.beatmaps = beatmaps;
|
beatmapBacking.BindTo(game.Beatmap);
|
||||||
trackManager = game.Audio.Track;
|
|
||||||
this.localisation = localisation;
|
|
||||||
|
|
||||||
beatmapSource = game.Beatmap ?? new Bindable<WorkingBeatmap>();
|
playlist.StateChanged += (c, s) => playlistButton.FadeColour(s == Visibility.Visible ? colours.Yellow : Color4.White, 200, EasingTypes.OutQuint);
|
||||||
playList = beatmaps.GetAllWithChildren<BeatmapSetInfo>();
|
|
||||||
|
|
||||||
currentBackground = new MusicControllerBackground();
|
|
||||||
dragContainer.Add(currentBackground);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
protected override void LoadComplete()
|
protected override void LoadComplete()
|
||||||
{
|
{
|
||||||
beatmapSource.ValueChanged += workingChanged;
|
beatmapBacking.ValueChanged += beatmapChanged;
|
||||||
beatmapSource.TriggerChange();
|
beatmapBacking.TriggerChange();
|
||||||
|
|
||||||
base.LoadComplete();
|
base.LoadComplete();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
protected override void UpdateAfterChildren()
|
||||||
|
{
|
||||||
|
base.UpdateAfterChildren();
|
||||||
|
Height = dragContainer.Height;
|
||||||
|
}
|
||||||
|
|
||||||
protected override void Update()
|
protected override void Update()
|
||||||
{
|
{
|
||||||
base.Update();
|
base.Update();
|
||||||
|
|
||||||
if (pendingBeatmapSwitch != null)
|
|
||||||
{
|
|
||||||
pendingBeatmapSwitch();
|
|
||||||
pendingBeatmapSwitch = null;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (current?.TrackLoaded ?? false)
|
if (current?.TrackLoaded ?? false)
|
||||||
{
|
{
|
||||||
progress.UpdatePosition(current.Track.Length == 0 ? 0 : (float)(current.Track.CurrentTime / current.Track.Length));
|
var track = current.Track;
|
||||||
playButton.Icon = current.Track.IsRunning ? FontAwesome.fa_pause_circle_o : FontAwesome.fa_play_circle_o;
|
|
||||||
|
|
||||||
if (current.Track.HasCompleted && !current.Track.Looping) next();
|
progressBar.UpdatePosition(track.Length == 0 ? 0 : (float)(track.CurrentTime / track.Length));
|
||||||
|
playButton.Icon = track.IsRunning ? FontAwesome.fa_pause_circle_o : FontAwesome.fa_play_circle_o;
|
||||||
|
|
||||||
|
if (track.HasCompleted && !track.Looping) next();
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
playButton.Icon = FontAwesome.fa_play_circle_o;
|
playButton.Icon = FontAwesome.fa_play_circle_o;
|
||||||
}
|
}
|
||||||
|
|
||||||
private void workingChanged(WorkingBeatmap beatmap)
|
private void play()
|
||||||
{
|
{
|
||||||
progress.IsEnabled = beatmap != null;
|
var track = current?.Track;
|
||||||
if (beatmap == current) return;
|
|
||||||
bool audioEquals = current?.BeatmapInfo?.AudioEquals(beatmap?.BeatmapInfo) ?? false;
|
|
||||||
current = beatmap;
|
|
||||||
updateDisplay(current, audioEquals ? TransformDirection.None : TransformDirection.Next);
|
|
||||||
appendToHistory(current?.BeatmapInfo);
|
|
||||||
}
|
|
||||||
|
|
||||||
private void appendToHistory(BeatmapInfo beatmap)
|
if (track == null)
|
||||||
{
|
|
||||||
if (beatmap == null) return;
|
|
||||||
|
|
||||||
if (playHistoryIndex >= 0)
|
|
||||||
{
|
{
|
||||||
if (beatmap.AudioEquals(playHistory[playHistoryIndex]))
|
playlist.PlayNext();
|
||||||
return;
|
return;
|
||||||
if (playHistoryIndex < playHistory.Count - 1)
|
|
||||||
playHistory.RemoveRange(playHistoryIndex + 1, playHistory.Count - playHistoryIndex - 1);
|
|
||||||
}
|
}
|
||||||
playHistory.Insert(++playHistoryIndex, beatmap);
|
|
||||||
|
if (track.IsRunning)
|
||||||
|
track.Stop();
|
||||||
|
else
|
||||||
|
track.Start();
|
||||||
}
|
}
|
||||||
|
|
||||||
private void prev()
|
private void prev()
|
||||||
{
|
{
|
||||||
if (playHistoryIndex > 0)
|
queuedDirection = TransformDirection.Prev;
|
||||||
play(playHistory[--playHistoryIndex], false);
|
playlist.PlayPrevious();
|
||||||
}
|
}
|
||||||
|
|
||||||
private void next()
|
private void next()
|
||||||
{
|
{
|
||||||
if (playHistoryIndex < playHistory.Count - 1)
|
queuedDirection = TransformDirection.Next;
|
||||||
play(playHistory[++playHistoryIndex], true);
|
playlist.PlayNext();
|
||||||
else
|
|
||||||
{
|
|
||||||
if (playList.Count == 0) return;
|
|
||||||
if (current != null && playList.Count == 1) return;
|
|
||||||
//shuffle
|
|
||||||
BeatmapInfo nextToPlay;
|
|
||||||
do
|
|
||||||
{
|
|
||||||
int j = RNG.Next(playListIndex, playList.Count);
|
|
||||||
if (j != playListIndex)
|
|
||||||
{
|
|
||||||
BeatmapSetInfo temp = playList[playListIndex];
|
|
||||||
playList[playListIndex] = playList[j];
|
|
||||||
playList[j] = temp;
|
|
||||||
}
|
|
||||||
|
|
||||||
nextToPlay = playList[playListIndex++].Beatmaps[0];
|
|
||||||
if (playListIndex == playList.Count) playListIndex = 0;
|
|
||||||
}
|
|
||||||
while (nextToPlay.AudioEquals(current?.BeatmapInfo));
|
|
||||||
|
|
||||||
play(nextToPlay, true);
|
|
||||||
appendToHistory(nextToPlay);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
private void play(BeatmapInfo info, bool isNext)
|
private WorkingBeatmap current;
|
||||||
|
private TransformDirection queuedDirection;
|
||||||
|
|
||||||
|
private void beatmapChanged(WorkingBeatmap beatmap)
|
||||||
{
|
{
|
||||||
current = beatmaps.GetWorkingBeatmap(info, current);
|
progressBar.IsEnabled = beatmap != null;
|
||||||
Task.Run(() =>
|
|
||||||
{
|
bool audioEquals = beatmapBacking.Value?.BeatmapInfo?.AudioEquals(current?.BeatmapInfo) ?? false;
|
||||||
trackManager.SetExclusive(current.Track);
|
current = beatmapBacking.Value;
|
||||||
current.Track.Start();
|
|
||||||
beatmapSource.Value = current;
|
updateDisplay(beatmapBacking, audioEquals ? TransformDirection.None : queuedDirection);
|
||||||
}).ContinueWith(task => Schedule(task.ThrowIfFaulted), TaskContinuationOptions.OnlyOnFaulted);
|
|
||||||
updateDisplay(current, isNext ? TransformDirection.Next : TransformDirection.Prev);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
private Action pendingBeatmapSwitch;
|
private ScheduledDelegate pendingBeatmapSwitch;
|
||||||
|
|
||||||
private void updateDisplay(WorkingBeatmap beatmap, TransformDirection direction)
|
private void updateDisplay(WorkingBeatmap beatmap, TransformDirection direction)
|
||||||
{
|
{
|
||||||
//we might be off-screen when this update comes in.
|
//we might be off-screen when this update comes in.
|
||||||
//rather than Scheduling, manually handle this to avoid possible memory contention.
|
//rather than Scheduling, manually handle this to avoid possible memory contention.
|
||||||
pendingBeatmapSwitch = () =>
|
pendingBeatmapSwitch?.Cancel();
|
||||||
|
|
||||||
|
pendingBeatmapSwitch = Schedule(delegate
|
||||||
{
|
{
|
||||||
Task.Run(() =>
|
Task.Run(() =>
|
||||||
{
|
{
|
||||||
@ -323,7 +300,7 @@ namespace osu.Game.Overlays
|
|||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
dragContainer.Add(new AsyncLoadWrapper(new MusicControllerBackground(beatmap)
|
playerContainer.Add(new AsyncLoadWrapper(new Background(beatmap)
|
||||||
{
|
{
|
||||||
OnLoadComplete = d =>
|
OnLoadComplete = d =>
|
||||||
{
|
{
|
||||||
@ -347,17 +324,15 @@ namespace osu.Game.Overlays
|
|||||||
{
|
{
|
||||||
Depth = float.MaxValue,
|
Depth = float.MaxValue,
|
||||||
});
|
});
|
||||||
};
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
private void seek(float position)
|
private void seek(float position)
|
||||||
{
|
{
|
||||||
current?.Track?.Seek(current.Track.Length * position);
|
var track = current?.Track;
|
||||||
current?.Track?.Start();
|
track?.Seek(track.Length * position);
|
||||||
}
|
}
|
||||||
|
|
||||||
private const float transition_length = 800;
|
|
||||||
|
|
||||||
protected override void PopIn()
|
protected override void PopIn()
|
||||||
{
|
{
|
||||||
base.PopIn();
|
base.PopIn();
|
||||||
@ -374,14 +349,19 @@ namespace osu.Game.Overlays
|
|||||||
dragContainer.ScaleTo(0.9f, transition_length, EasingTypes.OutQuint);
|
dragContainer.ScaleTo(0.9f, transition_length, EasingTypes.OutQuint);
|
||||||
}
|
}
|
||||||
|
|
||||||
private enum TransformDirection { None, Next, Prev }
|
private enum TransformDirection
|
||||||
|
{
|
||||||
|
None,
|
||||||
|
Next,
|
||||||
|
Prev
|
||||||
|
}
|
||||||
|
|
||||||
private class MusicControllerBackground : BufferedContainer
|
private class Background : BufferedContainer
|
||||||
{
|
{
|
||||||
private readonly Sprite sprite;
|
private readonly Sprite sprite;
|
||||||
private readonly WorkingBeatmap beatmap;
|
private readonly WorkingBeatmap beatmap;
|
||||||
|
|
||||||
public MusicControllerBackground(WorkingBeatmap beatmap = null)
|
public Background(WorkingBeatmap beatmap = null)
|
||||||
{
|
{
|
||||||
this.beatmap = beatmap;
|
this.beatmap = beatmap;
|
||||||
CacheDrawnFrameBuffer = true;
|
CacheDrawnFrameBuffer = true;
|
||||||
|
@ -75,6 +75,9 @@
|
|||||||
<Compile Include="Beatmaps\Drawables\BeatmapBackgroundSprite.cs" />
|
<Compile Include="Beatmaps\Drawables\BeatmapBackgroundSprite.cs" />
|
||||||
<Compile Include="Beatmaps\DifficultyCalculator.cs" />
|
<Compile Include="Beatmaps\DifficultyCalculator.cs" />
|
||||||
<Compile Include="Online\API\Requests\PostMessageRequest.cs" />
|
<Compile Include="Online\API\Requests\PostMessageRequest.cs" />
|
||||||
|
<Compile Include="Overlays\Music\FilterControl.cs" />
|
||||||
|
<Compile Include="Overlays\Music\PlaylistItem.cs" />
|
||||||
|
<Compile Include="Overlays\Music\PlaylistList.cs" />
|
||||||
<Compile Include="Overlays\Toolbar\ToolbarChatButton.cs" />
|
<Compile Include="Overlays\Toolbar\ToolbarChatButton.cs" />
|
||||||
<Compile Include="Rulesets\Beatmaps\BeatmapConverter.cs" />
|
<Compile Include="Rulesets\Beatmaps\BeatmapConverter.cs" />
|
||||||
<Compile Include="Rulesets\Beatmaps\BeatmapProcessor.cs" />
|
<Compile Include="Rulesets\Beatmaps\BeatmapProcessor.cs" />
|
||||||
@ -421,6 +424,7 @@
|
|||||||
<Compile Include="Screens\Select\BeatmapDetailArea.cs" />
|
<Compile Include="Screens\Select\BeatmapDetailArea.cs" />
|
||||||
<Compile Include="Graphics\UserInterface\OsuTabControlCheckbox.cs" />
|
<Compile Include="Graphics\UserInterface\OsuTabControlCheckbox.cs" />
|
||||||
<Compile Include="Screens\Select\BeatmapDetailAreaTabControl.cs" />
|
<Compile Include="Screens\Select\BeatmapDetailAreaTabControl.cs" />
|
||||||
|
<Compile Include="Overlays\Music\PlaylistOverlay.cs" />
|
||||||
<Compile Include="Rulesets\Replays\IAutoGenerator.cs" />
|
<Compile Include="Rulesets\Replays\IAutoGenerator.cs" />
|
||||||
<Compile Include="Rulesets\Replays\AutoGenerator.cs" />
|
<Compile Include="Rulesets\Replays\AutoGenerator.cs" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
Loading…
Reference in New Issue
Block a user