mirror of
https://github.com/billsonnn/nitro-renderer.git
synced 2024-11-30 03:00:51 +01:00
36b203f33a
* Changes * More changes * fix some var names * Fix door mask * Add tilemap back * Begin landscapes * Add vite * Add landscapes * Add texture caching * More changes * Fix flipped plane material cells * Changes * More landscape changes * Fix PlaneMaterialCell tiling * Add more caching * Destroy BaseRenderTexture * Performance improvements * More improvements * More improvements * Cache mask pixels * Fix settings Co-authored-by: dank074 <torresefrain10@gmail.com>
129 lines
3.8 KiB
TypeScript
129 lines
3.8 KiB
TypeScript
import { AbstractRenderer, Renderer, RenderTexture, Resource, Texture } from '@pixi/core';
|
|
import { DisplayObject } from '@pixi/display';
|
|
import { Extract } from '@pixi/extract';
|
|
import { Matrix, Rectangle } from '@pixi/math';
|
|
import { settings } from '@pixi/settings';
|
|
import { Sprite } from '@pixi/sprite';
|
|
import { PixiApplicationProxy } from './PixiApplicationProxy';
|
|
|
|
export class TextureUtils
|
|
{
|
|
public static generateTexture(displayObject: DisplayObject, region: Rectangle = null, scaleMode: number = null, resolution: number = 1): RenderTexture
|
|
{
|
|
if(!displayObject) return null;
|
|
|
|
if(scaleMode === null) scaleMode = settings.SCALE_MODE;
|
|
|
|
return this.getRenderer().generateTexture(displayObject, {
|
|
scaleMode,
|
|
resolution,
|
|
region
|
|
});
|
|
}
|
|
|
|
public static generateTextureFromImage(image: HTMLImageElement): Texture<Resource>
|
|
{
|
|
if(!image) return null;
|
|
|
|
return Texture.from(image);
|
|
}
|
|
|
|
public static generateImage(target: DisplayObject | RenderTexture): HTMLImageElement
|
|
{
|
|
if(!target) return null;
|
|
|
|
return this.getExtractor().image(target);
|
|
}
|
|
|
|
public static generateImageUrl(target: DisplayObject | RenderTexture): string
|
|
{
|
|
if(!target) return null;
|
|
|
|
return this.getExtractor().base64(target);
|
|
}
|
|
|
|
public static generateCanvas(target: DisplayObject | RenderTexture): HTMLCanvasElement
|
|
{
|
|
if(!target) return null;
|
|
|
|
return this.getExtractor().canvas(target);
|
|
}
|
|
|
|
public static clearRenderTexture(renderTexture: RenderTexture): RenderTexture
|
|
{
|
|
if(!renderTexture) return null;
|
|
|
|
return this.writeToRenderTexture(new Sprite(Texture.EMPTY), renderTexture);
|
|
}
|
|
|
|
public static createRenderTexture(width: number, height: number): RenderTexture
|
|
{
|
|
if((width < 0) || (height < 0)) return null;
|
|
|
|
return RenderTexture.create({
|
|
width,
|
|
height
|
|
});
|
|
}
|
|
|
|
public static createAndFillRenderTexture(width: number, height: number, color: number = 16777215): RenderTexture
|
|
{
|
|
if((width < 0) || (height < 0)) return null;
|
|
|
|
const renderTexture = this.createRenderTexture(width, height);
|
|
|
|
return this.clearAndFillRenderTexture(renderTexture, color);
|
|
}
|
|
|
|
public static createAndWriteRenderTexture(width: number, height: number, displayObject: DisplayObject, transform: Matrix = null): RenderTexture
|
|
{
|
|
if((width < 0) || (height < 0)) return null;
|
|
|
|
const renderTexture = this.createRenderTexture(width, height);
|
|
|
|
return this.writeToRenderTexture(displayObject, renderTexture, true, transform);
|
|
}
|
|
|
|
public static clearAndFillRenderTexture(renderTexture: RenderTexture, color: number = 16777215): RenderTexture
|
|
{
|
|
if(!renderTexture) return null;
|
|
|
|
const sprite = new Sprite(Texture.WHITE);
|
|
|
|
sprite.tint = color;
|
|
|
|
sprite.width = renderTexture.width;
|
|
sprite.height = renderTexture.height;
|
|
|
|
return this.writeToRenderTexture(sprite, renderTexture);
|
|
}
|
|
|
|
public static writeToRenderTexture(displayObject: DisplayObject, renderTexture: RenderTexture, clear: boolean = true, transform: Matrix = null): RenderTexture
|
|
{
|
|
if(!displayObject || !renderTexture) return null;
|
|
|
|
this.getRenderer().render(displayObject, {
|
|
renderTexture,
|
|
clear,
|
|
transform
|
|
});
|
|
|
|
return renderTexture;
|
|
}
|
|
|
|
public static getPixels(displayObject: DisplayObject | RenderTexture, frame: Rectangle = null): Uint8Array
|
|
{
|
|
return this.getExtractor().pixels(displayObject);
|
|
}
|
|
|
|
public static getRenderer(): Renderer | AbstractRenderer
|
|
{
|
|
return PixiApplicationProxy.instance.renderer;
|
|
}
|
|
|
|
public static getExtractor(): Extract
|
|
{
|
|
return (this.getRenderer().plugins.extract as Extract);
|
|
}
|
|
}
|