Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
ppy
GitHub Repository: ppy/osu
Path: blob/master/osu.Game/Screens/Edit/Submission/ScreenFrequentlyAskedQuestions.cs
2272 views
// Copyright (c) ppy Pty Ltd <[email protected]>. 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"),
                    },
                },
            });
        }
    }
}