锦水大屏
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

58 lines
1.7 KiB

import Node from '../core/Node.js';
import FloatNode from '../inputs/FloatNode.js';
import UVNode from '../accessors/UVNode.js';
import MathNode from '../math/MathNode.js';
import OperatorNode from '../math/OperatorNode.js';
import SplitNode from '../utils/SplitNode.js';
import JoinNode from '../utils/JoinNode.js';
class SpriteSheetUVNode extends Node {
constructor( countNode, uvNode = new UVNode(), frameNode = new FloatNode( 0 ).setConst( true ) ) {
super( 'vec2' );
this.countNode = countNode;
this.uvNode = uvNode;
this.frameNode = frameNode;
}
generate( builder ) {
const count = this.countNode;
const uv = this.uvNode;
const frame = this.frameNode;
const one = new FloatNode( 1 ).setConst( true );
const width = new SplitNode( count, 'x' );
const height = new SplitNode( count, 'y' );
const total = new OperatorNode( '*', width, height );
const roundFrame = new MathNode( MathNode.FLOOR, new MathNode( MathNode.MOD, frame, total ) );
const frameNum = new OperatorNode( '+', roundFrame, one );
const cell = new MathNode( MathNode.MOD, roundFrame, width );
const row = new MathNode( MathNode.CEIL, new OperatorNode( '/', frameNum, width ) );
const rowInv = new OperatorNode( '-', height, row );
const scale = new OperatorNode( '/', one, count );
const uvFrameOffset = new JoinNode( [
new OperatorNode( '*', cell, new SplitNode( scale, 'x' ) ),
new OperatorNode( '*', rowInv, new SplitNode( scale, 'y' ) )
] );
const uvScale = new OperatorNode( '*', uv, scale );
const uvFrame = new OperatorNode( '+', uvScale, uvFrameOffset );
return uvFrame.build( builder, this.getNodeType( builder ) );
}
}
export default SpriteSheetUVNode;