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-10-13 18:45:59 +08:00
|
|
|
|
2019-06-18 15:10:23 +08:00
|
|
|
using System.Linq;
|
2018-10-16 14:20:12 +08:00
|
|
|
using osu.Framework.Allocation;
|
2019-06-18 15:10:23 +08:00
|
|
|
using osu.Framework.Bindables;
|
2018-10-13 06:10:13 +08:00
|
|
|
using osu.Framework.Graphics;
|
|
|
|
using osu.Framework.Graphics.Containers;
|
2018-11-17 11:04:19 +08:00
|
|
|
using osu.Framework.Graphics.Shapes;
|
2019-06-18 15:10:23 +08:00
|
|
|
using osu.Game.Beatmaps;
|
2018-11-17 11:04:19 +08:00
|
|
|
using osu.Game.Graphics;
|
2019-06-18 15:10:23 +08:00
|
|
|
using osu.Game.Online.API;
|
|
|
|
using osu.Game.Online.API.Requests;
|
2018-10-13 06:10:13 +08:00
|
|
|
using osu.Game.Overlays.Settings;
|
2019-06-18 15:10:23 +08:00
|
|
|
using osu.Game.Rulesets;
|
2018-11-17 13:05:22 +08:00
|
|
|
using osu.Game.Tournament.Components;
|
2019-06-18 13:51:48 +08:00
|
|
|
using osu.Game.Tournament.Models;
|
2019-06-14 16:08:44 +08:00
|
|
|
using osuTK;
|
2018-10-13 06:10:13 +08:00
|
|
|
|
2019-06-18 13:51:48 +08:00
|
|
|
namespace osu.Game.Tournament.Screens.Editors
|
2018-10-13 06:10:13 +08:00
|
|
|
{
|
2019-06-18 16:59:33 +08:00
|
|
|
public class RoundEditorScreen : TournamentEditorScreen<RoundEditorScreen.RoundRow, TournamentRound>
|
2018-10-13 06:10:13 +08:00
|
|
|
{
|
2019-06-18 16:59:33 +08:00
|
|
|
protected override BindableList<TournamentRound> Storage => LadderInfo.Rounds;
|
2018-10-14 00:03:04 +08:00
|
|
|
|
2019-06-18 16:59:33 +08:00
|
|
|
public class RoundRow : CompositeDrawable, IModelBacked<TournamentRound>
|
2018-10-13 06:10:13 +08:00
|
|
|
{
|
2019-06-18 16:59:33 +08:00
|
|
|
public TournamentRound Model { get; }
|
2018-10-13 06:10:13 +08:00
|
|
|
|
2019-06-14 19:30:09 +08:00
|
|
|
[Resolved]
|
|
|
|
private LadderInfo ladderInfo { get; set; }
|
|
|
|
|
2019-06-18 13:44:15 +08:00
|
|
|
public RoundRow(TournamentRound round)
|
2018-10-13 06:10:13 +08:00
|
|
|
{
|
2019-06-18 16:59:33 +08:00
|
|
|
Model = round;
|
2019-06-18 15:10:23 +08:00
|
|
|
|
|
|
|
Masking = true;
|
|
|
|
CornerRadius = 10;
|
|
|
|
|
|
|
|
RoundBeatmapEditor beatmapEditor = new RoundBeatmapEditor(round)
|
|
|
|
{
|
|
|
|
Width = 0.95f
|
|
|
|
};
|
|
|
|
|
2018-10-13 06:10:13 +08:00
|
|
|
InternalChildren = new Drawable[]
|
|
|
|
{
|
2019-06-14 16:08:44 +08:00
|
|
|
new Box
|
|
|
|
{
|
|
|
|
Colour = OsuColour.Gray(0.1f),
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
|
|
|
},
|
2018-10-13 06:10:13 +08:00
|
|
|
new FillFlowContainer
|
|
|
|
{
|
2019-06-14 16:08:44 +08:00
|
|
|
Margin = new MarginPadding(5),
|
|
|
|
Padding = new MarginPadding { Right = 160 },
|
|
|
|
Spacing = new Vector2(5),
|
2018-11-17 11:04:19 +08:00
|
|
|
Direction = FillDirection.Full,
|
|
|
|
RelativeSizeAxes = Axes.X,
|
|
|
|
AutoSizeAxes = Axes.Y,
|
2018-10-13 06:10:13 +08:00
|
|
|
Children = new Drawable[]
|
|
|
|
{
|
2019-06-14 16:08:44 +08:00
|
|
|
new SettingsTextBox
|
|
|
|
{
|
|
|
|
LabelText = "Name",
|
|
|
|
Width = 0.33f,
|
2019-06-18 16:59:33 +08:00
|
|
|
Bindable = Model.Name
|
2019-06-14 16:08:44 +08:00
|
|
|
},
|
|
|
|
new SettingsTextBox
|
|
|
|
{
|
|
|
|
LabelText = "Description",
|
|
|
|
Width = 0.33f,
|
2019-06-18 16:59:33 +08:00
|
|
|
Bindable = Model.Description
|
2019-06-14 16:08:44 +08:00
|
|
|
},
|
|
|
|
new DateTextBox
|
2018-10-14 00:03:04 +08:00
|
|
|
{
|
2019-06-14 16:08:44 +08:00
|
|
|
LabelText = "Start Time",
|
|
|
|
Width = 0.33f,
|
2019-06-18 16:59:33 +08:00
|
|
|
Bindable = Model.StartDate
|
2019-06-14 16:08:44 +08:00
|
|
|
},
|
|
|
|
new SettingsSlider<int>
|
|
|
|
{
|
|
|
|
LabelText = "Best of",
|
|
|
|
Width = 0.33f,
|
2019-06-18 16:59:33 +08:00
|
|
|
Bindable = Model.BestOf
|
2018-10-14 00:03:04 +08:00
|
|
|
},
|
2019-06-18 15:10:23 +08:00
|
|
|
new SettingsButton
|
|
|
|
{
|
|
|
|
Width = 0.2f,
|
|
|
|
Margin = new MarginPadding(10),
|
|
|
|
Text = "Add beatmap",
|
|
|
|
Action = () => beatmapEditor.CreateNew()
|
|
|
|
},
|
|
|
|
beatmapEditor
|
2018-10-13 06:10:13 +08:00
|
|
|
}
|
2019-06-14 16:08:44 +08:00
|
|
|
},
|
|
|
|
new DangerousSettingsButton
|
|
|
|
{
|
|
|
|
Anchor = Anchor.CentreRight,
|
|
|
|
Origin = Anchor.CentreRight,
|
|
|
|
RelativeSizeAxes = Axes.None,
|
|
|
|
Width = 150,
|
2019-06-18 14:53:03 +08:00
|
|
|
Text = "Delete Round",
|
2019-06-14 16:08:44 +08:00
|
|
|
Action = () =>
|
|
|
|
{
|
|
|
|
Expire();
|
2019-06-18 16:59:33 +08:00
|
|
|
ladderInfo.Rounds.Remove(Model);
|
2019-06-14 16:08:44 +08:00
|
|
|
},
|
2018-10-13 06:10:13 +08:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
RelativeSizeAxes = Axes.X;
|
2018-11-17 11:04:19 +08:00
|
|
|
AutoSizeAxes = Axes.Y;
|
|
|
|
}
|
2019-06-18 15:10:23 +08:00
|
|
|
|
|
|
|
public class RoundBeatmapEditor : CompositeDrawable
|
|
|
|
{
|
|
|
|
private readonly TournamentRound round;
|
|
|
|
private readonly FillFlowContainer flow;
|
|
|
|
|
|
|
|
public RoundBeatmapEditor(TournamentRound round)
|
|
|
|
{
|
|
|
|
this.round = round;
|
|
|
|
|
|
|
|
RelativeSizeAxes = Axes.X;
|
|
|
|
AutoSizeAxes = Axes.Y;
|
|
|
|
|
|
|
|
InternalChild = flow = new FillFlowContainer
|
|
|
|
{
|
|
|
|
RelativeSizeAxes = Axes.X,
|
|
|
|
AutoSizeAxes = Axes.Y,
|
|
|
|
Direction = FillDirection.Vertical,
|
|
|
|
ChildrenEnumerable = round.Beatmaps.Select(p => new RoundBeatmapRow(round, p))
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
public void CreateNew()
|
|
|
|
{
|
|
|
|
var user = new RoundBeatmap();
|
|
|
|
round.Beatmaps.Add(user);
|
|
|
|
flow.Add(new RoundBeatmapRow(round, user));
|
|
|
|
}
|
|
|
|
|
|
|
|
public class RoundBeatmapRow : CompositeDrawable
|
|
|
|
{
|
2019-06-18 16:59:33 +08:00
|
|
|
public RoundBeatmap Model { get; }
|
2019-06-18 15:10:23 +08:00
|
|
|
|
|
|
|
[Resolved]
|
|
|
|
protected IAPIProvider API { get; private set; }
|
|
|
|
|
|
|
|
private readonly Bindable<string> beatmapId = new Bindable<string>();
|
|
|
|
|
|
|
|
private readonly Bindable<string> mods = new Bindable<string>();
|
|
|
|
|
|
|
|
private readonly Container drawableContainer;
|
|
|
|
|
|
|
|
public RoundBeatmapRow(TournamentRound team, RoundBeatmap beatmap)
|
|
|
|
{
|
2019-06-18 16:59:33 +08:00
|
|
|
Model = beatmap;
|
2019-06-18 15:10:23 +08:00
|
|
|
|
|
|
|
Margin = new MarginPadding(10);
|
|
|
|
|
|
|
|
RelativeSizeAxes = Axes.X;
|
|
|
|
AutoSizeAxes = Axes.Y;
|
|
|
|
|
|
|
|
Masking = true;
|
|
|
|
CornerRadius = 5;
|
|
|
|
|
|
|
|
InternalChildren = new Drawable[]
|
|
|
|
{
|
|
|
|
new Box
|
|
|
|
{
|
|
|
|
Colour = OsuColour.Gray(0.2f),
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
|
|
|
},
|
|
|
|
new FillFlowContainer
|
|
|
|
{
|
|
|
|
Margin = new MarginPadding(5),
|
|
|
|
Padding = new MarginPadding { Right = 160 },
|
|
|
|
Spacing = new Vector2(5),
|
|
|
|
Direction = FillDirection.Horizontal,
|
|
|
|
AutoSizeAxes = Axes.Both,
|
|
|
|
Children = new Drawable[]
|
|
|
|
{
|
2019-06-21 21:04:34 +08:00
|
|
|
new SettingsNumberBox
|
2019-06-18 15:10:23 +08:00
|
|
|
{
|
|
|
|
LabelText = "Beatmap ID",
|
|
|
|
RelativeSizeAxes = Axes.None,
|
|
|
|
Width = 200,
|
|
|
|
Bindable = beatmapId,
|
|
|
|
},
|
|
|
|
new SettingsTextBox
|
|
|
|
{
|
|
|
|
LabelText = "Mods",
|
|
|
|
RelativeSizeAxes = Axes.None,
|
|
|
|
Width = 200,
|
|
|
|
Bindable = mods,
|
|
|
|
},
|
|
|
|
drawableContainer = new Container
|
|
|
|
{
|
|
|
|
Size = new Vector2(100, 70),
|
|
|
|
},
|
|
|
|
}
|
|
|
|
},
|
|
|
|
new DangerousSettingsButton
|
|
|
|
{
|
|
|
|
Anchor = Anchor.CentreRight,
|
|
|
|
Origin = Anchor.CentreRight,
|
|
|
|
RelativeSizeAxes = Axes.None,
|
|
|
|
Width = 150,
|
|
|
|
Text = "Delete Beatmap",
|
|
|
|
Action = () =>
|
|
|
|
{
|
|
|
|
Expire();
|
|
|
|
team.Beatmaps.Remove(beatmap);
|
|
|
|
},
|
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
[BackgroundDependencyLoader]
|
|
|
|
private void load(RulesetStore rulesets)
|
|
|
|
{
|
2019-06-18 16:59:33 +08:00
|
|
|
beatmapId.Value = Model.ID.ToString();
|
2019-06-18 15:10:23 +08:00
|
|
|
beatmapId.BindValueChanged(idString =>
|
|
|
|
{
|
2019-11-12 18:22:35 +08:00
|
|
|
int.TryParse(idString.NewValue, out var parsed);
|
2019-06-18 15:10:23 +08:00
|
|
|
|
2019-06-18 16:59:33 +08:00
|
|
|
Model.ID = parsed;
|
2019-06-18 15:10:23 +08:00
|
|
|
|
|
|
|
if (idString.NewValue != idString.OldValue)
|
2019-06-18 16:59:33 +08:00
|
|
|
Model.BeatmapInfo = null;
|
2019-06-18 15:10:23 +08:00
|
|
|
|
2019-06-18 16:59:33 +08:00
|
|
|
if (Model.BeatmapInfo != null)
|
2019-06-18 15:10:23 +08:00
|
|
|
{
|
|
|
|
updatePanel();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2019-06-18 16:59:33 +08:00
|
|
|
var req = new GetBeatmapRequest(new BeatmapInfo { OnlineBeatmapID = Model.ID });
|
2019-06-18 15:10:23 +08:00
|
|
|
|
|
|
|
req.Success += res =>
|
|
|
|
{
|
2019-06-18 16:59:33 +08:00
|
|
|
Model.BeatmapInfo = res.ToBeatmap(rulesets);
|
2019-06-18 15:10:23 +08:00
|
|
|
updatePanel();
|
|
|
|
};
|
|
|
|
|
|
|
|
req.Failure += _ =>
|
|
|
|
{
|
2019-06-18 16:59:33 +08:00
|
|
|
Model.BeatmapInfo = null;
|
2019-06-18 15:10:23 +08:00
|
|
|
updatePanel();
|
|
|
|
};
|
|
|
|
|
|
|
|
API.Queue(req);
|
|
|
|
}, true);
|
|
|
|
|
2019-06-18 16:59:33 +08:00
|
|
|
mods.Value = Model.Mods;
|
|
|
|
mods.BindValueChanged(modString => Model.Mods = modString.NewValue);
|
2019-06-18 15:10:23 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
private void updatePanel()
|
|
|
|
{
|
|
|
|
drawableContainer.Clear();
|
|
|
|
|
2019-06-18 16:59:33 +08:00
|
|
|
if (Model.BeatmapInfo != null)
|
2019-11-11 19:53:22 +08:00
|
|
|
{
|
2019-06-18 16:59:33 +08:00
|
|
|
drawableContainer.Child = new TournamentBeatmapPanel(Model.BeatmapInfo, Model.Mods)
|
2019-06-18 15:10:23 +08:00
|
|
|
{
|
|
|
|
Anchor = Anchor.CentreLeft,
|
|
|
|
Origin = Anchor.CentreLeft,
|
|
|
|
Width = 300
|
|
|
|
};
|
2019-11-11 19:53:22 +08:00
|
|
|
}
|
2019-06-18 15:10:23 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2018-11-17 11:04:19 +08:00
|
|
|
}
|
2019-06-18 16:59:33 +08:00
|
|
|
|
|
|
|
protected override RoundRow CreateDrawable(TournamentRound model) => new RoundRow(model);
|
2018-11-17 11:04:19 +08:00
|
|
|
}
|
2018-10-13 06:10:13 +08:00
|
|
|
}
|