2016-10-19 18:44:03 +08:00
|
|
|
|
//Copyright (c) 2007-2016 ppy Pty Ltd <contact@ppy.sh>.
|
|
|
|
|
//Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
|
|
|
|
|
|
|
|
|
using System;
|
|
|
|
|
using osu.Framework.Graphics;
|
|
|
|
|
using osu.Framework.Graphics.Containers;
|
|
|
|
|
using osu.Game.Graphics.UserInterface;
|
2016-11-14 17:03:20 +08:00
|
|
|
|
using osu.Game.Modes.Objects;
|
2016-10-19 18:44:03 +08:00
|
|
|
|
|
2016-11-14 17:54:24 +08:00
|
|
|
|
namespace osu.Game.Modes.UI
|
2016-10-19 18:44:03 +08:00
|
|
|
|
{
|
|
|
|
|
public abstract class ScoreOverlay : Container
|
|
|
|
|
{
|
|
|
|
|
public KeyCounterCollection KeyCounter;
|
|
|
|
|
public ComboCounter ComboCounter;
|
|
|
|
|
public ScoreCounter ScoreCounter;
|
|
|
|
|
public PercentageCounter AccuracyCounter;
|
|
|
|
|
|
|
|
|
|
protected abstract KeyCounterCollection CreateKeyCounter();
|
|
|
|
|
protected abstract ComboCounter CreateComboCounter();
|
|
|
|
|
protected abstract PercentageCounter CreateAccuracyCounter();
|
|
|
|
|
protected abstract ScoreCounter CreateScoreCounter();
|
|
|
|
|
|
|
|
|
|
public virtual void OnHit(HitObject h)
|
|
|
|
|
{
|
|
|
|
|
ComboCounter?.Increment();
|
|
|
|
|
ScoreCounter?.Increment(300);
|
|
|
|
|
AccuracyCounter?.Set(Math.Min(1, AccuracyCounter.Count + 0.01f));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public virtual void OnMiss(HitObject h)
|
|
|
|
|
{
|
|
|
|
|
ComboCounter?.Roll();
|
|
|
|
|
AccuracyCounter?.Set(AccuracyCounter.Count - 0.01f);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public ScoreOverlay()
|
|
|
|
|
{
|
|
|
|
|
RelativeSizeAxes = Axes.Both;
|
|
|
|
|
|
|
|
|
|
Children = new Drawable[] {
|
|
|
|
|
KeyCounter = CreateKeyCounter(),
|
|
|
|
|
ComboCounter = CreateComboCounter(),
|
|
|
|
|
ScoreCounter = CreateScoreCounter(),
|
|
|
|
|
AccuracyCounter = CreateAccuracyCounter(),
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|