mirror of
https://github.com/ppy/osu.git
synced 2024-12-14 04:52:57 +08:00
Add medal overlay to game
This commit is contained in:
parent
b334b78b63
commit
8abcc70b93
@ -6,6 +6,7 @@
|
|||||||
using System;
|
using System;
|
||||||
using System.IO;
|
using System.IO;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
|
using Newtonsoft.Json.Linq;
|
||||||
using NUnit.Framework;
|
using NUnit.Framework;
|
||||||
using osu.Framework.Allocation;
|
using osu.Framework.Allocation;
|
||||||
using osu.Framework.Configuration;
|
using osu.Framework.Configuration;
|
||||||
@ -24,6 +25,8 @@ using osu.Game.Graphics.Containers;
|
|||||||
using osu.Game.Graphics.UserInterface;
|
using osu.Game.Graphics.UserInterface;
|
||||||
using osu.Game.Online.API;
|
using osu.Game.Online.API;
|
||||||
using osu.Game.Online.Leaderboards;
|
using osu.Game.Online.Leaderboards;
|
||||||
|
using osu.Game.Online.Notifications.WebSocket;
|
||||||
|
using osu.Game.Online.Notifications.WebSocket.Events;
|
||||||
using osu.Game.Overlays;
|
using osu.Game.Overlays;
|
||||||
using osu.Game.Overlays.BeatmapListing;
|
using osu.Game.Overlays.BeatmapListing;
|
||||||
using osu.Game.Overlays.Mods;
|
using osu.Game.Overlays.Mods;
|
||||||
@ -340,6 +343,28 @@ namespace osu.Game.Tests.Visual.Navigation
|
|||||||
AddUntilStep("wait for results", () => Game.ScreenStack.CurrentScreen is ResultsScreen);
|
AddUntilStep("wait for results", () => Game.ScreenStack.CurrentScreen is ResultsScreen);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
[Test]
|
||||||
|
public void TestShowMedalAtResults()
|
||||||
|
{
|
||||||
|
playToResults();
|
||||||
|
|
||||||
|
AddStep("award medal", () => ((DummyAPIAccess)API).NotificationsClient.Receive(new SocketMessage
|
||||||
|
{
|
||||||
|
Event = @"new",
|
||||||
|
Data = JObject.FromObject(new NewPrivateNotificationEvent
|
||||||
|
{
|
||||||
|
Name = @"user_achievement_unlock",
|
||||||
|
Details = JObject.FromObject(new UserAchievementUnlock
|
||||||
|
{
|
||||||
|
Title = "Time And A Half",
|
||||||
|
Description = "Having a right ol' time. One and a half of them, almost.",
|
||||||
|
Slug = @"all-intro-doubletime"
|
||||||
|
})
|
||||||
|
})
|
||||||
|
}));
|
||||||
|
AddUntilStep("medal overlay shown", () => Game.ChildrenOfType<MedalOverlay>().Single().State.Value, () => Is.EqualTo(Visibility.Visible));
|
||||||
|
}
|
||||||
|
|
||||||
[Test]
|
[Test]
|
||||||
public void TestRetryFromResults()
|
public void TestRetryFromResults()
|
||||||
{
|
{
|
||||||
|
@ -1072,6 +1072,7 @@ namespace osu.Game
|
|||||||
loadComponentSingleFile(beatmapSetOverlay = new BeatmapSetOverlay(), overlayContent.Add, true);
|
loadComponentSingleFile(beatmapSetOverlay = new BeatmapSetOverlay(), overlayContent.Add, true);
|
||||||
loadComponentSingleFile(wikiOverlay = new WikiOverlay(), overlayContent.Add, true);
|
loadComponentSingleFile(wikiOverlay = new WikiOverlay(), overlayContent.Add, true);
|
||||||
loadComponentSingleFile(skinEditor = new SkinEditorOverlay(ScreenContainer), overlayContent.Add, true);
|
loadComponentSingleFile(skinEditor = new SkinEditorOverlay(ScreenContainer), overlayContent.Add, true);
|
||||||
|
loadComponentSingleFile(new MedalOverlay(), overlayContent.Add);
|
||||||
|
|
||||||
loadComponentSingleFile(new LoginOverlay
|
loadComponentSingleFile(new LoginOverlay
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user