2021-04-05 10:41:40 +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.
|
|
|
|
|
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using osu.Game.Beatmaps;
|
2021-11-04 17:02:44 +08:00
|
|
|
|
using osu.Game.Online.API.Requests.Responses;
|
2021-04-05 10:41:40 +08:00
|
|
|
|
using osu.Game.Rulesets.EmptyFreeform.Replays;
|
|
|
|
|
using osu.Game.Rulesets.Mods;
|
|
|
|
|
using osu.Game.Scoring;
|
|
|
|
|
|
|
|
|
|
namespace osu.Game.Rulesets.EmptyFreeform.Mods
|
|
|
|
|
{
|
2021-05-25 17:09:24 +08:00
|
|
|
|
public class EmptyFreeformModAutoplay : ModAutoplay
|
2021-04-05 10:41:40 +08:00
|
|
|
|
{
|
|
|
|
|
public override Score CreateReplayScore(IBeatmap beatmap, IReadOnlyList<Mod> mods) => new Score
|
|
|
|
|
{
|
|
|
|
|
ScoreInfo = new ScoreInfo
|
|
|
|
|
{
|
2021-11-04 17:02:44 +08:00
|
|
|
|
User = new APIUser { Username = "sample" },
|
2021-04-05 10:41:40 +08:00
|
|
|
|
},
|
|
|
|
|
Replay = new EmptyFreeformAutoGenerator(beatmap).Generate(),
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
}
|