From 12de3f6657a277550ff07a36d4b5f9bfb907c881 Mon Sep 17 00:00:00 2001 From: smoogipooo Date: Fri, 17 Mar 2017 13:56:14 +0900 Subject: [PATCH 01/24] Implement DrumRoll + DrumRollTick. --- osu.Game.Modes.Taiko/Objects/DrumRoll.cs | 121 ++++++++++++++++++ osu.Game.Modes.Taiko/Objects/DrumRollTick.cs | 21 +++ .../osu.Game.Modes.Taiko.csproj | 2 + 3 files changed, 144 insertions(+) create mode 100644 osu.Game.Modes.Taiko/Objects/DrumRoll.cs create mode 100644 osu.Game.Modes.Taiko/Objects/DrumRollTick.cs diff --git a/osu.Game.Modes.Taiko/Objects/DrumRoll.cs b/osu.Game.Modes.Taiko/Objects/DrumRoll.cs new file mode 100644 index 0000000000..9ce2758d84 --- /dev/null +++ b/osu.Game.Modes.Taiko/Objects/DrumRoll.cs @@ -0,0 +1,121 @@ +// Copyright (c) 2007-2017 ppy Pty Ltd . +// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE + +using osu.Game.Beatmaps; +using osu.Game.Beatmaps.Samples; +using osu.Game.Modes.Objects.Types; +using System; +using System.Collections.Generic; +using System.Linq; +using osu.Game.Beatmaps.Timing; +using osu.Game.Database; + +namespace osu.Game.Modes.Taiko.Objects +{ + public class DrumRoll : TaikoHitObject, IHasDistance + { + public double EndTime => StartTime + Distance / Velocity; + + public double Duration => EndTime - StartTime; + + /// + /// Raw length of the drum roll in positional length units. + /// + public double Distance { get; set; } + + /// + /// Velocity of the drum roll in positional length units per millisecond. + /// + public double Velocity; + + /// + /// The distance between ticks of this drumroll. + /// Half of this value is the hit window of the ticks. + /// + public double TickTimeDistance; + + /// + /// Number of drum roll ticks required for a "Good" hit. + /// + public double RequiredGoodHits; + + /// + /// Number of drum roll ticks required for a "Great" hit. + /// + public double RequiredGreatHits; + + /// + /// Total number of drum roll ticks. + /// + public int TotalTicks; + + /// + /// Initializes the drum roll ticks if not initialized and returns them. + /// + public IEnumerable Ticks + { + get + { + if (ticks == null) + createTicks(); + return ticks; + } + } + + private List ticks; + + public override void ApplyDefaults(TimingInfo timing, BeatmapDifficulty difficulty) + { + base.ApplyDefaults(timing, difficulty); + + Velocity = (timing.SliderVelocityAt(StartTime) * difficulty.SliderMultiplier) / 1000; + TickTimeDistance = timing.BeatLengthAt(StartTime); + + if (difficulty.SliderTickRate == 3) + TickTimeDistance /= 3; + else + TickTimeDistance /= 4; + + TotalTicks = Ticks.Count(); + RequiredGoodHits = TotalTicks * Math.Min(0.15, 0.05 + 0.10 / 6 * difficulty.OverallDifficulty); + RequiredGreatHits = TotalTicks * Math.Min(0.30, 0.10 + 0.20 / 6 * difficulty.OverallDifficulty); + } + + private void createTicks() + { + ticks = new List(); + + if (TickTimeDistance == 0) + return; + + bool first = true; + for (double t = StartTime; t < EndTime + (int)TickTimeDistance; t += TickTimeDistance) + { + ticks.Add(new DrumRollTick + { + FirstTick = first, + PreEmpt = PreEmpt, + TickTimeDistance = TickTimeDistance, + StartTime = t, + Sample = new HitSampleInfo + { + Type = SampleType.None, + Set = SampleSet.Soft + } + }); + + first = false; + } + } + + public override TaikoHitType Type + { + get + { + SampleType st = Sample?.Type ?? SampleType.None; + + return TaikoHitType.DrumRoll | ((st & SampleType.Finish) > 0 ? TaikoHitType.Finisher : TaikoHitType.None); + } + } + } +} \ No newline at end of file diff --git a/osu.Game.Modes.Taiko/Objects/DrumRollTick.cs b/osu.Game.Modes.Taiko/Objects/DrumRollTick.cs new file mode 100644 index 0000000000..c2487f7422 --- /dev/null +++ b/osu.Game.Modes.Taiko/Objects/DrumRollTick.cs @@ -0,0 +1,21 @@ +// Copyright (c) 2007-2017 ppy Pty Ltd . +// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE + +namespace osu.Game.Modes.Taiko.Objects +{ + public class DrumRollTick : TaikoHitObject + { + /// + /// Whether this is the first (initial) tick of the slider. + /// + public bool FirstTick; + + /// + /// The distance between this tick and the next in milliseconds. + /// Half of this value is the hit window of the tick. + /// + public double TickTimeDistance; + + public override TaikoHitType Type => TaikoHitType.DrumRollTick; + } +} \ No newline at end of file diff --git a/osu.Game.Modes.Taiko/osu.Game.Modes.Taiko.csproj b/osu.Game.Modes.Taiko/osu.Game.Modes.Taiko.csproj index 0e9e6a56b4..5fbdc7d525 100644 --- a/osu.Game.Modes.Taiko/osu.Game.Modes.Taiko.csproj +++ b/osu.Game.Modes.Taiko/osu.Game.Modes.Taiko.csproj @@ -50,6 +50,8 @@ + + From d2194e3d2a51e7e6851977af222657d9462ab5fb Mon Sep 17 00:00:00 2001 From: smoogipooo Date: Fri, 17 Mar 2017 14:01:32 +0900 Subject: [PATCH 02/24] Implement Bash. --- osu.Game.Modes.Taiko/Objects/Bash.cs | 32 +++++++++++++++++++ .../osu.Game.Modes.Taiko.csproj | 1 + 2 files changed, 33 insertions(+) create mode 100644 osu.Game.Modes.Taiko/Objects/Bash.cs diff --git a/osu.Game.Modes.Taiko/Objects/Bash.cs b/osu.Game.Modes.Taiko/Objects/Bash.cs new file mode 100644 index 0000000000..c9f4d01256 --- /dev/null +++ b/osu.Game.Modes.Taiko/Objects/Bash.cs @@ -0,0 +1,32 @@ +// Copyright (c) 2007-2017 ppy Pty Ltd . +// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE + +using System; +using osu.Game.Beatmaps.Timing; +using osu.Game.Database; +using osu.Game.Modes.Objects.Types; + +namespace osu.Game.Modes.Taiko.Objects +{ + public class Bash : TaikoHitObject, IHasEndTime + { + public double EndTime => StartTime + Duration; + + public double Duration { get; set; } + + /// + /// The number of hits required to complete the bash successfully. + /// + public int RequiredHits; + + public override void ApplyDefaults(TimingInfo timing, BeatmapDifficulty difficulty) + { + base.ApplyDefaults(timing, difficulty); + + double spinnerRotationRatio = BeatmapDifficulty.DifficultyRange(difficulty.OverallDifficulty, 3, 5, 7.5); + RequiredHits = (int)Math.Max(1, Duration / 1000f * spinnerRotationRatio); + } + + public override TaikoHitType Type => TaikoHitType.Bash; + } +} \ No newline at end of file diff --git a/osu.Game.Modes.Taiko/osu.Game.Modes.Taiko.csproj b/osu.Game.Modes.Taiko/osu.Game.Modes.Taiko.csproj index 0e9e6a56b4..699ef87e99 100644 --- a/osu.Game.Modes.Taiko/osu.Game.Modes.Taiko.csproj +++ b/osu.Game.Modes.Taiko/osu.Game.Modes.Taiko.csproj @@ -50,6 +50,7 @@ + From d478a58a89545c08f544129838746316069dc943 Mon Sep 17 00:00:00 2001 From: smoogipooo Date: Fri, 17 Mar 2017 14:43:00 +0900 Subject: [PATCH 03/24] Invert getters and setters for EndTime / Duration. --- osu.Game.Modes.Taiko/Objects/Bash.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/osu.Game.Modes.Taiko/Objects/Bash.cs b/osu.Game.Modes.Taiko/Objects/Bash.cs index c9f4d01256..895b25e987 100644 --- a/osu.Game.Modes.Taiko/Objects/Bash.cs +++ b/osu.Game.Modes.Taiko/Objects/Bash.cs @@ -10,9 +10,9 @@ namespace osu.Game.Modes.Taiko.Objects { public class Bash : TaikoHitObject, IHasEndTime { - public double EndTime => StartTime + Duration; + public double EndTime { get; set; } - public double Duration { get; set; } + public double Duration => EndTime - StartTime; /// /// The number of hits required to complete the bash successfully. From f48af91686bc48d8f57c30932aa34b87dabb8632 Mon Sep 17 00:00:00 2001 From: smoogipooo Date: Fri, 17 Mar 2017 15:45:54 +0900 Subject: [PATCH 04/24] Appease the resharper gods. --- osu.Game.Modes.Taiko/Objects/DrumRoll.cs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/osu.Game.Modes.Taiko/Objects/DrumRoll.cs b/osu.Game.Modes.Taiko/Objects/DrumRoll.cs index 9ce2758d84..eebbb4717e 100644 --- a/osu.Game.Modes.Taiko/Objects/DrumRoll.cs +++ b/osu.Game.Modes.Taiko/Objects/DrumRoll.cs @@ -1,7 +1,6 @@ // Copyright (c) 2007-2017 ppy Pty Ltd . // Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE -using osu.Game.Beatmaps; using osu.Game.Beatmaps.Samples; using osu.Game.Modes.Objects.Types; using System; @@ -68,7 +67,7 @@ namespace osu.Game.Modes.Taiko.Objects { base.ApplyDefaults(timing, difficulty); - Velocity = (timing.SliderVelocityAt(StartTime) * difficulty.SliderMultiplier) / 1000; + Velocity = timing.SliderVelocityAt(StartTime) * difficulty.SliderMultiplier / 1000; TickTimeDistance = timing.BeatLengthAt(StartTime); if (difficulty.SliderTickRate == 3) From b3b8fadf031a11f867d28a2cd5ecd29b9636dad4 Mon Sep 17 00:00:00 2001 From: smoogipooo Date: Mon, 20 Mar 2017 13:02:52 +0900 Subject: [PATCH 05/24] Remove Type. --- osu.Game.Modes.Taiko/Objects/DrumRoll.cs | 10 ---------- osu.Game.Modes.Taiko/Objects/DrumRollTick.cs | 2 -- 2 files changed, 12 deletions(-) diff --git a/osu.Game.Modes.Taiko/Objects/DrumRoll.cs b/osu.Game.Modes.Taiko/Objects/DrumRoll.cs index eebbb4717e..ba51878635 100644 --- a/osu.Game.Modes.Taiko/Objects/DrumRoll.cs +++ b/osu.Game.Modes.Taiko/Objects/DrumRoll.cs @@ -106,15 +106,5 @@ namespace osu.Game.Modes.Taiko.Objects first = false; } } - - public override TaikoHitType Type - { - get - { - SampleType st = Sample?.Type ?? SampleType.None; - - return TaikoHitType.DrumRoll | ((st & SampleType.Finish) > 0 ? TaikoHitType.Finisher : TaikoHitType.None); - } - } } } \ No newline at end of file diff --git a/osu.Game.Modes.Taiko/Objects/DrumRollTick.cs b/osu.Game.Modes.Taiko/Objects/DrumRollTick.cs index c2487f7422..66a2d16fe1 100644 --- a/osu.Game.Modes.Taiko/Objects/DrumRollTick.cs +++ b/osu.Game.Modes.Taiko/Objects/DrumRollTick.cs @@ -15,7 +15,5 @@ namespace osu.Game.Modes.Taiko.Objects /// Half of this value is the hit window of the tick. /// public double TickTimeDistance; - - public override TaikoHitType Type => TaikoHitType.DrumRollTick; } } \ No newline at end of file From b9006e4026ad0f0f613e2ab7ad1ae60733d4fa21 Mon Sep 17 00:00:00 2001 From: smoogipooo Date: Mon, 20 Mar 2017 13:04:09 +0900 Subject: [PATCH 06/24] Remove Type. --- osu.Game.Modes.Taiko/Objects/Bash.cs | 2 -- 1 file changed, 2 deletions(-) diff --git a/osu.Game.Modes.Taiko/Objects/Bash.cs b/osu.Game.Modes.Taiko/Objects/Bash.cs index 895b25e987..1b771cb1d5 100644 --- a/osu.Game.Modes.Taiko/Objects/Bash.cs +++ b/osu.Game.Modes.Taiko/Objects/Bash.cs @@ -26,7 +26,5 @@ namespace osu.Game.Modes.Taiko.Objects double spinnerRotationRatio = BeatmapDifficulty.DifficultyRange(difficulty.OverallDifficulty, 3, 5, 7.5); RequiredHits = (int)Math.Max(1, Duration / 1000f * spinnerRotationRatio); } - - public override TaikoHitType Type => TaikoHitType.Bash; } } \ No newline at end of file From 1d13924e0a9051d8f5582b9922c0e8bcd27d2a54 Mon Sep 17 00:00:00 2001 From: Huo Yaoyuan Date: Tue, 21 Mar 2017 01:05:48 +0800 Subject: [PATCH 07/24] Remove redundant type parameter. Nested type has implicit type parameter from base type. --- osu.Game/Graphics/UserInterface/OsuTabControl.cs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/osu.Game/Graphics/UserInterface/OsuTabControl.cs b/osu.Game/Graphics/UserInterface/OsuTabControl.cs index d5699eddaf..de81757fdf 100644 --- a/osu.Game/Graphics/UserInterface/OsuTabControl.cs +++ b/osu.Game/Graphics/UserInterface/OsuTabControl.cs @@ -16,7 +16,7 @@ namespace osu.Game.Graphics.UserInterface { public class OsuTabControl : TabControl { - protected override DropDownMenu CreateDropDownMenu() => new OsuTabDropDownMenu(); + protected override DropDownMenu CreateDropDownMenu() => new OsuTabDropDownMenu(); protected override TabItem CreateTabItem(T value) => new OsuTabItem { Value = value }; @@ -45,7 +45,7 @@ namespace osu.Game.Graphics.UserInterface set { accentColour = value; - var dropDown = DropDown as OsuTabDropDownMenu; + var dropDown = DropDown as OsuTabDropDownMenu; if (dropDown != null) dropDown.AccentColour = value; foreach (var item in TabContainer.Children.OfType>()) @@ -53,7 +53,7 @@ namespace osu.Game.Graphics.UserInterface } } - public class OsuTabDropDownMenu : OsuDropDownMenu + public class OsuTabDropDownMenu : OsuDropDownMenu { protected override DropDownHeader CreateHeader() => new OsuTabDropDownHeader { @@ -62,7 +62,7 @@ namespace osu.Game.Graphics.UserInterface Origin = Anchor.TopRight, }; - protected override DropDownMenuItem CreateDropDownItem(string key, T1 value) + protected override DropDownMenuItem CreateDropDownItem(string key, T value) { var item = base.CreateDropDownItem(key, value); item.ForegroundColourHover = Color4.Black; From 712d2e194c7e6699350f3748780dfdf5f9cd7547 Mon Sep 17 00:00:00 2001 From: smoogipooo Date: Wed, 22 Mar 2017 01:33:22 +0900 Subject: [PATCH 08/24] A bit more protection. --- osu.Game.Modes.Taiko/Objects/DrumRoll.cs | 31 +++++++++--------------- 1 file changed, 12 insertions(+), 19 deletions(-) diff --git a/osu.Game.Modes.Taiko/Objects/DrumRoll.cs b/osu.Game.Modes.Taiko/Objects/DrumRoll.cs index ba51878635..78e9202f20 100644 --- a/osu.Game.Modes.Taiko/Objects/DrumRoll.cs +++ b/osu.Game.Modes.Taiko/Objects/DrumRoll.cs @@ -25,41 +25,33 @@ namespace osu.Game.Modes.Taiko.Objects /// /// Velocity of the drum roll in positional length units per millisecond. /// - public double Velocity; + public double Velocity { get; protected set; } /// /// The distance between ticks of this drumroll. /// Half of this value is the hit window of the ticks. /// - public double TickTimeDistance; + public double TickTimeDistance { get; protected set; } /// /// Number of drum roll ticks required for a "Good" hit. /// - public double RequiredGoodHits; + public double RequiredGoodHits { get; protected set; } /// /// Number of drum roll ticks required for a "Great" hit. /// - public double RequiredGreatHits; + public double RequiredGreatHits { get; protected set; } /// /// Total number of drum roll ticks. /// - public int TotalTicks; + public int TotalTicks => Ticks.Count(); /// /// Initializes the drum roll ticks if not initialized and returns them. /// - public IEnumerable Ticks - { - get - { - if (ticks == null) - createTicks(); - return ticks; - } - } + public IEnumerable Ticks => ticks ?? (ticks = createTicks()); private List ticks; @@ -75,22 +67,21 @@ namespace osu.Game.Modes.Taiko.Objects else TickTimeDistance /= 4; - TotalTicks = Ticks.Count(); RequiredGoodHits = TotalTicks * Math.Min(0.15, 0.05 + 0.10 / 6 * difficulty.OverallDifficulty); RequiredGreatHits = TotalTicks * Math.Min(0.30, 0.10 + 0.20 / 6 * difficulty.OverallDifficulty); } - private void createTicks() + private List createTicks() { - ticks = new List(); + var ret = new List(); if (TickTimeDistance == 0) - return; + return ret; bool first = true; for (double t = StartTime; t < EndTime + (int)TickTimeDistance; t += TickTimeDistance) { - ticks.Add(new DrumRollTick + ret.Add(new DrumRollTick { FirstTick = first, PreEmpt = PreEmpt, @@ -105,6 +96,8 @@ namespace osu.Game.Modes.Taiko.Objects first = false; } + + return ret; } } } \ No newline at end of file From b3dde2c399aae4cfcd7bc32698fa425642d75b16 Mon Sep 17 00:00:00 2001 From: smoogipooo Date: Wed, 22 Mar 2017 01:35:39 +0900 Subject: [PATCH 09/24] A bit more protection. --- osu.Game.Modes.Taiko/Objects/Bash.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/osu.Game.Modes.Taiko/Objects/Bash.cs b/osu.Game.Modes.Taiko/Objects/Bash.cs index 1b771cb1d5..b8b4eea6a9 100644 --- a/osu.Game.Modes.Taiko/Objects/Bash.cs +++ b/osu.Game.Modes.Taiko/Objects/Bash.cs @@ -17,7 +17,7 @@ namespace osu.Game.Modes.Taiko.Objects /// /// The number of hits required to complete the bash successfully. /// - public int RequiredHits; + public int RequiredHits { get; protected set; } public override void ApplyDefaults(TimingInfo timing, BeatmapDifficulty difficulty) { From f0edf5d3d3ec772961c51cce18e45af51c199b61 Mon Sep 17 00:00:00 2001 From: Huo Yaoyuan Date: Wed, 22 Mar 2017 06:51:26 +0800 Subject: [PATCH 10/24] Update to DropDown and Menu. --- .../Graphics/UserInterface/OsuDropDown.cs | 40 ++++++++++++ .../Graphics/UserInterface/OsuDropDownMenu.cs | 61 ------------------- osu.Game/Graphics/UserInterface/OsuMenu.cs | 34 +++++++++++ .../Graphics/UserInterface/OsuTabControl.cs | 20 +++--- osu.Game/Overlays/Options/OptionDropDown.cs | 4 +- osu.Game/osu.Game.csproj | 3 +- 6 files changed, 88 insertions(+), 74 deletions(-) create mode 100644 osu.Game/Graphics/UserInterface/OsuDropDown.cs delete mode 100644 osu.Game/Graphics/UserInterface/OsuDropDownMenu.cs create mode 100644 osu.Game/Graphics/UserInterface/OsuMenu.cs diff --git a/osu.Game/Graphics/UserInterface/OsuDropDown.cs b/osu.Game/Graphics/UserInterface/OsuDropDown.cs new file mode 100644 index 0000000000..51fb335698 --- /dev/null +++ b/osu.Game/Graphics/UserInterface/OsuDropDown.cs @@ -0,0 +1,40 @@ +// Copyright (c) 2007-2017 ppy Pty Ltd . +// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE + +using System.Linq; +using OpenTK.Graphics; +using osu.Framework.Allocation; +using osu.Framework.Graphics.UserInterface; + +namespace osu.Game.Graphics.UserInterface +{ + public class OsuDropDown : DropDown + { + protected override DropDownHeader CreateHeader() => new OsuDropDownHeader { AccentColour = AccentColour }; + + protected override Menu CreateMenu() => new OsuMenu(); + + private Color4? accentColour; + public virtual Color4 AccentColour + { + get { return accentColour.GetValueOrDefault(); } + set + { + accentColour = value; + if (Header != null) + ((OsuDropDownHeader)Header).AccentColour = value; + foreach (var item in MenuItems.OfType>()) + item.AccentColour = value; + } + } + + [BackgroundDependencyLoader] + private void load(OsuColour colours) + { + if (accentColour == null) + AccentColour = colours.PinkDarker; + } + + protected override DropDownMenuItem CreateMenuItem(string key, T value) => new OsuDropDownMenuItem(key, value) { AccentColour = AccentColour }; + } +} \ No newline at end of file diff --git a/osu.Game/Graphics/UserInterface/OsuDropDownMenu.cs b/osu.Game/Graphics/UserInterface/OsuDropDownMenu.cs deleted file mode 100644 index 5d9e30db8d..0000000000 --- a/osu.Game/Graphics/UserInterface/OsuDropDownMenu.cs +++ /dev/null @@ -1,61 +0,0 @@ -// Copyright (c) 2007-2017 ppy Pty Ltd . -// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE - -using System.Linq; -using osu.Framework.Allocation; -using OpenTK; -using OpenTK.Graphics; -using osu.Framework.Extensions.Color4Extensions; -using osu.Framework.Graphics; -using osu.Framework.Graphics.Primitives; -using osu.Framework.Graphics.Transforms; -using osu.Framework.Graphics.UserInterface; - -namespace osu.Game.Graphics.UserInterface -{ - public class OsuDropDownMenu : DropDownMenu - { - protected override DropDownHeader CreateHeader() => new OsuDropDownHeader { AccentColour = AccentColour }; - - private Color4? accentColour; - public virtual Color4 AccentColour - { - get { return accentColour.GetValueOrDefault(); } - set - { - accentColour = value; - if (Header != null) - ((OsuDropDownHeader)Header).AccentColour = value; - foreach (var item in ItemList.OfType>()) - item.AccentColour = value; - } - } - - [BackgroundDependencyLoader] - private void load(OsuColour colours) - { - if (accentColour == null) - AccentColour = colours.PinkDarker; - } - - public OsuDropDownMenu() - { - ContentContainer.CornerRadius = 4; - ContentBackground.Colour = Color4.Black.Opacity(0.5f); - - DropDownItemsContainer.Padding = new MarginPadding(5); - } - - protected override void AnimateOpen() => ContentContainer.FadeIn(300, EasingTypes.OutQuint); - - protected override void AnimateClose() => ContentContainer.FadeOut(300, EasingTypes.OutQuint); - - protected override void UpdateContentHeight() - { - var actualHeight = (RelativeSizeAxes & Axes.Y) > 0 ? 1 : ContentHeight; - ContentContainer.ResizeTo(new Vector2(1, State == DropDownMenuState.Opened ? actualHeight : 0), 300, EasingTypes.OutQuint); - } - - protected override DropDownMenuItem CreateDropDownItem(string key, T value) => new OsuDropDownMenuItem(key, value) { AccentColour = AccentColour }; - } -} \ No newline at end of file diff --git a/osu.Game/Graphics/UserInterface/OsuMenu.cs b/osu.Game/Graphics/UserInterface/OsuMenu.cs new file mode 100644 index 0000000000..4e80e1502a --- /dev/null +++ b/osu.Game/Graphics/UserInterface/OsuMenu.cs @@ -0,0 +1,34 @@ +// Copyright (c) 2007-2017 ppy Pty Ltd . +// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE + +using OpenTK; +using OpenTK.Graphics; +using osu.Framework.Extensions.Color4Extensions; +using osu.Framework.Graphics; +using osu.Framework.Graphics.Primitives; +using osu.Framework.Graphics.Transforms; +using osu.Framework.Graphics.UserInterface; + +namespace osu.Game.Graphics.UserInterface +{ + public class OsuMenu : Menu + { + public OsuMenu() + { + CornerRadius = 4; + ContentBackground.Colour = Color4.Black.Opacity(0.5f); + + ItemsContainer.Padding = new MarginPadding(5); + } + + protected override void AnimateOpen() => FadeIn(300, EasingTypes.OutQuint); + + protected override void AnimateClose() => FadeOut(300, EasingTypes.OutQuint); + + protected override void UpdateContentHeight() + { + var actualHeight = (RelativeSizeAxes & Axes.Y) > 0 ? 1 : ContentHeight; + ResizeTo(new Vector2(1, State == MenuState.Opened ? actualHeight : 0), 300, EasingTypes.OutQuint); + } + } +} diff --git a/osu.Game/Graphics/UserInterface/OsuTabControl.cs b/osu.Game/Graphics/UserInterface/OsuTabControl.cs index de81757fdf..947b39f621 100644 --- a/osu.Game/Graphics/UserInterface/OsuTabControl.cs +++ b/osu.Game/Graphics/UserInterface/OsuTabControl.cs @@ -16,7 +16,7 @@ namespace osu.Game.Graphics.UserInterface { public class OsuTabControl : TabControl { - protected override DropDownMenu CreateDropDownMenu() => new OsuTabDropDownMenu(); + protected override DropDown CreateDropDownMenu() => new OsuTabDropDown(); protected override TabItem CreateTabItem(T value) => new OsuTabItem { Value = value }; @@ -45,7 +45,7 @@ namespace osu.Game.Graphics.UserInterface set { accentColour = value; - var dropDown = DropDown as OsuTabDropDownMenu; + var dropDown = DropDown as OsuTabDropDown; if (dropDown != null) dropDown.AccentColour = value; foreach (var item in TabContainer.Children.OfType>()) @@ -53,7 +53,7 @@ namespace osu.Game.Graphics.UserInterface } } - public class OsuTabDropDownMenu : OsuDropDownMenu + public class OsuTabDropDown : OsuDropDown { protected override DropDownHeader CreateHeader() => new OsuTabDropDownHeader { @@ -62,22 +62,22 @@ namespace osu.Game.Graphics.UserInterface Origin = Anchor.TopRight, }; - protected override DropDownMenuItem CreateDropDownItem(string key, T value) + protected override DropDownMenuItem CreateMenuItem(string key, T value) { - var item = base.CreateDropDownItem(key, value); + var item = base.CreateMenuItem(key, value); item.ForegroundColourHover = Color4.Black; return item; } - public OsuTabDropDownMenu() + public OsuTabDropDown() { - ContentContainer.Anchor = Anchor.TopRight; - ContentContainer.Origin = Anchor.TopRight; + DropDownMenu.Anchor = Anchor.TopRight; + DropDownMenu.Origin = Anchor.TopRight; RelativeSizeAxes = Axes.X; - ContentBackground.Colour = Color4.Black.Opacity(0.7f); - MaxDropDownHeight = 400; + DropDownMenu.Colour = Color4.Black.Opacity(0.7f); + DropDownMenu.MaxHeight = 400; } public class OsuTabDropDownHeader : OsuDropDownHeader diff --git a/osu.Game/Overlays/Options/OptionDropDown.cs b/osu.Game/Overlays/Options/OptionDropDown.cs index 4387e90b5a..690d3d21a5 100644 --- a/osu.Game/Overlays/Options/OptionDropDown.cs +++ b/osu.Game/Overlays/Options/OptionDropDown.cs @@ -16,7 +16,7 @@ namespace osu.Game.Overlays.Options { public class OptionDropDown : FillFlowContainer { - private DropDownMenu dropdown; + private DropDown dropdown; private SpriteText text; public string LabelText @@ -97,7 +97,7 @@ namespace osu.Game.Overlays.Options text = new OsuSpriteText { Alpha = 0, }, - dropdown = new OsuDropDownMenu + dropdown = new OsuDropDown { Margin = new MarginPadding { Top = 5 }, RelativeSizeAxes = Axes.X, diff --git a/osu.Game/osu.Game.csproj b/osu.Game/osu.Game.csproj index 188d929888..3f97e196db 100644 --- a/osu.Game/osu.Game.csproj +++ b/osu.Game/osu.Game.csproj @@ -85,6 +85,7 @@ + @@ -159,7 +160,7 @@ - + From b46ded77945cfb9484cb2f797e070b10d8728ca9 Mon Sep 17 00:00:00 2001 From: Huo Yaoyuan Date: Wed, 22 Mar 2017 07:49:21 +0800 Subject: [PATCH 11/24] Use Bindable for DropDown. --- osu.Game/Overlays/Options/OptionDropDown.cs | 36 ++------------------- 1 file changed, 3 insertions(+), 33 deletions(-) diff --git a/osu.Game/Overlays/Options/OptionDropDown.cs b/osu.Game/Overlays/Options/OptionDropDown.cs index 690d3d21a5..9c9cd17b12 100644 --- a/osu.Game/Overlays/Options/OptionDropDown.cs +++ b/osu.Game/Overlays/Options/OptionDropDown.cs @@ -1,7 +1,7 @@ // Copyright (c) 2007-2017 ppy Pty Ltd . // Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE -using System; +using System.Collections.Generic; using osu.Framework.Configuration; using osu.Framework.Graphics; using osu.Framework.Graphics.Containers; @@ -10,7 +10,6 @@ using osu.Framework.Graphics.Sprites; using osu.Framework.Graphics.UserInterface; using osu.Game.Graphics.Sprites; using osu.Game.Graphics.UserInterface; -using System.Collections.Generic; namespace osu.Game.Overlays.Options { @@ -33,12 +32,8 @@ namespace osu.Game.Overlays.Options get { return bindable; } set { - if (bindable != null) - bindable.ValueChanged -= bindable_ValueChanged; bindable = value; - bindable.ValueChanged += bindable_ValueChanged; - bindable_ValueChanged(null, null); - + dropdown.SelectedValue.BindTo(bindable); if (bindable.Disabled) Alpha = 0.3f; } @@ -46,23 +41,6 @@ namespace osu.Game.Overlays.Options private Bindable bindable; - private void bindable_ValueChanged(object sender, EventArgs e) - { - dropdown.SelectedValue = bindable.Value; - } - - private void dropdown_ValueChanged(object sender, EventArgs e) - { - bindable.Value = dropdown.SelectedValue; - } - - protected override void Dispose(bool isDisposing) - { - bindable.ValueChanged -= bindable_ValueChanged; - dropdown.ValueChanged -= dropdown_ValueChanged; - base.Dispose(isDisposing); - } - private IEnumerable> items; public IEnumerable> Items { @@ -73,15 +51,8 @@ namespace osu.Game.Overlays.Options set { items = value; - if(dropdown != null) - { + if (dropdown != null) dropdown.Items = value; - - // We need to refresh the dropdown because our items changed, - // thus its selected value may be outdated. - if (bindable != null) - dropdown.SelectedValue = bindable.Value; - } } } @@ -104,7 +75,6 @@ namespace osu.Game.Overlays.Options Items = Items, } }; - dropdown.ValueChanged += dropdown_ValueChanged; } } } From b06eb0122c8860fa480081cde2849d162a3e3272 Mon Sep 17 00:00:00 2001 From: Huo Yaoyuan Date: Wed, 22 Mar 2017 07:55:47 +0800 Subject: [PATCH 12/24] Fix for colours and members rename. --- osu.Game/Graphics/UserInterface/OsuDropDown.cs | 2 +- osu.Game/Graphics/UserInterface/OsuMenu.cs | 2 +- osu.Game/Graphics/UserInterface/OsuTabControl.cs | 8 ++++---- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/osu.Game/Graphics/UserInterface/OsuDropDown.cs b/osu.Game/Graphics/UserInterface/OsuDropDown.cs index 51fb335698..a921be1a1d 100644 --- a/osu.Game/Graphics/UserInterface/OsuDropDown.cs +++ b/osu.Game/Graphics/UserInterface/OsuDropDown.cs @@ -35,6 +35,6 @@ namespace osu.Game.Graphics.UserInterface AccentColour = colours.PinkDarker; } - protected override DropDownMenuItem CreateMenuItem(string key, T value) => new OsuDropDownMenuItem(key, value) { AccentColour = AccentColour }; + protected override DropDownMenuItem CreateMenuItem(string text, T value) => new OsuDropDownMenuItem(text, value) { AccentColour = AccentColour }; } } \ No newline at end of file diff --git a/osu.Game/Graphics/UserInterface/OsuMenu.cs b/osu.Game/Graphics/UserInterface/OsuMenu.cs index 4e80e1502a..95df3be9bf 100644 --- a/osu.Game/Graphics/UserInterface/OsuMenu.cs +++ b/osu.Game/Graphics/UserInterface/OsuMenu.cs @@ -16,7 +16,7 @@ namespace osu.Game.Graphics.UserInterface public OsuMenu() { CornerRadius = 4; - ContentBackground.Colour = Color4.Black.Opacity(0.5f); + Background.Colour = Color4.Black.Opacity(0.5f); ItemsContainer.Padding = new MarginPadding(5); } diff --git a/osu.Game/Graphics/UserInterface/OsuTabControl.cs b/osu.Game/Graphics/UserInterface/OsuTabControl.cs index 947b39f621..84f3125ca4 100644 --- a/osu.Game/Graphics/UserInterface/OsuTabControl.cs +++ b/osu.Game/Graphics/UserInterface/OsuTabControl.cs @@ -16,7 +16,7 @@ namespace osu.Game.Graphics.UserInterface { public class OsuTabControl : TabControl { - protected override DropDown CreateDropDownMenu() => new OsuTabDropDown(); + protected override DropDown CreateDropDown() => new OsuTabDropDown(); protected override TabItem CreateTabItem(T value) => new OsuTabItem { Value = value }; @@ -62,9 +62,9 @@ namespace osu.Game.Graphics.UserInterface Origin = Anchor.TopRight, }; - protected override DropDownMenuItem CreateMenuItem(string key, T value) + protected override DropDownMenuItem CreateMenuItem(string text, T value) { - var item = base.CreateMenuItem(key, value); + var item = base.CreateMenuItem(text, value); item.ForegroundColourHover = Color4.Black; return item; } @@ -76,7 +76,7 @@ namespace osu.Game.Graphics.UserInterface RelativeSizeAxes = Axes.X; - DropDownMenu.Colour = Color4.Black.Opacity(0.7f); + DropDownMenu.Background.Colour = Color4.Black.Opacity(0.7f); DropDownMenu.MaxHeight = 400; } From cc2b4c5c5b4cf2c15687ea942c16334a733c91a7 Mon Sep 17 00:00:00 2001 From: Drew DeVault Date: Wed, 22 Mar 2017 05:54:07 -0400 Subject: [PATCH 13/24] Refactor WorkingBeatmap Gets ArchiveReader out of WorkingBeatmap and delegates extracting stuff from it to subclasses. Should enable us to make an OnlineWorkingBeatmap or so. --- .../Beatmaps/TestWorkingBeatmap.cs | 32 +++++ .../Tests/TestCaseGamefield.cs | 13 +- .../Tests/TestCasePlayer.cs | 12 +- .../osu.Desktop.VisualTests.csproj | 4 + osu.Game/Beatmaps/WorkingBeatmap.cs | 124 ++--------------- osu.Game/Database/BeatmapDatabase.cs | 15 +-- osu.Game/Database/DatabaseWorkingBeatmap.cs | 127 ++++++++++++++++++ osu.Game/osu.Game.csproj | 1 + 8 files changed, 176 insertions(+), 152 deletions(-) create mode 100644 osu.Desktop.VisualTests/Beatmaps/TestWorkingBeatmap.cs create mode 100644 osu.Game/Database/DatabaseWorkingBeatmap.cs diff --git a/osu.Desktop.VisualTests/Beatmaps/TestWorkingBeatmap.cs b/osu.Desktop.VisualTests/Beatmaps/TestWorkingBeatmap.cs new file mode 100644 index 0000000000..e6236b041f --- /dev/null +++ b/osu.Desktop.VisualTests/Beatmaps/TestWorkingBeatmap.cs @@ -0,0 +1,32 @@ +using System; +using osu.Framework.Audio.Track; +using osu.Framework.Graphics.Textures; +using osu.Game.Beatmaps; +using osu.Game.Beatmaps.IO; + +namespace osu.Desktop.VisualTests.Beatmaps +{ + public class TestWorkingBeatmap : WorkingBeatmap + { + public TestWorkingBeatmap(Beatmap beatmap) + : base(beatmap.BeatmapInfo, beatmap.BeatmapInfo.BeatmapSet) + { + this.beatmap = beatmap; + } + + private Beatmap beatmap; + public override Beatmap Beatmap => beatmap; + public override Texture Background => null; + public override Track Track => null; + + public override void Dispose() + { + // This space intentionally left blank + } + + public override void TransferTo(WorkingBeatmap other) + { + // This space intentionally left blank + } + } +} diff --git a/osu.Desktop.VisualTests/Tests/TestCaseGamefield.cs b/osu.Desktop.VisualTests/Tests/TestCaseGamefield.cs index c2e33f7f32..6de2b36cd0 100644 --- a/osu.Desktop.VisualTests/Tests/TestCaseGamefield.cs +++ b/osu.Desktop.VisualTests/Tests/TestCaseGamefield.cs @@ -17,6 +17,8 @@ using osu.Game.Modes.Osu.Objects; using osu.Game.Modes.Osu.UI; using osu.Game.Modes.Taiko.UI; using System.Collections.Generic; +using osu.Framework.Graphics.Textures; +using osu.Desktop.VisualTests.Beatmaps; namespace osu.Desktop.VisualTests.Tests { @@ -95,16 +97,5 @@ namespace osu.Desktop.VisualTests.Tests } }); } - - private class TestWorkingBeatmap : WorkingBeatmap - { - public TestWorkingBeatmap(Beatmap beatmap) - : base(beatmap.BeatmapInfo, beatmap.BeatmapInfo.BeatmapSet) - { - Beatmap = beatmap; - } - - protected override ArchiveReader GetReader() => null; - } } } diff --git a/osu.Desktop.VisualTests/Tests/TestCasePlayer.cs b/osu.Desktop.VisualTests/Tests/TestCasePlayer.cs index 41bd24b900..21a00ebdf6 100644 --- a/osu.Desktop.VisualTests/Tests/TestCasePlayer.cs +++ b/osu.Desktop.VisualTests/Tests/TestCasePlayer.cs @@ -15,6 +15,7 @@ using osu.Game.Modes.Objects; using osu.Game.Modes.Osu.Objects; using osu.Game.Screens.Play; using OpenTK.Graphics; +using osu.Desktop.VisualTests.Beatmaps; namespace osu.Desktop.VisualTests.Tests { @@ -97,16 +98,5 @@ namespace osu.Desktop.VisualTests.Tests Beatmap = beatmap }; } - - private class TestWorkingBeatmap : WorkingBeatmap - { - public TestWorkingBeatmap(Beatmap beatmap) - : base(beatmap.BeatmapInfo, beatmap.BeatmapInfo.BeatmapSet) - { - Beatmap = beatmap; - } - - protected override ArchiveReader GetReader() => null; - } } } diff --git a/osu.Desktop.VisualTests/osu.Desktop.VisualTests.csproj b/osu.Desktop.VisualTests/osu.Desktop.VisualTests.csproj index 6eb9e5e648..b67b4c4bb3 100644 --- a/osu.Desktop.VisualTests/osu.Desktop.VisualTests.csproj +++ b/osu.Desktop.VisualTests/osu.Desktop.VisualTests.csproj @@ -205,9 +205,13 @@ + + + +