3D-Demo/jsm/nodes/utils/SpriteSheetUVNode.js

59 lines
1.6 KiB
JavaScript
Raw Permalink Normal View History

2022-10-14 16:50:42 +08:00
import Node from '../core/Node.js';
import ConstNode from '../core/ConstNode.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 ConstNode( 0 ) ) {
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 ConstNode( 1 );
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;