forked from MyMiniFactory/stl2gltf
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
418 lines (369 loc) · 13.9 KB
/
index.html
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
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
</head>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-115758488-1"></script>
<script src="https://rawgit.com/Sphinxxxx/vanilla-picker/master/dist/vanilla-picker.min.js"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-115758488-1');
</script>
<script async type="text/javascript" src="./a.out.js"></script>
<style>
#dragAndDrop {
min-height: 200px;
white-space: pre;
border: 1px dashed black;
border-radius: 10px;
}
#info {
width:100%
display: -webkit-flex;
display: flex;
}
#picker {
cursor: pointer;
}
.picker_wrapper::before {
height: 0;
}
.picker_wrapper .picker_hue,
.picker_wrapper .picker_sl,
.picker_wrapper .picker_alpha,
.picker_wrapper .picker_sample {
outline: none;
box-shadow: 0 0 0 1px silver;
}
</style>
<script type="text/javascript">
`use strict`;
let GLOBAL = {
color : [150, 150, 150, 1],
get color_str() {
return `rgba(${this.color[0]},
${this.color[1]},
${this.color[2]},
${this.color[3]})`;
},
get color_0to1() {
return [this.color[0]/255,
this.color[1]/255,
this.color[2]/255,
this.color[3]
];
},
stl_name: undefined
};
window.onload = function () {
const init_color_str = GLOBAL.color_str;
var picker_div = document.getElementById("picker");
picker_div.style.backgroundColor = init_color_str;
picker_div.style.color = init_color_str;
var picker = new Picker(
{
parent: picker_div,
alpha: false,
color: init_color_str
}
);
picker_div.onclick = function() {
picker.show();
};
picker.onDone = function(color) {
GLOBAL.color = color.rgba;
picker_div.style.background = color.rgbaString;
picker_div.style.color = color.rgbaString;
download_glb();
};
}
function uploaded(file) {
if (file === undefined) { // via upload button
var uploadform = document.getElementById("fileuploadform");
file = uploadform.files[0];
// this helps to force trigger even if user upload the same file
// https://stackoverflow.com/a/12102992/5260518
this.value = null;
}
check_file(file, function(){check_file_success()});
function check_file_success() {
put_status("Converting by your browser");
var uploadform = document.getElementById("fileuploadform");
var filename = file.name;
var fr = new FileReader();
fr.readAsDataURL(file);
fr.onload = function (){
console.log(filename);
if (filename === GLOBAL.stl_name) { // user upload the same file as last one
console.log("same stl file");
download_glb();
return;
} else if (GLOBAL.stl_name !== undefined) { // not same file rm old file
console.log("new filename ", filename, "unlink", GLOBAL.stl_name);
Module['FS_unlink'](GLOBAL.stl_name);
}
var stl_name = filename;
var data = atob(fr.result.split(",")[1]); // base64 to Uint8 for emscripten
Module['FS_createDataFile'](".", stl_name, data, true, true);
Module.ccall("make_bin", // c function name
undefined, // return
["string"], // param
[stl_name]
);
// Using a file to output data from c++ to js
// because if I use a pointer to array, if memory grow in wasm,
// this array will be in a different place
// then the pointer will be pointing to a wrong memory address
let out_data = Module['FS_readFile']('data.txt', { encoding: 'utf8'});
out_data = out_data.split(" ");
GLOBAL.number_indices = parseInt(out_data[0]);
GLOBAL.number_vertices = parseInt(out_data[1]);
GLOBAL.indices_blength = parseInt(out_data[2]);
GLOBAL.vertices_blength = parseInt(out_data[3]);
GLOBAL.total_blength = parseInt(out_data[4]);
GLOBAL.minx = parseFloat(out_data[5]);
GLOBAL.miny = parseFloat(out_data[6]);
GLOBAL.minz = parseFloat(out_data[7]);
GLOBAL.maxx = parseFloat(out_data[8]);
GLOBAL.maxy = parseFloat(out_data[9]);
GLOBAL.maxz = parseFloat(out_data[10]);
GLOBAL.stl_name = stl_name;
download_glb();
}
}
}
function gltf_dict(
total_blength, indices_blength, vertices_boffset, vertices_blength,
number_indices, number_vertices, minx, miny, minz, maxx, maxy, maxz,
color_r, color_g, color_b
) {
return {
"scenes" : [
{
"nodes" : [ 0 ]
}
],
"nodes" : [
{
"mesh" : 0,
"rotation": [-0.70710678119, 0.0, 0.0, 0.70710678119]
}
],
"meshes" : [
{
"primitives" : [ {
"attributes" : {
"POSITION" : 1
},
"indices" : 0,
"material" : 0
} ]
}
],
"buffers" : [
{
"byteLength" : total_blength
}
],
"bufferViews" : [
{
"buffer" : 0,
"byteOffset" : 0,
"byteLength" : indices_blength,
"target" : 34963
},
{
"buffer" : 0,
"byteOffset" : vertices_boffset,
"byteLength" : vertices_blength,
"target" : 34962
}
],
"accessors" : [
{
"bufferView" : 0,
"byteOffset" : 0,
"componentType" : 5125,
"count" : number_indices,
"type" : "SCALAR",
"max" : [ number_vertices - 1 ],
"min" : [ 0 ]
},
{
"bufferView" : 1,
"byteOffset" : 0,
"componentType" : 5126,
"count" : number_vertices,
"type" : "VEC3",
"min" : [minx, miny, minz],
"max" : [maxx, maxy, maxz]
}
],
"asset" : {
"version" : "2.0",
"generator": "STL2GLTF"
},
"materials": [
{
"pbrMetallicRoughness": {
"baseColorFactor": [
color_r,
color_g,
color_b,
1
],
"metallicFactor": 1,
"roughnessFactor": 1
}
}
],
} // end of dict
}
function download_glb() {
if (GLOBAL.stl_name === undefined) {
put_status("Please upload a file");
return;
} else {
}
const stl_name = GLOBAL.stl_name;
const color = GLOBAL.color_0to1;
const total_blength = GLOBAL.total_blength;
const indices_blength = GLOBAL.indices_blength;
const vertices_boffset = GLOBAL.indices_blength;
const vertices_blength = GLOBAL.vertices_blength;
const number_indices = GLOBAL.number_indices;
const number_vertices = GLOBAL.number_vertices;
const minx = GLOBAL.minx;
const miny = GLOBAL.miny;
const minz = GLOBAL.minz;
const maxx = GLOBAL.maxx;
const maxy = GLOBAL.maxy;
const maxz = GLOBAL.maxz;
const gltf_json = JSON.stringify(
gltf_dict(
total_blength, indices_blength, vertices_boffset, vertices_blength,
number_indices, number_vertices, minx, miny, minz, maxx, maxy, maxz,
color[0], color[1], color[2]
)
);
const out_bin_bytelength = total_blength;
const header_bytelength = 20;
const scene_len = gltf_json.length;
const padded_scene_len = ((scene_len+ 3) & ~3);
const body_offset = padded_scene_len + header_bytelength;
const file_no_bin_len = body_offset + 8;
const file_len = file_no_bin_len + out_bin_bytelength;
let glb = new Uint8Array(file_no_bin_len);
glb[0] = 0x67; // g
glb[1] = 0x6c; // l
glb[2] = 0x54; // t
glb[3] = 0x46; // f
glb[4] = ( 2 ) & 0xFF;
glb[5] = ( 2>>8 ) & 0xFF;
glb[6] = ( 2>>16 ) & 0xFF;
glb[7] = ( 2>>24 ) & 0xFF;
glb[8] = ( file_len ) & 0xFF;
glb[9] = ( file_len>>8 ) & 0xFF;
glb[10] = ( file_len>>16 ) & 0xFF;
glb[11] = ( file_len>>24 ) & 0xFF;
glb[12] = ( padded_scene_len ) & 0xFF;
glb[13] = ( padded_scene_len>>8 ) & 0xFF;
glb[14] = ( padded_scene_len>>16 ) & 0xFF;
glb[15] = ( padded_scene_len>>24 ) & 0xFF;
// JSON
glb[16] = 0x4A; // J
glb[17] = 0x53; // S
glb[18] = 0x4F; // O
glb[19] = 0x4E; // N
for (let i=0;i<gltf_json.length;i++) {
glb[i+header_bytelength] = gltf_json.charCodeAt(i);
}
for (let i=0;i<padded_scene_len - scene_len;i++) {
glb[i+scene_len+header_bytelength] = 0x20;
}
glb[body_offset ] = ( out_bin_bytelength ) & 0xFF;
glb[body_offset+1] = ( out_bin_bytelength>>8 ) & 0xFF;
glb[body_offset+2] = ( out_bin_bytelength>>16 ) & 0xFF;
glb[body_offset+3] = ( out_bin_bytelength>>24 ) & 0xFF;
glb[body_offset+4] = 0x42; // B
glb[body_offset+5] = 0x49; // I
glb[body_offset+6] = 0x4E; // N
glb[body_offset+7] = 0x00; //
let out_bin = Module['FS_readFile']('out.bin');
let blob = new Blob([glb, out_bin], {type: 'application/sla'});
let url = window.URL.createObjectURL(blob);
var download_a = document.getElementById('download');
download_a.href = url;
const glb_name = stl_name.slice(0,stl_name.length-4) + ".glb";
download_a.download = glb_name;
var download_button = document.getElementById('download_button');
download_button.disabled = false;
download_button.innerHTML = "Click to Download " + glb_name;
download_button.click();
if (blob.size < 3145728) {
put_status("Success, you are now share it on facebook!")
} else {
put_status("Your stl file is too large, the GLB file is bigger than 3 Mb, cannot share on facebook.")
}
}
function check_file(file, success_cb) {
put_status("Checking file");
const filename = file.name;
const extension = filename.toLowerCase().slice(filename.lastIndexOf(".")+1, filename.length);
if (extension!=="stl") {
put_status("Please upload an stl file not "+ extension);
return;
}
success_cb();
}
function dodrop(event) {
var dt = event.dataTransfer;
var file = dt.files[0];
var filename = file.name;
put_status("Converting " + filename + " to GLB using WebAssembly.");
uploaded(file);
}
function put_status(text)
{
document.getElementById("status").textContent = text;
}
</script>
<body>
<h1>STL to GLB Converter</h1>
<div id="dragAndDrop"
ondragenter="event.stopPropagation(); event.preventDefault();"
ondragover="event.stopPropagation(); event.preventDefault();"
ondrop="event.stopPropagation(); event.preventDefault();
dodrop(event);">
<span>Drag and drop STL files here or <input type="file" onChange="uploaded()" id="fileuploadform"/></span>
<span></span>
<span>Click to change color --> <span id="picker">COLOR</span></span>
<span></span>
<span>Status: <span id="status">Waiting for upload</span>
</div>
<a id="download"><button id="download_button" disabled>Click to Download</button></a>
<div id="info">
<div>
<h3>Note</h3>
<ul>
<li>Browser Based (WebAssembly), No Backend/Server/Cloud, your file won't leave your browser</li>
<li>Facebook has a 3 Mb limit for GLB, make sure your stl is smaller than 8 Mb</li>
</ul>
</div>
<div>
<h3>Upcoming features</h3>
<ul>
<li><a href="https://github.com/sp4cerat/Fast-Quadric-Mesh-Simplification">WASM Mesh Simplification</a> if stl file is too big to share</li>
<li>Add vertex normal for better mobile support</li>
<li>Tell me on tiger AT myminifactory dotcom...</li>
<li>Done <strike>Support for ASCII</strike></li>
<li>Done <strike>Face Color Picker</strike> (Suggested by Mark)</li>
</ul>
</div>
</div>
<a href="https://github.com/MyMiniFactory/stl2gltf"><img style="position: absolute; top: 0; right: 0; border: 0;" src="https://s3.amazonaws.com/github/ribbons/forkme_right_orange_ff7600.png" alt="Fork me on GitHub"></a>
</body>
</html>