-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.htm
504 lines (446 loc) · 14.2 KB
/
index.htm
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
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
<!DOCTYPE html>
<html>
<head>
<meta charset=utf-8>
<title>svg2ldraw - Convert SVG Images to LDraw Patterns</title>
<meta name="viewport" content="width=device-width" />
<style>
body {
font-family: "Arial","Helvetica",sans-serif;
padding: 0;
margin: 0;
background-color: #EEE;
}
h1, h3 {
text-transform: uppercase;
display: block;
text-align: center;
margin: 0;
padding: 0.5em;
font-size: 2em;
}
h1 {
background-color: #000;
color: white;
}
h3 {
background-color: #9DD;
}
#svg_container, #svg_ldraw {
background-color: white;
}
.section {
display: block;
margin: 0.5em;
}
.desc {
margin: 0.5em;
}
.choice {
display: table;
margin: 0.5em;
}
.choice, textarea, button {
display: block;
width: 95%;
}
button {
height: 4em;
}
.color_cube {
display: inline-block;
width: 1em;
height: 1em;
border: 1px solid black;
margin-left: 0.5em;
margin-right: 0.5em;
}
#contact {
margin: 2em;
text-align: center;
}
.error, .warning {
display: block;
margin: 1em;
padding: 0.5em;
font-weigght: bold;
}
.error {
border: 0.2em solid red;
}
.warning {
border: 0.2em solid orange;
}
</style>
</head>
<body>
<script src="js/three.min.js"></script>
<script src="js/OrbitControls.js"></script>
<script src="js/jquery.min.js"></script>
<script src="js/colors.js"></script>
<script src="js/geometry.js"></script>
<script src="js/color_transformation.js"></script>
<script src="js/path_simplification.js"></script>
<script src="js/bezier_removal.js"></script>
<script src="js/arc_removal.js"></script>
<script src="js/convex_hull_decomposition.js"></script>
<script src="js/tjunctions.js"></script>
<!-- 3D Visualization: -->
<script src="js/LDROptions.js"></script>
<script src="js/LDRShaders.js"></script>
<script src="js/LDRColorMaterials.js"></script>
<script src="js/LDRGeometries.js"></script>
<script src="js/LDRLoader.js"></script>
<!-- Main svg2ldraw functions: -->
<script src="js/svg2ldraw.js"></script>
<h1>svg2ldraw - Convert SVG Images to LDraw Patterns</h1>
<h3>Step 1 - SVG Image</h3>
<div id="select_svg" class="section">
<span class="desc">
Select the SVG image using either a URL, a file, or paste the content into the text area below. See the tutorial <a href="https://www.youtube.com/watch?v=a5cWh3Fd668">here</a>.
</span>
<span class="choice">
<label for="svg_url">URL from a website</label>
<input id="svg_url" name="svg_url" type="text" onchange="readSvgFromUrl(event);" />
</span>
<span class="choice">
<label for="svg_file">File on your device</label>
<input id="svg_file" name="svg_file" type="file" accept="image/svg+xml" onchange="readSvgFromFile(event);" />
</span>
<span class="choice">
<textarea id="svg_content" onkeyup="readSvgFromText()" rows="20"><!-- Or write the content of the SVG file here --></textarea>
</span>
<div id="warnings">
</div>
<div id="errors">
</div>
<div id="svg_container"></div>
</div>
<h3>Step 2 - Size and Scaling</h3>
<div id="select_size" class="section">
<span class="desc">
Select the size with 'LDU' as unit. As an example. A 1x1 brick is 20 LDU wide and 24 LDU tall
</span>
<span class="choice">
<label for="width">Width in LDU</label>
<input id="width" name="width" type="text" onchange="setWidth();" />
</span>
<span class="choice">
<label for="height">Height in LDU</label>
<input id="height" name="height" type="text" onchange="setHeight();" />
</span>
<span class="desc">
If the svg contains Bezier curves, then they have to be simplified for LDraw. Please select how many many points should be added.
</span>
<span class="choice">
<label for="pointsPerPixel">Points per 100 pixels</label>
<input id="pointsPerPixel" name="pointsPerPixel" type="text" value="3" onchange="readSvgFromText();" />
</span>
</div>
<h3>Step 3 - Adjust Colors</h3>
<div id="select_colors" class="section">
<span class="desc">
Here you can replace the colors that have been identified.
Color 16 is the 'base color' which will be replaced with another color when used in a model. Colors appear once there is an SVG file.
</span>
<div id="color_choices"></div>
</div>
<h3>Step 4 - Download LDraw File</h3>
<div id="get_ldraw_file" class="section">
<!--<div id="svg_ldraw"></div>-->
<div id="preview"></div>
<span class="choice">
<textarea id="ldraw_result" rows="10"></textarea>
<button onclick="copyToClipboard();">Copy LDraw File to Clipboard</button>
</span>
</div>
<h3>Bonus Step - Thickness</h3>
<div id="select_thickness" class="section">
<span class="desc">
For rectangular stickers you can set a 'thickness' value to replicate how stickers raise just a bit over the surface of LEGO models.
A value of 0.5 seems to work nicely here.
The color 'Box color' is used for this.
</span>
<span class="choice">
<label for="thickness">Thickness in LDU (Leave as 0 to skip this feature)</label>
<input id="thickness" name="thickness" type="text" value="0" onchange="readSvgFromText();" />
</span>
</div>
<div id="contact">
<a href="https://github.com/LasseD/svg2ldraw">svg2ldraw</a> is in the public domain and may be freely distributed.
Contact: Lasse Deleuran on <a href="mailto:lasse.deleuran@gmail.com">lasse.deleuran@gmail.com</a>.
</div>
<script>
var colorTransformation = new LDR.ColorTransformation();
function resetColors() {
colorTransformation = new LDR.ColorTransformation();
$('#color_choices').empty();
}
function setColor(htmlColor, event) {
var c = colorTransformation.colors[event.value];
console.log('Setting color ' + htmlColor + ' -> ' + c.id);
colorTransformation.map[htmlColor] = c;
convert_svg(null);
}
function makeColorCube(hex) {
var cube = document.createElement('span');
cube.setAttribute('class', 'color_cube');
cube.style.backgroundColor = hex;
return cube;
}
function onColorMapped(caller, htmlColor, color) {
var parent = $('#color_choices')[0];
var spanEle = document.createElement('span'); parent.appendChild(spanEle);
spanEle.setAttribute('class', 'choice');
var labelEle = document.createElement('label'); spanEle.appendChild(labelEle);
labelEle.innerHTML = htmlColor;
labelEle.append(makeColorCube(htmlColor));
var selectEle = document.createElement('select'); spanEle.appendChild(selectEle);
selectEle.setAttribute('onchange', "setColor('" + htmlColor + "', this)");
for(var i = 0; i < caller.colors.length; i++) {
var c = caller.colors[i];
var optionEle = document.createElement('option'); selectEle.appendChild(optionEle);
optionEle.setAttribute('value', i);
optionEle.innerHTML = c.text;
if(c.id == color.id) {
optionEle.setAttribute('selected', 'selected');
}
}
}
var seenWarningTypes = {};
function resetWarningsAndErrors() {
$('#warnings').empty();
$('#errors').empty();
seenWarningTypes = {};
}
function onWarning(type, message) {
console.warn(message);
if(seenWarningTypes.hasOwnProperty(type)) {
return; // Already seen.
}
message = message.replace('<', '<');
var span = document.createElement('span');
span.setAttribute('class', 'warning');
span.innerHTML = message;
$('#warnings').append(span);
seenWarningTypes[type] = true;
}
function onError(message) {
var span = document.createElement('span');
span.setAttribute('class', 'error');
span.innerHTML = message;
$('#errors').empty().append(span);
}
var scaleW = 1, scaleH = 1;
var widthSet = false, heightSet = false;
function convert_svg(svg) {
resetWarningsAndErrors();
if(!svg) { // Fetch from text area:
svg = $('#svg_content')[0].value;
}
else { // Update text area:
$('#svg_content').val(svg);
}
$('#svg_container').empty().append(svg);
// Simplify:
var ppp = $('#pointsPerPixel')[0].value;
var simplifier = new UTIL.PathSimplification(ppp / 100, onWarning, onError);
var simplified = simplifier.simplifySvg(svg);
if(!simplified) {
onError('SVG file failed to parse. No LDraw file is generated.');
return; // Invalid SVG file.
}
// Dimensions:
var w = $('#width')[0];
if(!w)
w = simplified.width;
else
w = parseFloat(w.value);
var h = $('#height')[0];
if(!h)
h = simplified.height;
else
h = parseFloat(h.value);
// Resizing:
if(!widthSet && !heightSet) {
$('#width').val(simplified.width);
$('#height').val(simplified.height);
scaleW = scaleH = 1;
}
else if(widthSet && heightSet) {
// Both updated manually:
scaleW = w / simplified.width;
scaleH = h / simplified.height;
}
else if(widthSet) {
scaleW = w / simplified.width;
scaleH = Math.abs(scaleW);
$('#height').val(parseInt(scaleH * simplified.height));
}
else {
scaleH = h / simplified.height;
scaleW = Math.abs(scaleH);
$('#width').val(parseInt(scaleW * simplified.width));
}
// Remove overlapping geometries:
var result = {paths:[], width:simplified.width, height:simplified.height, viewBox:simplified.viewBox};
for(var i = simplified.paths.length-1; i >= 0; i--) {
try {
var d = new UTIL.ConvexHullDecomposition([simplified.paths[i]], onWarning);
d.build();
result.paths.push(...UTIL.cut(result.paths, d.paths));
}
catch(exception) {
onWarning(i, "Error while constructing path. Path will be ignored. You can potentially avoid this by changing the settings of 'Points per 100 pixels'. Error message: " + exception);
}
}
// Add points to prevent T-sections and to be able to combine paths:
var tjHandler = new UTIL.TJunctionHandler();
result.paths = tjHandler.addPoints(result.paths);
// Combine paths:
result.paths = UTIL.combinePaths(result.paths);
// Ensure all paths are convex:
var chd = new UTIL.ConvexHullDecomposition(result.paths, onWarning);
chd.build();
result.paths = chd.paths;
// Re-add points to avoid T-Junctions:
result.paths = tjHandler.addPoints(result.paths);
// Colors:
colorTransformation.transformPaths(result.paths, onColorMapped);
colorTransformation.transform('Box color', onColorMapped);
// LDraw:
var thickness = parseFloat($('#thickness')[0].value);
if(!(thickness > 0))
thickness = 0;
var lDrawContent = new SVG2LDRAW.Svg().toLDraw(result, scaleW, scaleH, thickness, colorTransformation.map['Box color'].id);
var maxW = window.innerWidth, maxH = window.innerHeight;
if(simplified.width > maxW) {
simplified.height *= (maxW/simplified.width);
simplified.width = maxW;
}
if(simplified.height > maxH) {
simplified.width *= (maxH/simplified.height);
simplified.height = maxH;
}
//var lDrawSvg = simplifier.svgObjToSvg(result);
showInScene(lDrawContent);
//document.getElementById('svg_ldraw').innerHTML = lDrawSvg;
$('#ldraw_result').val(lDrawContent);
}
function readSvgFromFile(event) {
var reader = new FileReader();
reader.onload = function(){
var svgTxt = reader.result;
$('width').val('');
$('height').val('');
resetColors();
convert_svg(svgTxt);
};
reader.readAsText(event.target.files[0]);
}
function readSvgFromUrl(event) {
var url = event.target.value;
console.log('Reading from URL ' + url);
var req = new XMLHttpRequest();
req.onreadystatechange = function() {
if(req.readyState != 4)
return;
if(req.status != 200) {
console.dir(event);
return;
}
var svgTxt = req.responseText;
$('width').val('');
$('height').val('');
resetColors();
convert_svg(svgTxt);
};
req.open('GET', url, true);
req.setRequestHeader('Content-Type', 'application/xml');
req.send();
}
function readSvgFromText() {
convert_svg(null);
}
function setWidth() {
var w = $('#width')[0];
if(!w)
return;
widthSet = true;
convert_svg(null);
}
function setHeight() {
var h = $('#height')[0];
if(!h)
return;
heightSet = true;
convert_svg(null);
}
function copyToClipboard() {
$('#ldraw_result')[0].select();
document.execCommand('copy');
}
/*
three.js rendering:
*/
var ldrOptions = new LDR.Options();
// Set up camera:
var camera = new THREE.OrthographicCamera(-1, 1, 1, -1, 0.1, 1000000);
camera.position.set(10000, 7000, 10000);
camera.lookAt(new THREE.Vector3());
// Set up scene:
var scene = new THREE.Scene();
scene.background = new THREE.Color(0xFFFFFF);
//scene.add(new THREE.AxesHelper(10, 0xFF0000));
var baseObject;
// Set up renderer:
var renderer = new THREE.WebGLRenderer({antialias: true});
renderer.setPixelRatio(window.devicePixelRatio);
function render() {
renderer.render(scene, camera);
}
var preview = document.getElementById('preview');
preview.appendChild(renderer.domElement);
var w, h;
function onWindowResize(){
w = window.innerHeight * 0.7;
h = window.innerWidth * 0.7;
w = h = Math.min(w, h);
camera.left = -w;
camera.right = w;
camera.top = h;
camera.bottom = -h;
camera.updateProjectionMatrix();
renderer.setSize(w, h);
render();
}
window.addEventListener('resize', onWindowResize, false);
onWindowResize();
// React to user input:
var controls = new THREE.OrbitControls(camera, renderer.domElement);
controls.addEventListener('change', render);
function showInScene(ldr) {
var ldrLoader = new THREE.LDRLoader(()=>{}, null, {onError:onError, onWarning:onWarning});
ldrLoader.parse(ldr, 'main.dat');
if(!ldrLoader.mainModel) {
console.log('A valid model was not parsed. Nothing will be shown');
return;
}
if(baseObject) {
scene.remove(baseObject);
}
baseObject = new THREE.Group();
scene.add(baseObject);
var mc = new LDR.MeshCollector(baseObject, baseObject);
ldrLoader.generate(16, mc);
// Find center of drawn model:
var b = mc.boundingBox;
var elementCenter = new THREE.Vector3();
b.getCenter(elementCenter);
baseObject.position.set(-elementCenter.x, -elementCenter.y, -elementCenter.z);
camera.zoom = w/b.min.distanceTo(b.max)*2;
onWindowResize();
}
</script>
</body>
</html>