All files / src/components/sprites/preview SpriteSliceCanvas.tsx

0% Statements 0/45
0% Branches 0/16
0% Functions 0/8
0% Lines 0/44

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129                                                                                                                                                                                                                                                                 
import React, { useCallback, useEffect, useState } from "react";
import { useAppSelector } from "store/hooks";
import { DMG_PALETTE } from "consts";
import { spriteSheetSelectors } from "store/features/entities/entitiesState";
import SpriteSliceCanvasWorker, {
  SpriteSliceCanvasResult,
} from "./SpriteSliceCanvas.worker";
import { assetURL } from "shared/lib/helpers/assets";
import { getSettings } from "store/features/settings/settingsState";
import { MonoOBJPalette, Palette } from "shared/lib/resources/types";
 
interface SpriteSliceCanvasProps {
  spriteSheetId: string;
  offsetX: number;
  offsetY: number;
  width: number;
  height: number;
  flipX?: boolean;
  flipY?: boolean;
  objPalette: MonoOBJPalette;
  palette?: Palette;
}
 
const worker = new SpriteSliceCanvasWorker();
 
export const SpriteSliceCanvas = ({
  spriteSheetId,
  offsetX,
  offsetY,
  width,
  height,
  flipX,
  flipY,
  objPalette,
  palette,
}: SpriteSliceCanvasProps) => {
  const [workerId] = useState(Math.random());
  const canvasRef = React.useRef<HTMLCanvasElement>(null);
  const hasSprite = useAppSelector(
    (state) => !!spriteSheetSelectors.selectById(state, spriteSheetId),
  );
  const spriteURL = useAppSelector((state) => {
    const sprite = spriteSheetSelectors.selectById(state, spriteSheetId);
    Iif (!sprite) {
      return undefined;
    }
    return assetURL("sprites", sprite);
  });
  const colorCorrection = useAppSelector(
    (state) => getSettings(state).colorCorrection,
  );
 
  const onWorkerComplete = useCallback(
    (e: MessageEvent<SpriteSliceCanvasResult>) => {
      Iif (e.data.id === workerId) {
        const offscreenCanvas = document.createElement("canvas");
        const offscreenCtx = offscreenCanvas.getContext("bitmaprenderer");
        Iif (!canvasRef.current || !hasSprite || !offscreenCtx) {
          return;
        }
        const ctx = canvasRef.current.getContext("2d");
        Iif (!ctx) {
          return;
        }
        offscreenCtx.transferFromImageBitmap(e.data.canvasImage);
        ctx.clearRect(0, 0, width, height);
        ctx.drawImage(offscreenCanvas, 0, 0);
      }
    },
    [height, hasSprite, width, workerId],
  );
 
  useEffect(() => {
    worker.addEventListener("message", onWorkerComplete);
    return () => {
      worker.removeEventListener("message", onWorkerComplete);
    };
  }, [width, height, onWorkerComplete]);
 
  useEffect(() => {
    Iif (!canvasRef.current || !hasSprite || !spriteURL) {
      return;
    }
    const ctx = canvasRef.current.getContext("2d");
    Iif (!ctx) {
      return;
    }
 
    worker.postMessage({
      id: workerId,
      src: spriteURL,
      offsetX,
      offsetY,
      width,
      height,
      flipX,
      flipY,
      objPalette: palette ? [0, 1, 3] : objPalette,
      palette: (palette || DMG_PALETTE).colors,
      colorCorrection,
    });
  }, [
    canvasRef,
    offsetX,
    offsetY,
    width,
    height,
    flipX,
    flipY,
    objPalette,
    palette,
    colorCorrection,
    workerId,
    hasSprite,
    spriteURL,
  ]);
 
  return (
    <canvas
      ref={canvasRef}
      width={width}
      height={height}
      style={{
        imageRendering: "pixelated",
      }}
    />
  );
};