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-12-11 16:32:01 +08:00
|
|
|
|
2018-12-27 20:12:32 +08:00
|
|
|
using System;
|
2018-12-17 10:51:12 +08:00
|
|
|
using System.Diagnostics;
|
|
|
|
using System.Threading;
|
2018-12-14 20:09:17 +08:00
|
|
|
using osu.Framework.Allocation;
|
2019-02-05 18:00:01 +08:00
|
|
|
using osu.Framework.Configuration;
|
2018-12-17 10:51:12 +08:00
|
|
|
using osu.Framework.Logging;
|
2019-01-23 19:52:00 +08:00
|
|
|
using osu.Framework.Screens;
|
2018-12-14 20:09:17 +08:00
|
|
|
using osu.Game.Online.API;
|
2018-12-22 11:50:37 +08:00
|
|
|
using osu.Game.Online.API.Requests;
|
2018-12-21 17:22:13 +08:00
|
|
|
using osu.Game.Online.Multiplayer;
|
2018-12-14 20:09:17 +08:00
|
|
|
using osu.Game.Scoring;
|
2018-12-21 17:22:13 +08:00
|
|
|
using osu.Game.Screens.Multi.Ranking;
|
2018-12-11 16:32:01 +08:00
|
|
|
using osu.Game.Screens.Play;
|
2018-12-21 17:22:13 +08:00
|
|
|
using osu.Game.Screens.Ranking;
|
2018-12-11 16:32:01 +08:00
|
|
|
|
|
|
|
namespace osu.Game.Screens.Multi.Play
|
|
|
|
{
|
|
|
|
public class TimeshiftPlayer : Player
|
|
|
|
{
|
2019-01-23 19:52:00 +08:00
|
|
|
public Action Exited;
|
|
|
|
|
2019-02-05 18:00:01 +08:00
|
|
|
[Resolved(typeof(Room), nameof(Room.RoomID))]
|
|
|
|
private Bindable<int?> roomId { get; set; }
|
|
|
|
|
2018-12-14 20:09:17 +08:00
|
|
|
private readonly int playlistItemId;
|
|
|
|
|
|
|
|
[Resolved]
|
|
|
|
private APIAccess api { get; set; }
|
|
|
|
|
2019-02-05 18:00:01 +08:00
|
|
|
public TimeshiftPlayer(int playlistItemId)
|
2018-12-14 20:09:17 +08:00
|
|
|
{
|
|
|
|
this.playlistItemId = playlistItemId;
|
|
|
|
}
|
|
|
|
|
2018-12-17 10:51:12 +08:00
|
|
|
private int? token;
|
2018-12-14 20:09:17 +08:00
|
|
|
|
|
|
|
[BackgroundDependencyLoader]
|
|
|
|
private void load()
|
|
|
|
{
|
2018-12-17 10:51:12 +08:00
|
|
|
token = null;
|
|
|
|
|
|
|
|
bool failed = false;
|
|
|
|
|
2019-02-05 18:00:01 +08:00
|
|
|
var req = new CreateRoomScoreRequest(roomId.Value ?? 0, playlistItemId);
|
2018-12-14 20:09:17 +08:00
|
|
|
req.Success += r => token = r.ID;
|
2018-12-17 10:51:12 +08:00
|
|
|
req.Failure += e =>
|
|
|
|
{
|
|
|
|
failed = true;
|
|
|
|
|
|
|
|
Logger.Error(e, "Failed to retrieve a score submission token.");
|
|
|
|
|
|
|
|
Schedule(() =>
|
|
|
|
{
|
|
|
|
ValidForResume = false;
|
2019-01-23 19:52:00 +08:00
|
|
|
this.Exit();
|
2018-12-17 10:51:12 +08:00
|
|
|
});
|
|
|
|
};
|
|
|
|
|
2018-12-14 20:09:17 +08:00
|
|
|
api.Queue(req);
|
2018-12-17 10:51:12 +08:00
|
|
|
|
|
|
|
while (!failed && !token.HasValue)
|
|
|
|
Thread.Sleep(1000);
|
2018-12-14 20:09:17 +08:00
|
|
|
}
|
|
|
|
|
2019-01-23 19:52:00 +08:00
|
|
|
public override bool OnExiting(IScreen next)
|
|
|
|
{
|
|
|
|
if (base.OnExiting(next))
|
|
|
|
return true;
|
|
|
|
|
|
|
|
Exited?.Invoke();
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2018-12-14 20:09:17 +08:00
|
|
|
protected override ScoreInfo CreateScore()
|
2018-12-27 20:12:32 +08:00
|
|
|
{
|
|
|
|
submitScore();
|
|
|
|
return base.CreateScore();
|
|
|
|
}
|
|
|
|
|
|
|
|
private void submitScore()
|
2018-12-14 20:09:17 +08:00
|
|
|
{
|
|
|
|
var score = base.CreateScore();
|
|
|
|
|
2018-12-27 20:12:32 +08:00
|
|
|
score.TotalScore = (int)Math.Round(ScoreProcessor.GetStandardisedScore());
|
|
|
|
|
2018-12-17 10:51:12 +08:00
|
|
|
Debug.Assert(token != null);
|
|
|
|
|
2019-02-05 18:00:01 +08:00
|
|
|
var request = new SubmitRoomScoreRequest(token.Value, roomId.Value ?? 0, playlistItemId, score);
|
2018-12-17 10:51:12 +08:00
|
|
|
request.Failure += e => Logger.Error(e, "Failed to submit score");
|
2018-12-14 20:09:17 +08:00
|
|
|
api.Queue(request);
|
|
|
|
}
|
2018-12-21 17:22:13 +08:00
|
|
|
|
2019-01-23 19:52:00 +08:00
|
|
|
protected override void Dispose(bool isDisposing)
|
|
|
|
{
|
|
|
|
base.Dispose(isDisposing);
|
|
|
|
|
|
|
|
Exited = null;
|
|
|
|
}
|
|
|
|
|
2019-02-05 18:00:01 +08:00
|
|
|
protected override Results CreateResults(ScoreInfo score) => new MatchResults(score);
|
2018-12-14 20:09:17 +08:00
|
|
|
}
|
2018-12-11 16:32:01 +08:00
|
|
|
}
|