forked from mrdoob/three.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathUTF8Loader.js
328 lines (200 loc) · 6.5 KB
/
UTF8Loader.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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
/**
* Loader for UTF8 encoded models generated by:
* http://code.google.com/p/webgl-loader/
*
* Limitations:
* - number of vertices < 65536 (this is after optimizations in compressor, input OBJ may have even less)
* - models must have normals and texture coordinates
* - texture coordinates must be only from <0,1>
* - no materials support yet
* - models are scaled and offset (copy numbers from compressor and use them as parameters in UTF8Loader.load() )
*
* @author alteredq / http://alteredqualia.com/
* @author won3d / http://twitter.com/won3d
*/
THREE.UTF8Loader = function () {};
THREE.UTF8Loader.prototype.load = function ( url, callback, metadata ) {
var xhr = new XMLHttpRequest(),
callbackProgress = null,
scale = metadata.scale !== undefined ? metadata.scale : 1,
offsetX = metadata.offsetX !== undefined ? metadata.offsetX : 0,
offsetY = metadata.offsetY !== undefined ? metadata.offsetY : 0,
offsetZ = metadata.offsetZ !== undefined ? metadata.offsetZ : 0;
var length = 0;
xhr.onreadystatechange = function() {
if ( xhr.readyState == 4 ) {
if ( xhr.status == 200 || xhr.status == 0 ) {
THREE.UTF8Loader.prototype.createModel( xhr.responseText, callback, scale, offsetX, offsetY, offsetZ );
} else {
console.error( "THREE.UTF8Loader: Couldn't load [" + url + "] [" + xhr.status + "]" );
}
} else if ( xhr.readyState == 3 ) {
if ( callbackProgress ) {
if ( length == 0 ) {
length = xhr.getResponseHeader( "Content-Length" );
}
callbackProgress( { total: length, loaded: xhr.responseText.length } );
}
} else if ( xhr.readyState == 2 ) {
length = xhr.getResponseHeader( "Content-Length" );
}
}
xhr.open( "GET", url, true );
xhr.send( null );
};
// UTF-8 decoder from webgl-loader
// http://code.google.com/p/webgl-loader/
// Copyright 2011 Google Inc. All Rights Reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License"); you
// may not use this file except in compliance with the License. You
// may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
// implied. See the License for the specific language governing
// permissions and limitations under the License.
THREE.UTF8Loader.prototype.decompressMesh = function ( str ) {
var num_verts = str.charCodeAt( 0 );
if ( num_verts >= 0xE000 ) {
num_verts -= 0x0800;
}
num_verts ++;
var attribs_out = new Float32Array( 8 * num_verts );
var offset = 1;
for ( var i = 0; i < 8; i ++ ) {
var prev_attrib = 0;
for ( var j = 0; j < num_verts; ++ j ) {
var code = str.charCodeAt( j + offset );
prev_attrib += ( code >> 1 ) ^ ( - ( code & 1 ) );
attribs_out[ 8 * j + i ] = prev_attrib;
}
offset += num_verts;
}
var num_indices = str.length - offset;
var indices_out = new Uint16Array( num_indices );
var index_high_water_mark = 0;
for ( var i = 0; i < num_indices; i ++ ) {
var code = str.charCodeAt( i + offset );
indices_out[ i ] = index_high_water_mark - code;
if ( code == 0 ) {
index_high_water_mark ++;
}
}
return [ attribs_out, indices_out ];
};
THREE.UTF8Loader.prototype.createModel = function ( data, callback, scale, offsetX, offsetY, offsetZ ) {
var Model = function ( texture_path ) {
//var s = (new Date).getTime();
var scope = this;
scope.materials = [];
THREE.Geometry.call( this );
var buffers = THREE.UTF8Loader.prototype.decompressMesh( data );
var normals = [],
uvs = [];
init_vertices( buffers[ 0 ], 8, 0 );
init_uvs( buffers[ 0 ], 8, 3 );
init_normals( buffers[ 0 ], 8, 5 );
init_faces( buffers[ 1 ] );
this.computeCentroids();
this.computeFaceNormals();
//this.computeTangents();
//var e = (new Date).getTime();
//console.log( "utf8 data parse time: " + (e-s) + " ms" );
function init_vertices( data, stride, offset ) {
var i, x, y, z,
end = data.length;
for( i = offset; i < end; i += stride ) {
x = data[ i ];
y = data[ i + 1 ];
z = data[ i + 2 ];
// fix scale and offsets
x = ( x / 16383 ) * scale;
y = ( y / 16383 ) * scale;
z = ( z / 16383 ) * scale;
x += offsetX;
y += offsetY;
z += offsetZ;
vertex( scope, x, y, z );
}
};
function init_normals( data, stride, offset ) {
var i, x, y, z,
end = data.length;
for( i = offset; i < end; i += stride ) {
x = data[ i ];
y = data[ i + 1 ];
z = data[ i + 2 ];
// normalize to <-1,1>
x = ( x - 512 ) / 511;
y = ( y - 512 ) / 511;
z = ( z - 512 ) / 511;
normals.push( x, y, z );
}
};
function init_uvs( data, stride, offset ) {
var i, u, v,
end = data.length;
for( i = offset; i < end; i += stride ) {
u = data[ i ];
v = data[ i + 1 ];
// normalize to <0,1>
u /= 1023;
v /= 1023;
uvs.push( u, 1 - v );
}
};
function init_faces( indices ) {
var i,
a, b, c,
u1, v1, u2, v2, u3, v3,
m,
end = indices.length;
m = 0; // all faces defaulting to material 0
for( i = 0; i < end; i += 3 ) {
a = indices[ i ];
b = indices[ i + 1 ];
c = indices[ i + 2 ];
f3n( scope, normals, a, b, c, m, a, b, c );
u1 = uvs[ a * 2 ];
v1 = uvs[ a * 2 + 1 ];
u2 = uvs[ b * 2 ];
v2 = uvs[ b * 2 + 1 ];
u3 = uvs[ c * 2 ];
v3 = uvs[ c * 2 + 1 ];
uv3( scope.faceVertexUvs[ 0 ], u1, v1, u2, v2, u3, v3 );
}
}
};
function vertex ( scope, x, y, z ) {
scope.vertices.push( new THREE.Vector3( x, y, z ) );
};
function f3n ( scope, normals, a, b, c, mi, nai, nbi, nci ) {
var nax = normals[ nai * 3 ],
nay = normals[ nai * 3 + 1 ],
naz = normals[ nai * 3 + 2 ],
nbx = normals[ nbi * 3 ],
nby = normals[ nbi * 3 + 1 ],
nbz = normals[ nbi * 3 + 2 ],
ncx = normals[ nci * 3 ],
ncy = normals[ nci * 3 + 1 ],
ncz = normals[ nci * 3 + 2 ];
var na = new THREE.Vector3( nax, nay, naz ),
nb = new THREE.Vector3( nbx, nby, nbz ),
nc = new THREE.Vector3( ncx, ncy, ncz );
scope.faces.push( new THREE.Face3( a, b, c, [ na, nb, nc ], null, mi ) );
};
function uv3 ( where, u1, v1, u2, v2, u3, v3 ) {
var uv = [];
uv.push( new THREE.UV( u1, v1 ) );
uv.push( new THREE.UV( u2, v2 ) );
uv.push( new THREE.UV( u3, v3 ) );
where.push( uv );
};
Model.prototype = new THREE.Geometry();
Model.prototype.constructor = Model;
callback( new Model() );
};