2017-03-11 13:27:18 +08:00
|
|
|
|
// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
|
|
|
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
|
|
|
|
|
|
|
|
|
using osu.Framework.Allocation;
|
|
|
|
|
using osu.Framework.Configuration;
|
|
|
|
|
using osu.Framework.Graphics;
|
|
|
|
|
using osu.Framework.Graphics.Containers;
|
2017-05-05 12:00:05 +08:00
|
|
|
|
using osu.Framework.Input;
|
2017-03-11 13:27:18 +08:00
|
|
|
|
using osu.Game.Configuration;
|
2017-06-05 16:15:04 +08:00
|
|
|
|
using osu.Game.Graphics;
|
2017-03-11 13:27:18 +08:00
|
|
|
|
using osu.Game.Graphics.UserInterface;
|
2017-04-02 21:18:01 +08:00
|
|
|
|
using osu.Game.Overlays;
|
|
|
|
|
using osu.Game.Overlays.Notifications;
|
2017-05-05 12:00:05 +08:00
|
|
|
|
using osu.Game.Rulesets.Scoring;
|
|
|
|
|
using osu.Game.Rulesets.UI;
|
|
|
|
|
using osu.Game.Screens.Play.HUD;
|
2017-06-05 16:15:04 +08:00
|
|
|
|
using OpenTK;
|
2017-05-05 12:00:05 +08:00
|
|
|
|
using OpenTK.Input;
|
2017-03-11 13:27:18 +08:00
|
|
|
|
|
2017-05-05 12:00:05 +08:00
|
|
|
|
namespace osu.Game.Screens.Play
|
2017-03-11 13:27:18 +08:00
|
|
|
|
{
|
2017-06-05 16:15:04 +08:00
|
|
|
|
public class HUDOverlay : Container
|
2017-03-11 13:27:18 +08:00
|
|
|
|
{
|
2017-04-03 17:17:53 +08:00
|
|
|
|
private const int duration = 100;
|
|
|
|
|
|
2017-04-04 22:47:41 +08:00
|
|
|
|
private readonly Container content;
|
2017-06-05 16:15:04 +08:00
|
|
|
|
|
2017-03-11 13:27:18 +08:00
|
|
|
|
public readonly KeyCounterCollection KeyCounter;
|
2017-04-07 20:20:31 +08:00
|
|
|
|
public readonly RollingCounter<int> ComboCounter;
|
2017-03-11 13:27:18 +08:00
|
|
|
|
public readonly ScoreCounter ScoreCounter;
|
2017-04-07 20:20:31 +08:00
|
|
|
|
public readonly RollingCounter<double> AccuracyCounter;
|
2017-03-11 13:27:18 +08:00
|
|
|
|
public readonly HealthDisplay HealthDisplay;
|
2017-03-22 20:27:04 +08:00
|
|
|
|
public readonly SongProgress Progress;
|
2017-05-05 12:00:05 +08:00
|
|
|
|
public readonly ModDisplay ModDisplay;
|
2017-03-11 13:27:18 +08:00
|
|
|
|
|
2017-03-31 21:43:31 +08:00
|
|
|
|
private Bindable<bool> showHud;
|
2017-05-30 17:23:53 +08:00
|
|
|
|
private bool replayLoaded;
|
2017-03-31 21:43:31 +08:00
|
|
|
|
|
2017-04-03 19:58:38 +08:00
|
|
|
|
private static bool hasShownNotificationOnce;
|
2017-03-11 13:27:18 +08:00
|
|
|
|
|
2017-06-05 16:15:04 +08:00
|
|
|
|
public HUDOverlay()
|
2017-03-11 13:27:18 +08:00
|
|
|
|
{
|
|
|
|
|
RelativeSizeAxes = Axes.Both;
|
|
|
|
|
|
2017-04-04 22:47:41 +08:00
|
|
|
|
Add(content = new Container
|
2017-03-11 13:27:18 +08:00
|
|
|
|
{
|
2017-04-03 16:41:17 +08:00
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
|
|
|
|
|
|
|
|
|
Children = new Drawable[]
|
|
|
|
|
{
|
|
|
|
|
KeyCounter = CreateKeyCounter(),
|
|
|
|
|
ComboCounter = CreateComboCounter(),
|
|
|
|
|
ScoreCounter = CreateScoreCounter(),
|
|
|
|
|
AccuracyCounter = CreateAccuracyCounter(),
|
|
|
|
|
HealthDisplay = CreateHealthDisplay(),
|
2017-04-07 08:22:07 +08:00
|
|
|
|
Progress = CreateProgress(),
|
2017-05-05 12:00:05 +08:00
|
|
|
|
ModDisplay = CreateModsContainer(),
|
2017-06-05 15:48:38 +08:00
|
|
|
|
//ReplaySettingsOverlay = CreateReplaySettingsOverlay(),
|
2017-04-03 16:41:17 +08:00
|
|
|
|
}
|
|
|
|
|
});
|
2017-03-11 13:27:18 +08:00
|
|
|
|
}
|
|
|
|
|
|
2017-04-02 21:18:01 +08:00
|
|
|
|
[BackgroundDependencyLoader(true)]
|
2017-06-05 16:15:04 +08:00
|
|
|
|
private void load(OsuConfigManager config, NotificationManager notificationManager, OsuColour colours)
|
2017-03-11 13:27:18 +08:00
|
|
|
|
{
|
2017-05-15 09:56:27 +08:00
|
|
|
|
showHud = config.GetBindable<bool>(OsuSetting.ShowInterface);
|
2017-05-23 17:24:16 +08:00
|
|
|
|
showHud.ValueChanged += hudVisibility => content.FadeTo(hudVisibility ? 1 : 0, duration);
|
2017-03-31 21:43:31 +08:00
|
|
|
|
showHud.TriggerChange();
|
2017-04-02 21:18:01 +08:00
|
|
|
|
|
2017-04-03 19:58:38 +08:00
|
|
|
|
if (!showHud && !hasShownNotificationOnce)
|
2017-04-02 21:18:01 +08:00
|
|
|
|
{
|
2017-04-03 19:58:38 +08:00
|
|
|
|
hasShownNotificationOnce = true;
|
2017-04-03 17:03:21 +08:00
|
|
|
|
|
2017-04-02 21:18:01 +08:00
|
|
|
|
notificationManager?.Post(new SimpleNotification
|
|
|
|
|
{
|
2017-04-06 13:27:23 +08:00
|
|
|
|
Text = @"The score overlay is currently disabled. You can toggle this by pressing Shift+Tab."
|
2017-04-02 21:18:01 +08:00
|
|
|
|
});
|
|
|
|
|
}
|
2017-03-11 13:27:18 +08:00
|
|
|
|
|
2017-06-05 16:15:04 +08:00
|
|
|
|
// todo: the stuff below should probably not be in this base implementation, but in each individual class.
|
|
|
|
|
ComboCounter.AccentColour = colours.BlueLighter;
|
|
|
|
|
AccuracyCounter.AccentColour = colours.BlueLighter;
|
|
|
|
|
ScoreCounter.AccentColour = colours.BlueLighter;
|
|
|
|
|
|
|
|
|
|
var shd = HealthDisplay as StandardHealthDisplay;
|
|
|
|
|
if (shd != null)
|
|
|
|
|
{
|
|
|
|
|
shd.AccentColour = colours.BlueLighter;
|
|
|
|
|
shd.GlowColour = colours.BlueDarker;
|
|
|
|
|
}
|
2017-03-11 13:27:18 +08:00
|
|
|
|
}
|
|
|
|
|
|
2017-04-20 16:11:58 +08:00
|
|
|
|
public virtual void BindHitRenderer(HitRenderer hitRenderer)
|
2017-03-11 13:27:18 +08:00
|
|
|
|
{
|
|
|
|
|
hitRenderer.InputManager.Add(KeyCounter.GetReceptor());
|
2017-05-08 10:48:40 +08:00
|
|
|
|
|
2017-05-30 17:23:53 +08:00
|
|
|
|
replayLoaded = hitRenderer.HasReplayLoaded;
|
|
|
|
|
|
2017-05-08 10:48:40 +08:00
|
|
|
|
// in the case a replay isn't loaded, we want some elements to only appear briefly.
|
2017-05-30 17:23:53 +08:00
|
|
|
|
if (!replayLoaded)
|
2017-05-30 00:00:29 +08:00
|
|
|
|
{
|
2017-05-08 10:48:40 +08:00
|
|
|
|
using (ModDisplay.BeginDelayedSequence(2000))
|
|
|
|
|
ModDisplay.FadeOut(200);
|
2017-05-30 00:00:29 +08:00
|
|
|
|
}
|
2017-03-11 13:27:18 +08:00
|
|
|
|
}
|
2017-04-01 19:46:45 +08:00
|
|
|
|
|
|
|
|
|
protected override bool OnKeyDown(InputState state, KeyDownEventArgs args)
|
|
|
|
|
{
|
|
|
|
|
if (args.Repeat) return false;
|
|
|
|
|
|
|
|
|
|
if (state.Keyboard.ShiftPressed)
|
|
|
|
|
{
|
|
|
|
|
switch (args.Key)
|
|
|
|
|
{
|
|
|
|
|
case Key.Tab:
|
|
|
|
|
showHud.Value = !showHud.Value;
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return base.OnKeyDown(state, args);
|
|
|
|
|
}
|
2017-06-05 16:15:04 +08:00
|
|
|
|
|
|
|
|
|
protected virtual RollingCounter<double> CreateAccuracyCounter() => new PercentageCounter
|
|
|
|
|
{
|
|
|
|
|
Anchor = Anchor.TopCentre,
|
|
|
|
|
Origin = Anchor.TopRight,
|
|
|
|
|
Position = new Vector2(0, 35),
|
|
|
|
|
TextSize = 20,
|
|
|
|
|
Margin = new MarginPadding { Right = 140 },
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
protected virtual RollingCounter<int> CreateComboCounter() => new SimpleComboCounter
|
|
|
|
|
{
|
|
|
|
|
Anchor = Anchor.TopCentre,
|
|
|
|
|
Origin = Anchor.TopLeft,
|
|
|
|
|
Position = new Vector2(0, 35),
|
|
|
|
|
Margin = new MarginPadding { Left = 140 },
|
|
|
|
|
TextSize = 20,
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
protected virtual HealthDisplay CreateHealthDisplay() => new StandardHealthDisplay
|
|
|
|
|
{
|
|
|
|
|
Size = new Vector2(1, 5),
|
|
|
|
|
RelativeSizeAxes = Axes.X,
|
|
|
|
|
Margin = new MarginPadding { Top = 20 }
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
protected virtual KeyCounterCollection CreateKeyCounter() => new KeyCounterCollection
|
|
|
|
|
{
|
|
|
|
|
IsCounting = true,
|
|
|
|
|
FadeTime = 50,
|
|
|
|
|
Anchor = Anchor.BottomRight,
|
|
|
|
|
Origin = Anchor.BottomRight,
|
|
|
|
|
Margin = new MarginPadding(10),
|
|
|
|
|
Y = -TwoLayerButton.SIZE_RETRACTED.Y,
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
protected virtual ScoreCounter CreateScoreCounter() => new ScoreCounter(6)
|
|
|
|
|
{
|
|
|
|
|
Anchor = Anchor.TopCentre,
|
|
|
|
|
Origin = Anchor.TopCentre,
|
|
|
|
|
TextSize = 40,
|
|
|
|
|
Position = new Vector2(0, 30),
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
protected virtual SongProgress CreateProgress() => new SongProgress
|
|
|
|
|
{
|
|
|
|
|
Anchor = Anchor.BottomLeft,
|
|
|
|
|
Origin = Anchor.BottomLeft,
|
|
|
|
|
RelativeSizeAxes = Axes.X,
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
protected virtual ModDisplay CreateModsContainer() => new ModDisplay
|
|
|
|
|
{
|
|
|
|
|
Anchor = Anchor.TopRight,
|
|
|
|
|
Origin = Anchor.TopRight,
|
|
|
|
|
AutoSizeAxes = Axes.Both,
|
|
|
|
|
Margin = new MarginPadding { Top = 20, Right = 10 },
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
//protected virtual ReplaySettingsOverlay CreateReplaySettingsOverlay() => new ReplaySettingsOverlay
|
|
|
|
|
//{
|
|
|
|
|
// Anchor = Anchor.TopRight,
|
|
|
|
|
// Origin = Anchor.TopRight,
|
|
|
|
|
// Margin = new MarginPadding { Top = 100, Right = 10 },
|
|
|
|
|
//};
|
|
|
|
|
|
|
|
|
|
public virtual void BindProcessor(ScoreProcessor processor)
|
|
|
|
|
{
|
|
|
|
|
ScoreCounter?.Current.BindTo(processor.TotalScore);
|
|
|
|
|
AccuracyCounter?.Current.BindTo(processor.Accuracy);
|
|
|
|
|
ComboCounter?.Current.BindTo(processor.Combo);
|
|
|
|
|
HealthDisplay?.Current.BindTo(processor.Health);
|
|
|
|
|
|
|
|
|
|
var shd = HealthDisplay as StandardHealthDisplay;
|
|
|
|
|
if (shd != null)
|
|
|
|
|
processor.NewJudgement += shd.Flash;
|
|
|
|
|
}
|
2017-03-11 13:27:18 +08:00
|
|
|
|
}
|
|
|
|
|
}
|