1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-23 12:47:24 +08:00
osu-lazer/osu.Game.Tournament.Tests/Components/TestSceneMatchScoreDisplay.cs

41 lines
1.2 KiB
C#
Raw Normal View History

2019-03-04 12:24:19 +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-11-15 20:28:42 +08:00
using osu.Framework.Allocation;
using osu.Framework.Graphics;
2020-01-09 12:43:44 +08:00
using osu.Framework.Utils;
2018-11-15 20:28:42 +08:00
using osu.Game.Tournament.IPC;
using osu.Game.Tournament.Screens.Gameplay.Components;
2019-06-18 14:28:36 +08:00
namespace osu.Game.Tournament.Tests.Components
2018-11-15 20:28:42 +08:00
{
public class TestSceneMatchScoreDisplay : TournamentTestScene
2018-11-15 20:28:42 +08:00
{
[Cached(Type = typeof(MatchIPCInfo))]
private MatchIPCInfo matchInfo = new MatchIPCInfo();
2019-06-14 16:25:07 +08:00
public TestSceneMatchScoreDisplay()
2018-11-15 20:28:42 +08:00
{
Add(new MatchScoreDisplay
{
Anchor = Anchor.Centre,
Origin = Anchor.Centre,
});
}
protected override void LoadComplete()
{
base.LoadComplete();
Scheduler.AddDelayed(() =>
{
int amount = (int)((RNG.NextDouble() - 0.5) * 10000);
if (amount < 0)
matchInfo.Score1.Value -= amount;
else
matchInfo.Score2.Value += amount;
}, 100, true);
}
}
}