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.Game.Configuration;
|
|
|
|
|
using osu.Game.Graphics.UserInterface;
|
|
|
|
|
using osu.Game.Screens.Play;
|
|
|
|
|
using System;
|
2017-03-24 08:51:52 +08:00
|
|
|
|
using osu.Game.Modes.Scoring;
|
2017-04-01 19:46:45 +08:00
|
|
|
|
using osu.Framework.Input;
|
|
|
|
|
using OpenTK.Input;
|
2017-03-11 13:27:18 +08:00
|
|
|
|
|
|
|
|
|
namespace osu.Game.Modes.UI
|
|
|
|
|
{
|
|
|
|
|
public abstract class HudOverlay : Container
|
|
|
|
|
{
|
|
|
|
|
public readonly KeyCounterCollection KeyCounter;
|
|
|
|
|
public readonly ComboCounter ComboCounter;
|
|
|
|
|
public readonly ScoreCounter ScoreCounter;
|
|
|
|
|
public readonly PercentageCounter AccuracyCounter;
|
|
|
|
|
public readonly HealthDisplay HealthDisplay;
|
|
|
|
|
|
|
|
|
|
private Bindable<bool> showKeyCounter;
|
2017-03-31 21:43:31 +08:00
|
|
|
|
private Bindable<bool> showHud;
|
|
|
|
|
|
|
|
|
|
public bool IsVisible => showHud;
|
2017-03-11 13:27:18 +08:00
|
|
|
|
|
|
|
|
|
protected abstract KeyCounterCollection CreateKeyCounter();
|
|
|
|
|
protected abstract ComboCounter CreateComboCounter();
|
|
|
|
|
protected abstract PercentageCounter CreateAccuracyCounter();
|
|
|
|
|
protected abstract ScoreCounter CreateScoreCounter();
|
|
|
|
|
protected abstract HealthDisplay CreateHealthDisplay();
|
|
|
|
|
|
|
|
|
|
protected HudOverlay()
|
|
|
|
|
{
|
|
|
|
|
RelativeSizeAxes = Axes.Both;
|
2017-04-01 19:46:45 +08:00
|
|
|
|
AlwaysPresent = true;
|
2017-03-11 13:27:18 +08:00
|
|
|
|
|
|
|
|
|
Children = new Drawable[]
|
|
|
|
|
{
|
|
|
|
|
KeyCounter = CreateKeyCounter(),
|
|
|
|
|
ComboCounter = CreateComboCounter(),
|
|
|
|
|
ScoreCounter = CreateScoreCounter(),
|
|
|
|
|
AccuracyCounter = CreateAccuracyCounter(),
|
|
|
|
|
HealthDisplay = CreateHealthDisplay(),
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[BackgroundDependencyLoader]
|
|
|
|
|
private void load(OsuConfigManager config)
|
|
|
|
|
{
|
|
|
|
|
showKeyCounter = config.GetBindable<bool>(OsuConfig.KeyOverlay);
|
2017-03-31 21:43:31 +08:00
|
|
|
|
showKeyCounter.ValueChanged += keyCounterVisibilityChanged;
|
2017-03-11 13:27:18 +08:00
|
|
|
|
showKeyCounter.TriggerChange();
|
2017-03-31 21:43:31 +08:00
|
|
|
|
|
|
|
|
|
showHud = config.GetBindable<bool>(OsuConfig.ShowInterface);
|
|
|
|
|
showHud.ValueChanged += hudVisibilityChanged;
|
|
|
|
|
showHud.TriggerChange();
|
2017-03-11 13:27:18 +08:00
|
|
|
|
}
|
|
|
|
|
|
2017-03-31 21:43:31 +08:00
|
|
|
|
private void keyCounterVisibilityChanged(object sender, EventArgs e)
|
2017-03-11 13:27:18 +08:00
|
|
|
|
{
|
|
|
|
|
if (showKeyCounter)
|
|
|
|
|
KeyCounter.Show();
|
|
|
|
|
else
|
|
|
|
|
KeyCounter.Hide();
|
|
|
|
|
}
|
|
|
|
|
|
2017-03-31 21:43:31 +08:00
|
|
|
|
private void hudVisibilityChanged(object sender, EventArgs e)
|
|
|
|
|
{
|
|
|
|
|
if (showHud)
|
|
|
|
|
Show();
|
|
|
|
|
else
|
|
|
|
|
Hide();
|
|
|
|
|
}
|
|
|
|
|
|
2017-03-11 13:27:18 +08:00
|
|
|
|
public void BindProcessor(ScoreProcessor processor)
|
|
|
|
|
{
|
|
|
|
|
//bind processor bindables to combocounter, score display etc.
|
|
|
|
|
//TODO: these should be bindable binds, not events!
|
|
|
|
|
ScoreCounter?.Current.BindTo(processor.TotalScore);
|
|
|
|
|
AccuracyCounter?.Current.BindTo(processor.Accuracy);
|
|
|
|
|
ComboCounter?.Current.BindTo(processor.Combo);
|
|
|
|
|
HealthDisplay?.Current.BindTo(processor.Health);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void BindHitRenderer(HitRenderer hitRenderer)
|
|
|
|
|
{
|
|
|
|
|
hitRenderer.InputManager.Add(KeyCounter.GetReceptor());
|
|
|
|
|
}
|
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
|
|
|
|
}
|
|
|
|
|
}
|