mirror of
https://github.com/ppy/osu.git
synced 2025-02-24 19:42:57 +08:00
63 lines
2.7 KiB
C#
63 lines
2.7 KiB
C#
// 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 osu.Framework.Allocation;
|
|
using osu.Framework.Graphics;
|
|
using osu.Framework.Graphics.Containers;
|
|
using osu.Framework.Localisation;
|
|
using osu.Game.Graphics.UserInterfaceV2;
|
|
using osu.Game.Localisation;
|
|
using osu.Game.Online.API;
|
|
using osu.Game.Overlays;
|
|
using osuTK;
|
|
|
|
namespace osu.Game.Screens.Edit.Submission
|
|
{
|
|
[LocalisableDescription(typeof(BeatmapSubmissionStrings), nameof(BeatmapSubmissionStrings.FrequentlyAskedQuestions))]
|
|
public partial class ScreenFrequentlyAskedQuestions : WizardScreen
|
|
{
|
|
[BackgroundDependencyLoader]
|
|
private void load(OsuGame? game, IAPIProvider api)
|
|
{
|
|
Content.Add(new FillFlowContainer
|
|
{
|
|
RelativeSizeAxes = Axes.X,
|
|
AutoSizeAxes = Axes.Y,
|
|
Direction = FillDirection.Vertical,
|
|
Spacing = new Vector2(5),
|
|
Children = new Drawable[]
|
|
{
|
|
new FormButton
|
|
{
|
|
RelativeSizeAxes = Axes.X,
|
|
Caption = BeatmapSubmissionStrings.BeatmapRankingCriteriaDescription,
|
|
ButtonText = BeatmapSubmissionStrings.BeatmapRankingCriteria,
|
|
Action = () => game?.ShowWiki(@"Ranking_Criteria"),
|
|
},
|
|
new FormButton
|
|
{
|
|
RelativeSizeAxes = Axes.X,
|
|
Caption = BeatmapSubmissionStrings.SubmissionProcessDescription,
|
|
ButtonText = BeatmapSubmissionStrings.SubmissionProcess,
|
|
Action = () => game?.ShowWiki(@"Beatmap_ranking_procedure"),
|
|
},
|
|
new FormButton
|
|
{
|
|
RelativeSizeAxes = Axes.X,
|
|
Caption = BeatmapSubmissionStrings.MappingHelpForumDescription,
|
|
ButtonText = BeatmapSubmissionStrings.MappingHelpForum,
|
|
Action = () => game?.OpenUrlExternally($@"{api.Endpoints.WebsiteUrl}/community/forums/56"),
|
|
},
|
|
new FormButton
|
|
{
|
|
RelativeSizeAxes = Axes.X,
|
|
Caption = BeatmapSubmissionStrings.ModdingQueuesForumDescription,
|
|
ButtonText = BeatmapSubmissionStrings.ModdingQueuesForum,
|
|
Action = () => game?.OpenUrlExternally($@"{api.Endpoints.WebsiteUrl}/community/forums/60"),
|
|
},
|
|
},
|
|
});
|
|
}
|
|
}
|
|
}
|