2018-01-05 19:21:19 +08:00
|
|
|
|
// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
|
2017-05-17 16:58:34 +08:00
|
|
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
|
|
|
|
|
|
|
|
|
using System.ComponentModel;
|
|
|
|
|
using OpenTK.Graphics;
|
|
|
|
|
using osu.Framework.Graphics;
|
|
|
|
|
using osu.Game.Graphics;
|
|
|
|
|
using osu.Game.Graphics.Sprites;
|
2017-05-26 13:44:09 +08:00
|
|
|
|
using osu.Game.Overlays.SearchableList;
|
2017-05-17 16:58:34 +08:00
|
|
|
|
|
|
|
|
|
namespace osu.Game.Overlays.Direct
|
|
|
|
|
{
|
2017-05-26 13:44:09 +08:00
|
|
|
|
public class Header : SearchableListHeader<DirectTab>
|
2017-05-17 16:58:34 +08:00
|
|
|
|
{
|
2017-05-26 11:52:01 +08:00
|
|
|
|
protected override Color4 BackgroundColour => OsuColour.FromHex(@"252f3a");
|
2017-05-17 16:58:34 +08:00
|
|
|
|
|
2017-05-26 11:52:01 +08:00
|
|
|
|
protected override DirectTab DefaultTab => DirectTab.Search;
|
2017-05-26 13:16:56 +08:00
|
|
|
|
protected override Drawable CreateHeaderText() => new OsuSpriteText { Text = @"osu!direct", TextSize = 25 };
|
2017-06-07 19:06:02 +08:00
|
|
|
|
protected override FontAwesome Icon => FontAwesome.fa_osu_chevron_down_o;
|
2017-05-17 16:58:34 +08:00
|
|
|
|
|
|
|
|
|
public Header()
|
|
|
|
|
{
|
2017-09-27 12:23:48 +08:00
|
|
|
|
Tabs.Current.Value = DirectTab.NewestMaps;
|
2017-05-19 00:57:19 +08:00
|
|
|
|
Tabs.Current.TriggerChange();
|
2017-05-17 16:58:34 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public enum DirectTab
|
|
|
|
|
{
|
|
|
|
|
Search,
|
|
|
|
|
[Description("Newest Maps")]
|
2017-07-11 12:42:51 +08:00
|
|
|
|
NewestMaps = DirectSortCriteria.Ranked,
|
2017-05-17 16:58:34 +08:00
|
|
|
|
[Description("Top Rated")]
|
2017-07-11 12:42:51 +08:00
|
|
|
|
TopRated = DirectSortCriteria.Rating,
|
2017-05-17 16:58:34 +08:00
|
|
|
|
[Description("Most Played")]
|
2017-07-11 12:42:51 +08:00
|
|
|
|
MostPlayed = DirectSortCriteria.Plays,
|
2017-05-17 16:58:34 +08:00
|
|
|
|
}
|
|
|
|
|
}
|