2019-01-24 16:43:03 +08:00
|
|
|
|
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
|
|
|
|
|
// See the LICENCE file in the repository root for full licence text.
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
|
|
|
|
using NUnit.Framework;
|
|
|
|
|
using osu.Framework.Graphics;
|
|
|
|
|
using osu.Framework.Graphics.Sprites;
|
|
|
|
|
using osu.Framework.MathUtils;
|
|
|
|
|
using osu.Game.Graphics.UserInterface;
|
|
|
|
|
using osu.Game.Screens.Play.HUD;
|
2018-11-20 15:51:59 +08:00
|
|
|
|
using osuTK;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2019-03-25 00:02:36 +08:00
|
|
|
|
namespace osu.Game.Tests.Visual.Gameplay
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
|
|
|
|
[TestFixture]
|
|
|
|
|
public class TestCaseScoreCounter : OsuTestCase
|
|
|
|
|
{
|
|
|
|
|
public TestCaseScoreCounter()
|
|
|
|
|
{
|
|
|
|
|
int numerator = 0, denominator = 0;
|
|
|
|
|
|
|
|
|
|
ScoreCounter score = new ScoreCounter(7)
|
|
|
|
|
{
|
|
|
|
|
Origin = Anchor.TopRight,
|
|
|
|
|
Anchor = Anchor.TopRight,
|
|
|
|
|
TextSize = 40,
|
|
|
|
|
Margin = new MarginPadding(20),
|
|
|
|
|
};
|
|
|
|
|
Add(score);
|
|
|
|
|
|
|
|
|
|
ComboCounter comboCounter = new StandardComboCounter
|
|
|
|
|
{
|
|
|
|
|
Origin = Anchor.BottomLeft,
|
|
|
|
|
Anchor = Anchor.BottomLeft,
|
|
|
|
|
Margin = new MarginPadding(10),
|
|
|
|
|
TextSize = 40,
|
|
|
|
|
};
|
|
|
|
|
Add(comboCounter);
|
|
|
|
|
|
|
|
|
|
PercentageCounter accuracyCounter = new PercentageCounter
|
|
|
|
|
{
|
|
|
|
|
Origin = Anchor.TopRight,
|
|
|
|
|
Anchor = Anchor.TopRight,
|
|
|
|
|
Position = new Vector2(-20, 60),
|
|
|
|
|
};
|
|
|
|
|
Add(accuracyCounter);
|
|
|
|
|
|
|
|
|
|
StarCounter stars = new StarCounter
|
|
|
|
|
{
|
|
|
|
|
Origin = Anchor.BottomLeft,
|
|
|
|
|
Anchor = Anchor.BottomLeft,
|
|
|
|
|
Position = new Vector2(20, -160),
|
|
|
|
|
CountStars = 5,
|
|
|
|
|
};
|
|
|
|
|
Add(stars);
|
|
|
|
|
|
|
|
|
|
SpriteText starsLabel = new SpriteText
|
|
|
|
|
{
|
|
|
|
|
Origin = Anchor.BottomLeft,
|
|
|
|
|
Anchor = Anchor.BottomLeft,
|
|
|
|
|
Position = new Vector2(20, -190),
|
|
|
|
|
Text = stars.CountStars.ToString("0.00"),
|
|
|
|
|
};
|
|
|
|
|
Add(starsLabel);
|
|
|
|
|
|
|
|
|
|
AddStep(@"Reset all", delegate
|
|
|
|
|
{
|
|
|
|
|
score.Current.Value = 0;
|
|
|
|
|
comboCounter.Current.Value = 0;
|
|
|
|
|
numerator = denominator = 0;
|
|
|
|
|
accuracyCounter.SetFraction(0, 0);
|
|
|
|
|
stars.CountStars = 0;
|
|
|
|
|
starsLabel.Text = stars.CountStars.ToString("0.00");
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
AddStep(@"Hit! :D", delegate
|
|
|
|
|
{
|
2019-02-21 17:56:34 +08:00
|
|
|
|
score.Current.Value += 300 + (ulong)(300.0 * (comboCounter.Current.Value > 0 ? comboCounter.Current.Value - 1 : 0) / 25.0);
|
2018-04-13 17:19:50 +08:00
|
|
|
|
comboCounter.Increment();
|
|
|
|
|
numerator++;
|
|
|
|
|
denominator++;
|
|
|
|
|
accuracyCounter.SetFraction(numerator, denominator);
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
AddStep(@"miss...", delegate
|
|
|
|
|
{
|
|
|
|
|
comboCounter.Current.Value = 0;
|
|
|
|
|
denominator++;
|
|
|
|
|
accuracyCounter.SetFraction(numerator, denominator);
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
AddStep(@"Alter stars", delegate
|
|
|
|
|
{
|
|
|
|
|
stars.CountStars = RNG.NextSingle() * (stars.StarCount + 1);
|
|
|
|
|
starsLabel.Text = stars.CountStars.ToString("0.00");
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
AddStep(@"Stop counters", delegate
|
|
|
|
|
{
|
|
|
|
|
score.StopRolling();
|
|
|
|
|
comboCounter.StopRolling();
|
|
|
|
|
accuracyCounter.StopRolling();
|
|
|
|
|
stars.StopAnimation();
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|