-
-
Notifications
You must be signed in to change notification settings - Fork 35.6k
/
Copy pathTextureNode.js
103 lines (60 loc) · 2.47 KB
/
TextureNode.js
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
/**
* @author sunag / http://www.sunag.com.br/
*/
import { InputNode } from '../core/InputNode.js';
import { UVNode } from '../accessors/UVNode.js';
import { ColorSpaceNode } from '../utils/ColorSpaceNode.js';
function TextureNode( value, uv, bias, project ) {
InputNode.call( this, 'v4', { shared: true } );
this.value = value;
this.uv = uv || new UVNode();
this.bias = bias;
this.project = project !== undefined ? project : false;
}
TextureNode.prototype = Object.create( InputNode.prototype );
TextureNode.prototype.constructor = TextureNode;
TextureNode.prototype.nodeType = "Texture";
TextureNode.prototype.getTexture = function ( builder, output ) {
return InputNode.prototype.generate.call( this, builder, output, this.value.uuid, 't' );
};
TextureNode.prototype.generate = function ( builder, output ) {
if ( output === 'sampler2D' ) {
return this.getTexture( builder, output );
}
var tex = this.getTexture( builder, output ),
uv = this.uv.build( builder, this.project ? 'v4' : 'v2' ),
bias = this.bias ? this.bias.build( builder, 'f' ) : undefined;
if ( bias == undefined && builder.context.bias ) {
bias = new builder.context.bias( this ).build( builder, 'f' );
}
var method, code;
if ( this.project ) method = 'texture2DProj';
else method = bias ? 'tex2DBias' : 'tex2D';
if ( bias ) code = method + '( ' + tex + ', ' + uv + ', ' + bias + ' )';
else code = method + '( ' + tex + ', ' + uv + ' )';
// add this context to replace ColorSpaceNode.input to code
builder.addContext( { input: code, encoding: builder.getTextureEncodingFromMap( this.value ), include: builder.isShader( 'vertex' ) } );
this.colorSpace = this.colorSpace || new ColorSpaceNode( this );
code = this.colorSpace.build( builder, this.type );
builder.removeContext();
return builder.format( code, this.type, output );
};
TextureNode.prototype.copy = function ( source ) {
InputNode.prototype.copy.call( this, source );
if ( source.value ) this.value = source.value;
this.uv = source.uv;
if ( source.bias ) this.bias = source.bias;
if ( source.project !== undefined ) this.project = source.project;
};
TextureNode.prototype.toJSON = function ( meta ) {
var data = this.getJSONNode( meta );
if ( ! data ) {
data = this.createJSONNode( meta );
if ( this.value ) data.value = this.value.uuid;
data.uv = this.uv.toJSON( meta ).uuid;
data.project = this.project;
if ( this.bias ) data.bias = this.bias.toJSON( meta ).uuid;
}
return data;
};
export { TextureNode };