Added a DownloadListener interface and more bar notifications.

Notifications are now sent when a download is complete and when new songs are imported in the downloads menu.

Signed-off-by: Jeffrey Han <itdelatrisu@gmail.com>
This commit is contained in:
Jeffrey Han
2015-03-05 15:36:36 -05:00
parent cf9b22442f
commit b80764f3eb
3 changed files with 28 additions and 0 deletions

View File

@@ -518,6 +518,10 @@ public class DownloadsMenu extends BasicGameState {
OsuGroupList.get().reset();
OsuGroupList.get().init();
((SongMenu) game.getState(Opsu.STATE_SONGMENU)).setFocus(node, -1, true);
// send notification
UI.sendBarNotification((dirs.length == 1) ? "Imported 1 new song." :
String.format("Imported %d new songs.", dirs.length));
}
}