import { logger } from '@motajs/common'; import { IRect, ITexture, ITextureAnimater, ITextureRenderable, ITextureSplitter, SizedCanvasImageSource } from './types'; export class Texture implements ITexture { source: SizedCanvasImageSource; animater: ITextureAnimater | null = null; width: number; height: number; /** 裁剪矩形的左边框位置 */ private cl: number; /** 裁剪矩形的上边框位置 */ private ct: number; /** 裁剪矩形的右边框位置 */ private cr: number; /** 裁剪矩形的下边框位置 */ private cb: number; constructor(source: SizedCanvasImageSource) { this.source = source; this.width = source.width; this.height = source.height; this.cl = 0; this.ct = 0; this.cr = 0; this.cb = 0; } /** * 对纹理进行裁剪操作,不会改变图像源 * @param x 裁剪左上角横坐标 * @param y 裁剪左上角纵坐标 * @param w 裁剪宽度 * @param h 裁剪高度 */ clip(x: number, y: number, w: number, h: number) { const r = x + w; const b = y + h; if (x > this.width || y > this.height || r < 0 || b < 0) { logger.warn(69); return; } const left = Math.max(0, x); const top = Math.max(0, y); const right = Math.min(this.width, r); const bottom = Math.min(this.height, b); this.cl = left; this.ct = top; this.width = right - left; this.height = bottom - top; } async toBitmap(): Promise { if (this.source instanceof ImageBitmap) return; this.source = await createImageBitmap(this.source); } split(splitter: ITextureSplitter, data: U): Generator { return splitter.split(this, data); } animated(animater: ITextureAnimater, data: T): void { this.animater = animater; animater.create(this, data); } static(): ITextureRenderable { return { source: this.source, rect: { x: this.cl, y: this.ct, w: this.width, h: this.height } }; } clampRect(rect: Readonly): Readonly { const l = Math.max(this.cl, this.cl + rect.x); const t = Math.max(this.ct, this.ct + rect.y); const r = Math.min(l + rect.w, this.cr); const b = Math.min(t + rect.h, this.cb); return { x: l, y: t, w: r - b, h: b - t }; } clipped(rect: Readonly): ITextureRenderable { return { source: this.source, rect: this.clampRect(rect) }; } dynamic(data: A): Generator | null { if (!this.animater) return null; return this.animater.open(data); } cycled(data: A): Generator | null { if (!this.animater) return null; return this.animater.cycled(data); } dispose(): void { if (this.source instanceof ImageBitmap) { this.source.close(); } this.animater = null; } /** * 对贴图的动画执行偏移效果。动画效果可以不来自传入的贴图对象, * 输出结果的图像源会是传入的贴图对象的图像源而非动画效果对应的图像源 * @param texture 贴图对象 * @param animate 动画效果 * @param ox 偏移横坐标 * @param oy 偏移纵坐标 */ static *translated( texture: ITexture, animate: Generator | null, ox: number, oy: number ): Generator | null { if (!animate) return null; while (true) { const next = animate.next(); if (next.done) break; const renderable = next.value; const { x, y, w, h } = renderable.rect; const translated: IRect = { x: x + ox, y: y + oy, w, h }; const res: ITextureRenderable = { source: texture.source, rect: texture.clampRect(translated) }; yield res; } } /** * 对贴图的动画重定位。最终输出的动画会以传入的 `fx` `fy` 为左上角坐标计算 * @param texture 贴图对象 * @param origin 动画效果来自的贴图对象 * @param animate 动画效果 * @param fx 左上角横坐标 * @param fy 左上角纵坐标 */ static *fixed( texture: ITexture, origin: ITexture, animate: Generator | null, fx: number, fy: number ): Generator | null { if (!animate) return null; const { x: ox, y: oy } = origin.static().rect; while (true) { const next = animate.next(); if (next.done) break; const renderable = next.value; const { x, y, w, h } = renderable.rect; const translated: IRect = { x: x - ox + fx, y: y - oy + fy, w, h }; const res: ITextureRenderable = { source: texture.source, rect: texture.clampRect(translated) }; yield res; } } }