UNPKG

@shopify/react-native-skia

Version:

High-performance React Native Graphics using Skia

353 lines (324 loc) 9.28 kB
import { enumKey, fitRects, processCircle, processColor, processPath, processRect, processRRect, } from "../../../dom/nodes"; import type { AtlasProps, CircleProps, DiffRectProps, GlyphsProps, ImageProps, ImageSVGProps, LineProps, OvalProps, ParagraphProps, PatchProps, PathProps, PictureProps, PointsProps, RectProps, RoundedRectProps, SkottieProps, TextBlobProps, TextPathProps, TextProps, VerticesProps, } from "../../../dom/types"; import { saturate } from "../../../renderer/processors"; import type { SkPoint, SkRSXform } from "../../../skia/types"; import { BlendMode, FillType, FilterMode, isCubicSampling, MipmapMode, PointMode, VertexMode, } from "../../../skia/types"; import type { DrawingContext } from "../DrawingContext"; export const drawLine = (ctx: DrawingContext, props: LineProps) => { "worklet"; const { p1, p2 } = props; ctx.canvas.drawLine(p1.x, p1.y, p2.x, p2.y, ctx.paint); }; export const drawOval = (ctx: DrawingContext, props: OvalProps) => { "worklet"; const rect = processRect(ctx.Skia, props); ctx.canvas.drawOval(rect, ctx.paint); }; export const drawImage = (ctx: DrawingContext, props: ImageProps) => { "worklet"; const { image, sampling } = props; if (image) { const fit = props.fit ?? "contain"; const rect = processRect(ctx.Skia, props); const { src, dst } = fitRects( fit, { x: 0, y: 0, width: image.width(), height: image.height(), }, rect ); if (sampling && isCubicSampling(sampling)) { ctx.canvas.drawImageRectCubic( image, src, dst, sampling.B, sampling.C, ctx.paint ); } else { ctx.canvas.drawImageRectOptions( image, src, dst, sampling?.filter ?? FilterMode.Linear, sampling?.mipmap ?? MipmapMode.None, ctx.paint ); } } }; export const drawPoints = (ctx: DrawingContext, props: PointsProps) => { "worklet"; const { points, mode } = props; ctx.canvas.drawPoints(PointMode[enumKey(mode)], points, ctx.paint); }; export const drawVertices = (ctx: DrawingContext, props: VerticesProps) => { "worklet"; const { mode, textures, colors, indices, blendMode } = props; const vertexMode = mode ? VertexMode[enumKey(mode)] : VertexMode.Triangles; const vertices = ctx.Skia.MakeVertices( vertexMode, props.vertices, textures, colors ? colors.map((c) => processColor(ctx.Skia, c)) : undefined, indices ); const defaultBlendMode = colors ? BlendMode.DstOver : BlendMode.SrcOver; const blend = blendMode ? BlendMode[enumKey(blendMode)] : defaultBlendMode; ctx.canvas.drawVertices(vertices, blend, ctx.paint); }; export const drawDiffRect = (ctx: DrawingContext, props: DiffRectProps) => { "worklet"; const { outer, inner } = props; ctx.canvas.drawDRRect(outer, inner, ctx.paint); }; export const drawTextPath = (ctx: DrawingContext, props: TextPathProps) => { "worklet"; const path = processPath(ctx.Skia, props.path); const { font, initialOffset } = props; if (font) { let { text } = props; const ids = font.getGlyphIDs(text); const widths = font.getGlyphWidths(ids); const rsx: SkRSXform[] = []; const meas = ctx.Skia.ContourMeasureIter(path, false, 1); let cont = meas.next(); let dist = initialOffset; for (let i = 0; i < text.length && cont; i++) { const width = widths[i]; dist += width / 2; if (dist > cont.length()) { // jump to next contour cont = meas.next(); if (!cont) { // We have come to the end of the path - terminate the string // right here. text = text.substring(0, i); break; } dist = width / 2; } // Gives us the (x, y) coordinates as well as the cos/sin of the tangent // line at that position. const [p, t] = cont.getPosTan(dist); const adjustedX = p.x - (width / 2) * t.x; const adjustedY = p.y - (width / 2) * t.y; rsx.push(ctx.Skia.RSXform(t.x, t.y, adjustedX, adjustedY)); dist += width / 2; } const derived = ctx.Skia.TextBlob.MakeFromRSXform(text, rsx, font); ctx.canvas.drawTextBlob(derived, 0, 0, ctx.paint); } }; export const drawText = (ctx: DrawingContext, props: TextProps) => { "worklet"; const { text, x, y, font } = props; if (font != null) { ctx.canvas.drawText(text, x, y, ctx.paint, font); } }; export const drawPatch = (ctx: DrawingContext, props: PatchProps) => { "worklet"; const { texture, blendMode, patch } = props; const defaultBlendMode = props.colors ? BlendMode.DstOver : BlendMode.SrcOver; const mode = blendMode ? BlendMode[enumKey(blendMode)] : defaultBlendMode; // Patch requires a path with the following constraints: // M tl // C c1 c2 br // C c1 c2 bl // C c1 c2 tl (the redundant point in the last command is removed) const points = [ patch[0].pos, patch[0].c2, patch[1].c1, patch[1].pos, patch[1].c2, patch[2].c1, patch[2].pos, patch[2].c2, patch[3].c1, patch[3].pos, patch[3].c2, patch[0].c1, ]; const colors = props.colors ? props.colors.map((c) => processColor(ctx.Skia, c)) : undefined; ctx.canvas.drawPatch(points, colors, texture, mode, ctx.paint); }; export const drawPath = (ctx: DrawingContext, props: PathProps) => { "worklet"; const { start: trimStart, end: trimEnd, fillType, stroke, ...pathProps } = props; const start = Math.fround(saturate(trimStart)); const end = Math.fround(saturate(trimEnd)); const hasStartOffset = start !== 0; const hasEndOffset = end !== 1; const hasStrokeOptions = stroke !== undefined; const hasFillType = !!fillType; let path = processPath(ctx.Skia, pathProps.path); // Apply fill type using PathBuilder if (hasFillType) { const builder = ctx.Skia.PathBuilder.MakeFromPath(path); builder.setFillType(FillType[enumKey(fillType)]); path = builder.build(); } // Apply stroke using static Path.Stroke if (hasStrokeOptions) { const stroked = ctx.Skia.Path.Stroke(path, stroke); if (stroked) { path = stroked; } } // Apply trim using static Path.Trim if (hasStartOffset || hasEndOffset) { const trimmed = ctx.Skia.Path.Trim(path, start, end, false); if (trimmed) { path = trimmed; } } ctx.canvas.drawPath(path, ctx.paint); }; export const drawRect = (ctx: DrawingContext, props: RectProps) => { "worklet"; const derived = processRect(ctx.Skia, props); ctx.canvas.drawRect(derived, ctx.paint); }; export const drawRRect = (ctx: DrawingContext, props: RoundedRectProps) => { "worklet"; const derived = processRRect(ctx.Skia, props); ctx.canvas.drawRRect(derived, ctx.paint); }; export const drawTextBlob = (ctx: DrawingContext, props: TextBlobProps) => { "worklet"; const { blob, x, y } = props; ctx.canvas.drawTextBlob(blob, x, y, ctx.paint); }; interface ProcessedGlyphs { glyphs: number[]; positions: SkPoint[]; } export const drawGlyphs = (ctx: DrawingContext, props: GlyphsProps) => { "worklet"; const derived = props.glyphs.reduce<ProcessedGlyphs>( (acc, glyph) => { const { id, pos } = glyph; acc.glyphs.push(id); acc.positions.push(pos); return acc; }, { glyphs: [], positions: [] } ); const { glyphs, positions } = derived; const { x, y, font } = props; if (font) { ctx.canvas.drawGlyphs(glyphs, positions, x, y, font, ctx.paint); } }; export const drawImageSVG = (ctx: DrawingContext, props: ImageSVGProps) => { "worklet"; const { canvas } = ctx; const { svg } = props; const { x, y, width, height } = props.rect ? props.rect : { x: props.x, y: props.y, width: props.width, height: props.height }; if (svg === null) { return; } canvas.save(); if (x && y) { canvas.translate(x, y); } canvas.drawSvg(svg, width, height); canvas.restore(); }; export const drawParagraph = (ctx: DrawingContext, props: ParagraphProps) => { "worklet"; const { paragraph, x, y, width } = props; if (paragraph) { paragraph.layout(width); paragraph.paint(ctx.canvas, x, y); } }; export const drawPicture = (ctx: DrawingContext, props: PictureProps) => { "worklet"; const { picture } = props; ctx.canvas.drawPicture(picture); }; export const drawAtlas = (ctx: DrawingContext, props: AtlasProps) => { "worklet"; const { image, sprites, transforms, colors, colorBlendMode, sampling } = props; const blend = colorBlendMode ? BlendMode[enumKey(colorBlendMode)] : undefined; if (image) { ctx.canvas.drawAtlas( image, sprites, transforms, ctx.paint, blend, colors, sampling ); } }; export const drawCircle = (ctx: DrawingContext, props: CircleProps) => { "worklet"; const { c } = processCircle(props); const { r } = props; ctx.canvas.drawCircle(c.x, c.y, r, ctx.paint); }; export const drawSkottie = (ctx: DrawingContext, props: SkottieProps) => { "worklet"; const { animation, frame } = props; if (animation) { props.animation.seekFrame(frame); props.animation.render(ctx.canvas); } };