382 строки
19 KiB
C#
382 строки
19 KiB
C#
using SkiaSharp;
|
||
using System.Diagnostics;
|
||
using Topten.RichTextKit;
|
||
|
||
namespace SandboxDriver
|
||
{
|
||
public class SandboxDriver
|
||
{
|
||
public SandboxDriver()
|
||
{
|
||
FontMapper.Default = new SandboxFontMapper();
|
||
}
|
||
|
||
public int ContentModeCount = 14;
|
||
public int ContentMode = 0;
|
||
public TextDirection BaseDirection = TextDirection.LTR;
|
||
public TextAlignment TextAlignment = TextAlignment.Auto;
|
||
public float Scale = 1.0f;
|
||
public bool UseMaxWidth = true;
|
||
public bool UseMaxHeight = false;
|
||
public bool ShowMeasuredSize = false;
|
||
|
||
TextBlock _textBlock = new TextBlock()
|
||
{
|
||
//MaxLines = 2
|
||
};
|
||
|
||
public void Render(SKCanvas canvas, float canvasWidth, float canvasHeight)
|
||
{
|
||
canvas.Clear(new SKColor(0xFFFFFFFF));
|
||
|
||
const float margin = 80;
|
||
|
||
|
||
float? height = (float)(canvasHeight - margin * 2);
|
||
float? width = (float)(canvasWidth - margin * 2);
|
||
//width = 25;
|
||
|
||
if (!UseMaxHeight)
|
||
height = null;
|
||
if (!UseMaxWidth)
|
||
width = null;
|
||
|
||
using (var gridlinePaint = new SKPaint() { Color = new SKColor(0xFFFF0000), StrokeWidth = 1 })
|
||
{
|
||
canvas.DrawLine(new SKPoint(margin, 0), new SKPoint(margin, (float)canvasHeight), gridlinePaint);
|
||
if (width.HasValue)
|
||
canvas.DrawLine(new SKPoint(margin + width.Value, 0), new SKPoint(margin + width.Value, (float)canvasHeight), gridlinePaint);
|
||
canvas.DrawLine(new SKPoint(0, margin), new SKPoint((float)canvasWidth, margin), gridlinePaint);
|
||
if (height.HasValue)
|
||
canvas.DrawLine(new SKPoint(0, margin + height.Value), new SKPoint((float)canvasWidth, margin + height.Value), gridlinePaint);
|
||
}
|
||
|
||
//string typefaceName = "Times New Roman";
|
||
string typefaceName = "Arial";
|
||
//string typefaceName = "Segoe UI";
|
||
//string typefaceName = "Segoe Script";
|
||
|
||
var styleNormal = new Style() { FontFamily = typefaceName, FontSize = 18 * Scale };
|
||
var stylePassword = styleNormal.Modify(replacementCharacter: '*');
|
||
var styleSmall = styleNormal.Modify(fontSize: 12 * Scale);
|
||
var styleScript = styleNormal.Modify(fontFamily: "Segoe Script");
|
||
var styleHeading = styleNormal.Modify(fontSize: 24 * Scale, fontWeight: 700);
|
||
var styleFixedPitch = styleNormal.Modify(fontFamily: "Courier New");
|
||
var styleLTR = styleNormal.Modify(textDirection: TextDirection.LTR);
|
||
var styleBold = styleNormal.Modify(fontWeight: 700);
|
||
var styleUnderline = styleNormal.Modify(underline: UnderlineStyle.Gapped, textColor: new SKColor(0xFFFF0000));
|
||
var styleStrike = styleNormal.Modify(strikeThrough: StrikeThroughStyle.Solid);
|
||
var styleSubScript = styleNormal.Modify(fontVariant: FontVariant.SubScript);
|
||
var styleSuperScript = styleNormal.Modify(fontVariant: FontVariant.SuperScript);
|
||
var styleCondensed = styleNormal.Modify(fontWidth: SKFontStyleWidth.Condensed);
|
||
var styleExpanded = styleNormal.Modify(fontWidth: SKFontStyleWidth.Expanded);
|
||
var styleItalic = styleNormal.Modify(fontItalic: true);
|
||
var styleBoldLarge = styleNormal.Modify(fontSize: 28 * Scale, fontWeight: 700);
|
||
var styleRed = styleNormal.Modify(textColor: new SKColor(0xFFFF0000));
|
||
var styleBlue = styleNormal.Modify(textColor: new SKColor(0xFF0000FF));
|
||
var styleFontAwesome = new Style() { FontFamily = "FontAwesome", FontSize = 24 * Scale };
|
||
var styleHalo = styleNormal.Modify(haloColor: SKColors.Gray, haloWidth: 5, haloBlur: 0);
|
||
|
||
|
||
_textBlock.Clear();
|
||
_textBlock.MaxWidth = width;
|
||
_textBlock.MaxHeight = height;
|
||
|
||
_textBlock.BaseDirection = BaseDirection;
|
||
_textBlock.Alignment = TextAlignment;
|
||
|
||
switch (ContentMode)
|
||
{
|
||
case 0:
|
||
_textBlock.AddText("Welcome to RichTextKit!\n", styleHeading);
|
||
_textBlock.AddText("\nRichTextKit is a rich text layout, rendering and measurement library for SkiaSharp.\n\nIt supports normal, ", styleNormal);
|
||
_textBlock.AddText("bold", styleBold);
|
||
_textBlock.AddText(", ", styleNormal);
|
||
_textBlock.AddText("italic", styleItalic);
|
||
_textBlock.AddText(", ", styleNormal);
|
||
_textBlock.AddText("underline", styleUnderline);
|
||
_textBlock.AddText(" (including ", styleNormal);
|
||
_textBlock.AddText("gaps over descenders", styleUnderline);
|
||
_textBlock.AddText("), ", styleNormal);
|
||
_textBlock.AddText("strikethrough", styleStrike);
|
||
_textBlock.AddText(", superscript (E=mc", styleNormal);
|
||
_textBlock.AddText("2", styleSuperScript);
|
||
_textBlock.AddText("), subscript (H", styleNormal);
|
||
_textBlock.AddText("2", styleSubScript);
|
||
_textBlock.AddText("O), ", styleNormal);
|
||
_textBlock.AddText("colored ", styleRed);
|
||
_textBlock.AddText("text, ", styleBlue);
|
||
_textBlock.AddText("condensed", styleCondensed);
|
||
_textBlock.AddText(" and ", styleNormal);
|
||
_textBlock.AddText("expanded", styleExpanded);
|
||
_textBlock.AddText(" and ", styleNormal);
|
||
_textBlock.AddText("mixed ", styleNormal);
|
||
_textBlock.AddText("sizes", styleSmall);
|
||
_textBlock.AddText(" and ", styleNormal);
|
||
_textBlock.AddText("fonts", styleScript);
|
||
_textBlock.AddText(".\n\n", styleNormal);
|
||
_textBlock.AddText("Font fallback means emojis work: 🙍♀️ 🌐 🍪 🍕 🚀 and ", styleNormal);
|
||
_textBlock.AddText("text shaping and bi-directional text support means complex scripts and languages like Arabic: مرحبا بالعالم, Japanese: ハローワールド, Chinese: 世界您好 and Hindi: हैलो वर्ल्ड are rendered correctly!\n\n", styleNormal);
|
||
_textBlock.AddText("RichTextKit also supports left/center/right text alignment, word wrapping, truncation with ellipsis place-holder, text measurement, hit testing, painting a selection range, caret position & shape helpers.", styleNormal);
|
||
_textBlock.AddText(".\n\n", styleNormal);
|
||
_textBlock.AddText("RichTextKit ", styleHalo);
|
||
styleHalo = styleHalo.Modify(haloColor: SKColors.Red, haloWidth: 2, haloBlur: 0);
|
||
_textBlock.AddText("also", styleHalo);
|
||
styleHalo = styleHalo.Modify(haloColor: SKColors.Green, haloWidth: 2, haloBlur: 1);
|
||
_textBlock.AddText(" supports ", styleHalo);
|
||
styleHalo = styleHalo.Modify(fontWeight: 700, haloColor: SKColors.Blue, haloWidth: 5, haloBlur: 5);
|
||
_textBlock.AddText("halo.", styleHalo);
|
||
break;
|
||
|
||
case 1:
|
||
_textBlock.AddText("Hello Wor", styleNormal);
|
||
_textBlock.AddText("ld", styleRed);
|
||
_textBlock.AddText(". This is normal 18px. These are emojis: 🌐 🍪 🍕 🚀 🏴☠️", styleNormal);
|
||
_textBlock.AddText("This is ", styleNormal);
|
||
_textBlock.AddText("bold 28px", styleBoldLarge);
|
||
_textBlock.AddText(". ", styleNormal);
|
||
_textBlock.AddText("This is italic", styleItalic);
|
||
_textBlock.AddText(". This is ", styleNormal);
|
||
_textBlock.AddText("red", styleRed);
|
||
_textBlock.AddText(". This is Arabic: (", styleNormal);
|
||
_textBlock.AddText("تسجّل ", styleNormal);
|
||
_textBlock.AddText("يتكلّم", styleNormal);
|
||
_textBlock.AddText("), Hindi: ", styleNormal);
|
||
_textBlock.AddText("हालाँकि प्रचलित रूप पूज", styleNormal);
|
||
_textBlock.AddText(", Han: ", styleNormal);
|
||
_textBlock.AddText("緳 踥踕", styleNormal);
|
||
break;
|
||
|
||
case 2:
|
||
_textBlock.AddText("Hello Wor", styleNormal);
|
||
_textBlock.AddText("ld", styleRed);
|
||
_textBlock.AddText(".\nThis is normal 18px.\nThese are emojis: 🌐 🍪 🍕 🚀\n", styleNormal);
|
||
_textBlock.AddText("This is ", styleNormal);
|
||
_textBlock.AddText("bold 28px", styleBoldLarge);
|
||
_textBlock.AddText(".\n", styleNormal);
|
||
_textBlock.AddText("This is italic", styleItalic);
|
||
_textBlock.AddText(".\nThis is ", styleNormal);
|
||
_textBlock.AddText("red", styleRed);
|
||
/*
|
||
tle.AddText(".\nThis is Arabic: (", styleNormal);
|
||
tle.AddText("تسجّل ", styleNormal);
|
||
tle.AddText("يتكلّم", styleNormal);
|
||
tle.AddText("), Hindi: ", styleNormal);
|
||
*/
|
||
_textBlock.AddText(".\nThis is Arabic: (تسجّل يتكلّم), Hindi: ", styleNormal);
|
||
_textBlock.AddText("हालाँकि प्रचलित रूप पूज", styleNormal);
|
||
_textBlock.AddText(", Han: ", styleNormal);
|
||
_textBlock.AddText("緳 踥踕", styleNormal);
|
||
break;
|
||
|
||
case 3:
|
||
_textBlock.AddText("Lorem ipsum dolor sit amet, consectetur adipiscing elit. Phasellus semper, sapien vitae placerat sollicitudin, lorem diam aliquet quam, id finibus nisi quam eget lorem.\nDonec facilisis sem nec rhoncus elementum. Cras laoreet porttitor malesuada.\n\nVestibulum sed lacinia diam. Mauris a mollis enim. Cras in rhoncus mauris, at vulputate nisl. Sed nec lobortis dolor, hendrerit posuere quam. Vivamus malesuada sit amet nunc ac cursus. Praesent volutpat euismod efficitur. Nam eu ante.", styleNormal);
|
||
break;
|
||
|
||
case 4:
|
||
//_textBlock.AddText("مرحبا بالعالم. هذا هو اختبار التفاف \nالخط للتأكد من أنه يعمل للغات من اليمين إلى اليسار.\n", styleNormal);
|
||
_textBlock.AddText("مرحبا بالعالم. هذا هو اختبار التفاف \n", styleNormal);
|
||
_textBlock.AddText("مرحبا بالعالم. هذا هو اختبار الت", styleNormal);
|
||
_textBlock.AddText("فاف \n", styleUnderline);
|
||
break;
|
||
|
||
case 5:
|
||
//_textBlock.AddText("مرحبا بالعالم. هذا هو اختبار التفاف الخط للتأكد من \u2066ACME Inc.\u2069 أنه يعمل للغات من اليمين إلى اليسار.", styleNormal);
|
||
_textBlock.AddText("مرحبا بالعالم. هذا هو اختبار التفاف الخط للتأكد من ", styleNormal);
|
||
_textBlock.AddText("ACME Inc.", styleLTR);
|
||
_textBlock.AddText(" أنه يعمل للغات من اليمين إلى اليسار.", styleNormal);
|
||
break;
|
||
|
||
case 6:
|
||
_textBlock.AddText("Subscript: H", styleNormal);
|
||
_textBlock.AddText("2", styleSubScript);
|
||
_textBlock.AddText("O Superscript: E=mc", styleNormal);
|
||
_textBlock.AddText("2", styleSuperScript);
|
||
_textBlock.AddText(" Key: C", styleNormal);
|
||
_textBlock.AddText("♯", styleSuperScript);
|
||
_textBlock.AddText(" B", styleNormal);
|
||
_textBlock.AddText("♭", styleSubScript);
|
||
break;
|
||
|
||
case 7:
|
||
_textBlock.AddText("The quick brown fox jumps over the lazy dog.", styleUnderline);
|
||
_textBlock.AddText(" ", styleNormal);
|
||
_textBlock.AddText("Strike Through", styleStrike);
|
||
_textBlock.AddText(" something ends in wooooooooq", styleNormal);
|
||
break;
|
||
|
||
case 8:
|
||
_textBlock.AddText("Apples and Bananas\r\n", styleNormal);
|
||
_textBlock.AddText("Pears\r\n", styleNormal);
|
||
_textBlock.AddText("Bananas\r\n", styleNormal);
|
||
break;
|
||
|
||
case 9:
|
||
_textBlock.AddText("Toggle Theme\r\n", styleNormal);
|
||
_textBlock.AddText("T", styleUnderline);
|
||
_textBlock.AddText("oggle Theme\r\n", styleNormal);
|
||
break;
|
||
|
||
case 10:
|
||
_textBlock.AddText("", styleNormal);
|
||
break;
|
||
|
||
case 11:
|
||
_textBlock.AddText("\uF06B", styleFontAwesome);
|
||
break;
|
||
|
||
case 12:
|
||
_textBlock.AddText(".|.|.|.|.|.|.|.|.|.|.|.|.|.|.|.|.|.|.|.|.|.|.|.|.|.|.|.|.|.|\n", styleFixedPitch);
|
||
_textBlock.AddText("♩♩♩♩♩♩♩♩♩♩♩\n", styleFixedPitch);
|
||
_textBlock.AddText("\n", styleFixedPitch);
|
||
_textBlock.AddText(" ♩__♩__♩. ♩. ♩. x4\n", styleFixedPitch);
|
||
_textBlock.AddText(" ♩__♩__♩. ♩. ♩. x4\n", styleFixedPitch);
|
||
_textBlock.AddText(" ♩ ♩ ♩. ♩ ♪ ♩ ♪ x4\n", styleFixedPitch);
|
||
_textBlock.AddText(" ♩ ♩ ♩ ♪ ♩ ♪ ♩ ♪ x8\n", styleFixedPitch);
|
||
_textBlock.AddText("\n", styleFixedPitch);
|
||
_textBlock.AddText(" 🌐 🍪 🍕 🚀 🏴☠️ xxx\n", styleFixedPitch);
|
||
_textBlock.AddText(" 🌐 🍪 🍕 🚀 xxx\n", styleFixedPitch);
|
||
_textBlock.AddText(" 🌐🍪🍕🚀 xxx\n", styleFixedPitch);
|
||
break;
|
||
|
||
case 13:
|
||
//_textBlock.AddText("Password \nAnother \n", stylePassword);
|
||
_textBlock.AddText("Hello World\u2029", styleNormal);
|
||
break;
|
||
}
|
||
|
||
var sw = new Stopwatch();
|
||
sw.Start();
|
||
_textBlock.Layout();
|
||
var elapsed = sw.ElapsedMilliseconds;
|
||
|
||
var options = new TextPaintOptions()
|
||
{
|
||
SelectionColor = new SKColor(0x60FF0000),
|
||
Hinting = Hinting,
|
||
Edging = Edging,
|
||
SubpixelPositioning = SubpixelPositioning,
|
||
};
|
||
|
||
HitTestResult? htr = null;
|
||
CaretInfo? ci = null;
|
||
if (_showHitTest)
|
||
{
|
||
htr = _textBlock.HitTest(_hitTestX - margin, _hitTestY - margin);
|
||
if (htr.Value.OverCodePointIndex >= 0)
|
||
{
|
||
options.Selection = new TextRange(
|
||
htr.Value.OverCodePointIndex,
|
||
_textBlock.CaretIndicies[_textBlock.LookupCaretIndex(htr.Value.OverCodePointIndex) + 1]
|
||
);
|
||
}
|
||
|
||
ci = _textBlock.GetCaretInfo(new CaretPosition(htr.Value.ClosestCodePointIndex));
|
||
}
|
||
|
||
if (ShowMeasuredSize)
|
||
{
|
||
using (var paint = new SKPaint()
|
||
{
|
||
Color = new SKColor(0x1000FF00),
|
||
IsStroke = false,
|
||
})
|
||
{
|
||
var rect = new SKRect(margin + _textBlock.MeasuredPadding.Left, margin, margin + _textBlock.MeasuredWidth + _textBlock.MeasuredPadding.Left, margin + _textBlock.MeasuredHeight);
|
||
canvas.DrawRect(rect, paint);
|
||
}
|
||
}
|
||
|
||
if (_textBlock.MeasuredOverhang.Left > 0)
|
||
{
|
||
using (var paint = new SKPaint() { Color = new SKColor(0xFF00fff0), StrokeWidth = 1 })
|
||
{
|
||
canvas.DrawLine(new SKPoint(margin - _textBlock.MeasuredOverhang.Left, 0), new SKPoint(margin - _textBlock.MeasuredOverhang.Left, (float)canvasHeight), paint);
|
||
}
|
||
}
|
||
|
||
if (_textBlock.MeasuredOverhang.Right > 0)
|
||
{
|
||
using (var paint = new SKPaint() { Color = new SKColor(0xFF00ff00), StrokeWidth = 1 })
|
||
{
|
||
float x;
|
||
if (_textBlock.MaxWidth.HasValue)
|
||
{
|
||
x = margin + _textBlock.MaxWidth.Value;
|
||
}
|
||
else
|
||
{
|
||
x = margin + _textBlock.MeasuredWidth;
|
||
}
|
||
x += _textBlock.MeasuredOverhang.Right;
|
||
canvas.DrawLine(new SKPoint(x, 0), new SKPoint(x, (float)canvasHeight), paint);
|
||
}
|
||
}
|
||
|
||
_textBlock.Paint(canvas, new SKPoint(margin, margin), options);
|
||
|
||
if (ci != null)
|
||
{
|
||
using (var paint = new SKPaint()
|
||
{
|
||
Color = new SKColor(0xFF000000),
|
||
IsStroke = true,
|
||
IsAntialias = true,
|
||
StrokeWidth = Scale,
|
||
})
|
||
{
|
||
var rect = ci.Value.CaretRectangle;
|
||
rect.Offset(margin, margin);
|
||
canvas.DrawLine(rect.Right, rect.Top, rect.Left, rect.Bottom, paint);
|
||
}
|
||
}
|
||
|
||
var state = $"Size: {width} x {height} Base Direction: {BaseDirection} Alignment: {TextAlignment} Content: {ContentMode} scale: {Scale} time: {elapsed} subpixel: {SubpixelPositioning} hinting: {Hinting} edging: {Edging}";
|
||
canvas.DrawText(state, margin, 20, new SKPaint()
|
||
{
|
||
Typeface = SKTypeface.FromFamilyName("Arial"),
|
||
TextSize = 12,
|
||
IsAntialias = true,
|
||
});
|
||
|
||
if (options.Selection.HasValue)
|
||
state = $"Selection: {options.Selection.Value.Start}-{options.Selection.Value.End} Closest: {(htr.HasValue ? htr.Value.ClosestCodePointIndex.ToString() : "-")}";
|
||
else
|
||
state = $"Selection: none";
|
||
canvas.DrawText(state, margin, 40, new SKPaint()
|
||
{
|
||
Typeface = SKTypeface.FromFamilyName("Arial"),
|
||
TextSize = 12,
|
||
IsAntialias = true,
|
||
});
|
||
|
||
state = $"Measured: {_textBlock.MeasuredWidth} x {_textBlock.MeasuredHeight} Lines: {_textBlock.Lines.Count} Truncated: {_textBlock.Truncated}";
|
||
canvas.DrawText(state, margin, 60, new SKPaint()
|
||
{
|
||
Typeface = SKTypeface.FromFamilyName("Arial"),
|
||
TextSize = 12,
|
||
IsAntialias = true,
|
||
});
|
||
}
|
||
|
||
float _hitTestX;
|
||
float _hitTestY;
|
||
bool _showHitTest;
|
||
|
||
public SKFontEdging Edging = SKFontEdging.Antialias;
|
||
public SKFontHinting Hinting = SKFontHinting.Normal;
|
||
public bool SubpixelPositioning = true;
|
||
|
||
public void HitTest(float x, float y)
|
||
{
|
||
_hitTestX = x;
|
||
_hitTestY = y;
|
||
_showHitTest = true;
|
||
}
|
||
|
||
}
|
||
}
|
||
|
||
|
||
|