//Copyright (c) 2007-2016 ppy Pty Ltd . //Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE using osu.Framework.Graphics; using osu.Game.Graphics.UserInterface; using osu.Game.Modes.UI; using OpenTK; using OpenTK.Input; using osu.Framework.Graphics.Primitives; namespace osu.Game.Modes.Osu.UI { public class OsuScoreOverlay : ScoreOverlay { protected override ScoreCounter CreateScoreCounter() => new ScoreCounter() { Anchor = Anchor.TopRight, Origin = Anchor.TopRight, TextSize = 60, Margin = new MarginPadding { Right = 5 }, }; protected override PercentageCounter CreateAccuracyCounter() => new PercentageCounter() { Anchor = Anchor.TopRight, Origin = Anchor.TopRight, Position = new Vector2(0, 55), Margin = new MarginPadding { Right = 5 }, }; protected override ComboCounter CreateComboCounter() => new OsuComboCounter() { Anchor = Anchor.BottomLeft, Origin = Anchor.BottomLeft, }; protected override KeyCounterCollection CreateKeyCounter() => new KeyCounterCollection { IsCounting = true, FadeTime = 50, Anchor = Anchor.BottomRight, Origin = Anchor.BottomRight, Margin = new MarginPadding(10), Children = new KeyCounter[] { new KeyCounterKeyboard(@"Z", Key.Z), new KeyCounterKeyboard(@"X", Key.X), new KeyCounterMouse(@"M1", MouseButton.Left), new KeyCounterMouse(@"M2", MouseButton.Right), } }; } }