1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-07 18:47:26 +08:00
osu-lazer/osu.Game/Modes/ScoreProcesssor.cs

49 lines
1.6 KiB
C#
Raw Normal View History

2016-11-29 19:30:16 +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 System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using osu.Framework.Configuration;
using osu.Game.Modes.Objects.Drawables;
2016-11-29 19:30:16 +08:00
namespace osu.Game.Modes
{
public abstract class ScoreProcessor
2016-11-29 19:30:16 +08:00
{
public virtual Score GetScore() => new Score();
public readonly BindableDouble TotalScore = new BindableDouble { MinValue = 0 };
public readonly BindableDouble Accuracy = new BindableDouble { MinValue = 0, MaxValue = 1 };
public readonly BindableInt Combo = new BindableInt();
2016-11-29 21:05:21 +08:00
public readonly BindableInt HighestCombo = new BindableInt();
2016-11-29 20:57:53 +08:00
public readonly List<JudgementInfo> Judgements = new List<JudgementInfo>();
public ScoreProcessor()
{
2016-11-29 21:05:21 +08:00
Combo.ValueChanged += delegate { HighestCombo.Value = Math.Max(HighestCombo.Value, Combo.Value); };
}
public void AddJudgement(JudgementInfo judgement)
{
Judgements.Add(judgement);
2016-11-29 20:46:30 +08:00
UpdateCalculations(judgement);
2016-11-29 20:57:53 +08:00
judgement.ComboAtHit = (ulong)Combo.Value;
}
/// <summary>
/// Update any values that potentially need post-processing on a judgement change.
/// </summary>
/// <param name="newJudgement">A new JudgementInfo that triggered this calculation. May be null.</param>
protected abstract void UpdateCalculations(JudgementInfo newJudgement);
2016-11-29 19:30:16 +08:00
}
}