1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 05:27:23 +08:00
osu-lazer/osu.Game/Overlays/Wiki/WikiMainPage.cs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

107 lines
3.3 KiB
C#
Raw Normal View History

2021-05-21 11:04:45 +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.
2022-06-17 15:37:17 +08:00
#nullable disable
2021-05-23 18:56:27 +08:00
using System.Collections.Generic;
2021-05-27 18:12:15 +08:00
using System.Diagnostics;
2021-05-23 18:56:27 +08:00
using System.Linq;
2021-05-21 11:04:45 +08:00
using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers;
2021-05-21 11:04:45 +08:00
using HtmlAgilityPack;
using osu.Framework.Allocation;
using osu.Game.Graphics;
using osu.Game.Graphics.Containers;
2021-05-21 11:04:45 +08:00
namespace osu.Game.Overlays.Wiki
{
public partial class WikiMainPage : FillFlowContainer
{
2021-05-21 11:04:45 +08:00
public string Markdown;
2021-05-21 11:04:45 +08:00
public WikiMainPage()
{
RelativeSizeAxes = Axes.X;
AutoSizeAxes = Axes.Y;
}
2021-05-21 11:04:45 +08:00
[BackgroundDependencyLoader]
private void load()
{
var html = new HtmlDocument();
html.LoadHtml(Markdown);
2021-05-23 20:07:22 +08:00
var panels = createPanels(html).ToArray();
2021-05-21 11:04:45 +08:00
Children = new Drawable[]
{
2021-05-23 19:52:20 +08:00
createBlurb(html),
new GridContainer
{
RelativeSizeAxes = Axes.X,
AutoSizeAxes = Axes.Y,
2021-05-23 20:07:22 +08:00
RowDimensions = Enumerable.Repeat(new Dimension(GridSizeMode.AutoSize), panels.Length).ToArray(),
Content = panels,
2021-05-23 19:52:20 +08:00
},
2021-05-21 11:04:45 +08:00
};
}
private Container createBlurb(HtmlDocument html)
{
2021-05-28 01:50:59 +08:00
var blurbNode = html.DocumentNode.SelectSingleNode("//div[contains(@class, 'wiki-main-page__blurb')]");
2021-05-21 11:04:45 +08:00
return new Container
{
RelativeSizeAxes = Axes.X,
AutoSizeAxes = Axes.Y,
Padding = new MarginPadding
{
Vertical = 30,
},
Child = new OsuTextFlowContainer(t => t.Font = OsuFont.GetFont(Typeface.Inter, size: 12, weight: FontWeight.Light))
2021-05-21 11:04:45 +08:00
{
RelativeSizeAxes = Axes.X,
AutoSizeAxes = Axes.Y,
2021-05-21 11:04:45 +08:00
Text = blurbNode.InnerText,
TextAnchor = Anchor.TopCentre,
2021-05-21 11:04:45 +08:00
}
};
}
2021-05-23 18:49:26 +08:00
private IEnumerable<Drawable[]> createPanels(HtmlDocument html)
2021-05-23 18:49:26 +08:00
{
var panelsNode = html.DocumentNode.SelectNodes("//div[contains(@class, 'wiki-main-page-panel')]").ToArray();
2021-05-23 18:49:26 +08:00
2021-05-27 18:12:15 +08:00
Debug.Assert(panelsNode.Length > 1);
int i = 0;
2021-05-27 14:34:55 +08:00
while (i < panelsNode.Length)
2021-05-23 18:49:26 +08:00
{
bool isFullWidth = panelsNode[i].HasClass("wiki-main-page-panel--full");
2021-05-23 18:49:26 +08:00
if (isFullWidth)
2021-05-23 18:49:26 +08:00
{
yield return new Drawable[]
{
2021-05-27 14:34:55 +08:00
new WikiPanelContainer(panelsNode[i++].InnerText, true)
{
2021-05-27 14:24:06 +08:00
// This is required to fill up the space of "null" drawable below.
Width = 2,
},
null,
};
}
2021-05-27 14:34:55 +08:00
else
{
yield return new Drawable[]
{
2021-05-27 14:34:55 +08:00
new WikiPanelContainer(panelsNode[i++].InnerText),
2021-05-28 01:55:14 +08:00
i < panelsNode.Length ? new WikiPanelContainer(panelsNode[i++].InnerText) : null,
};
}
2021-05-23 18:49:26 +08:00
}
}
2021-05-21 11:04:45 +08:00
}
}