1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 20:47:25 +08:00
osu-lazer/osu.Game/Screens/Play/HUDOverlay.cs

121 lines
4.3 KiB
C#
Raw Normal View History

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;
using osu.Framework.Input;
2017-03-11 13:27:18 +08:00
using osu.Game.Configuration;
using osu.Game.Graphics.UserInterface;
using osu.Game.Overlays;
using osu.Game.Overlays.Notifications;
using osu.Game.Rulesets.Scoring;
using osu.Game.Rulesets.UI;
using osu.Game.Screens.Play.HUD;
using OpenTK.Input;
2017-03-11 13:27:18 +08:00
namespace osu.Game.Screens.Play
2017-03-11 13:27:18 +08:00
{
public abstract 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-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;
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-04-03 19:58:38 +08:00
private static bool hasShownNotificationOnce;
2017-03-11 13:27:18 +08:00
protected abstract KeyCounterCollection CreateKeyCounter();
2017-04-07 20:20:31 +08:00
protected abstract RollingCounter<int> CreateComboCounter();
protected abstract RollingCounter<double> CreateAccuracyCounter();
2017-03-11 13:27:18 +08:00
protected abstract ScoreCounter CreateScoreCounter();
protected abstract HealthDisplay CreateHealthDisplay();
2017-03-22 20:27:04 +08:00
protected abstract SongProgress CreateProgress();
protected abstract ModDisplay CreateModsContainer();
2017-03-11 13:27:18 +08:00
protected HUDOverlay()
2017-03-11 13:27:18 +08:00
{
RelativeSizeAxes = Axes.Both;
2017-05-23 16:53:12 +08:00
AlwaysPresent = true;
2017-03-11 13:27:18 +08:00
2017-04-04 22:47:41 +08:00
Add(content = new Container
2017-03-11 13:27:18 +08:00
{
RelativeSizeAxes = Axes.Both,
Children = new Drawable[]
{
KeyCounter = CreateKeyCounter(),
ComboCounter = CreateComboCounter(),
ScoreCounter = CreateScoreCounter(),
AccuracyCounter = CreateAccuracyCounter(),
HealthDisplay = CreateHealthDisplay(),
Progress = CreateProgress(),
ModDisplay = CreateModsContainer(),
}
});
2017-03-11 13:27:18 +08:00
}
[BackgroundDependencyLoader(true)]
private void load(OsuConfigManager config, NotificationManager notificationManager)
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 16:53:12 +08:00
showHud.ValueChanged += hudVisibility => FadeTo(hudVisibility ? 1 : 0, duration);
2017-03-31 21:43:31 +08:00
showHud.TriggerChange();
2017-04-03 19:58:38 +08:00
if (!showHud && !hasShownNotificationOnce)
{
2017-04-03 19:58:38 +08:00
hasShownNotificationOnce = true;
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-03-11 13:27:18 +08:00
}
public virtual void BindProcessor(ScoreProcessor processor)
2017-03-11 13:27:18 +08:00
{
ScoreCounter?.Current.BindTo(processor.TotalScore);
AccuracyCounter?.Current.BindTo(processor.Accuracy);
ComboCounter?.Current.BindTo(processor.Combo);
HealthDisplay?.Current.BindTo(processor.Health);
}
public virtual void BindHitRenderer(HitRenderer hitRenderer)
2017-03-11 13:27:18 +08:00
{
hitRenderer.InputManager.Add(KeyCounter.GetReceptor());
// in the case a replay isn't loaded, we want some elements to only appear briefly.
if (!hitRenderer.HasReplayLoaded)
using (ModDisplay.BeginDelayedSequence(2000))
ModDisplay.FadeOut(200);
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-03-11 13:27:18 +08:00
}
}