2021-07-26 19:18:33 +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-07-26 22:07:35 +08:00
|
|
|
using Markdig.Syntax;
|
2021-07-26 19:18:33 +08:00
|
|
|
using osu.Framework.Graphics.Containers.Markdown;
|
|
|
|
using osu.Game.Graphics.Containers.Markdown;
|
|
|
|
|
|
|
|
namespace osu.Game.Overlays.Comments
|
|
|
|
{
|
|
|
|
public class CommentMarkdownContainer : OsuMarkdownContainer
|
|
|
|
{
|
2022-09-10 07:55:20 +08:00
|
|
|
protected override bool Autolinks => true;
|
|
|
|
|
2021-07-26 22:07:35 +08:00
|
|
|
protected override MarkdownHeading CreateHeading(HeadingBlock headingBlock) => new CommentMarkdownHeading(headingBlock);
|
|
|
|
|
|
|
|
private class CommentMarkdownHeading : OsuMarkdownHeading
|
|
|
|
{
|
|
|
|
public CommentMarkdownHeading(HeadingBlock headingBlock)
|
|
|
|
: base(headingBlock)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
protected override float GetFontSizeByLevel(int level)
|
|
|
|
{
|
2021-10-27 12:04:41 +08:00
|
|
|
float defaultFontSize = base.GetFontSizeByLevel(6);
|
2021-07-26 22:07:35 +08:00
|
|
|
|
|
|
|
switch (level)
|
|
|
|
{
|
|
|
|
case 1:
|
|
|
|
return 1.2f * defaultFontSize;
|
|
|
|
|
|
|
|
case 2:
|
|
|
|
return 1.1f * defaultFontSize;
|
|
|
|
|
|
|
|
default:
|
|
|
|
return defaultFontSize;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2021-07-26 19:18:33 +08:00
|
|
|
}
|
|
|
|
}
|