-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdragndrop.js
executable file
·800 lines (579 loc) · 19.6 KB
/
dragndrop.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
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
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
var image1, image2, image3, image4, image5, image6;
// init vars
var $container1 = $('#container1'),
$container2 = $('#container2'),
$container3 = $('#container3'),
$container4 = $('#container4'),
$container5 = $('#container5'),
$container6 = $('#container6');
sampleButtons = function()
{
var exampleButtons = $(".main_button_container button");
exampleButtons.on("click", function() {
if($(this).text() ==="Homer")
{
initParameters();
//Holmer only
image3.src = "images/Holmer/Holmer_shape.png"; //shape map
image1.src = "images/Holmer/Holmer_dark.png"; //dark
image2.src = "images/Holmer/Holmer_bright.png"; //bright
image4.src = "images/reflect_window2.png";//reflection
image5.src = "images/dark.png"; //refraction
//image5.src = "images/checker.jpg";//refraction
image6.src = "images/Holmer/Holmer_new_alphaControl.png";
}
if($(this).text() ==="Picasso")
{
initParameters();
//Picasso
alphaR = 1;
image1.src = "images/Picasso/dark.jpg"; //dark
image2.src = "images/Picasso/bright.jpg"; //bright
image3.src = "images/Picasso/shape.png"; //shape map
image4.src = "images/dark.png"; //reflection
image5.src = "images/Picasso/original.jpg"; //refraction
image6.src = "images/white.png"; //alpha
}
if($(this).text() ==="Bubble")
{
initParameters();
//Bubble for fresnel
mouseXY[0] = [0.27, -0.323];
FGshiftX = 0.0;
FGshiftY = -0.03;
FGscaleX = 0.72;
FGscaleY = 0.83;
logIOR = 0.08;
FGdis = 0.27;
alphaR = 0;
reflMap = 1;
fresnelB = 0.39;
fresnelC = 0.63;
image1.src = "images/dark.png"//dark
image2.src = "images/white.png"//bright
image3.src = "images/bubble.png"; //shape
image4.src = "images/trees.jpg"; //reflection
image6.src = "images/white.png"; //alpha
image5.src = "images/tree_blurry.jpg"; //refraction
}
if($(this).text() ==="Bottle")
{
initParameters();
//newBottle
alphaR = 0;
FGshiftX = -0.11;
FGshiftY = -0.0;
FGscaleX = 0.6;
FGscaleY = 0.67;
FGdis = 0.22;
mouseXY[0] = [0.34, -0.0746];
fresnelB = 0.3;
fresnelC = 0.53;
logIOR = 0.27;
image1.src = "images/newBottle/diffuse.png"; //dark
image2.src = "images/newBottle/diffuse_bright.png"; //bright
image3.src = "images/newBottle/shape.png"; //shape map
image4.src = "images/newBottle/reflect.jpg"; //reflection
image5.src = "images/newBottle/bg.png";//refraction
image6.src = "images/newBottle/alpha.png";
}
if($(this).text() ==="Eye")
{
initParameters();
//Escher/eye
alphaR = 0.7;
mouseXY[0] = [0.27, -0.41];
FGshiftX = -0.21;
FGshiftY = -0.17;
FGscaleX = 0.62;
FGscaleY = 0.64;
FGdis = 0.2;
fresnelIntensity = 1;
image1.src = "images/Escher/eye/dark.jpg"; //dark
image2.src = "images/Escher/eye/bright.jpg"; //bright
image3.src = "images/Escher/eye/shape.png"; //shape map
image4.src = "images/Escher/eye/reflect.png"; //reflection
image5.src = "images/dark.png";//refraction
image6.src = "images/Escher/eye/alphaControl.jpg";
}
if($(this).text() ==="EscherSphere")
{
initParameters();
//Escher/handWithSphere
alphaR = 0;
reflectIntensity = 1.0;
fresnelIntensity = 1.0;
FGshiftX = -0.09;
FGshiftY = 0.08;
FGscaleX = 0.8;
FGscaleY = 0.6;
reflMap =1;
FGdis = 0.11;
image1.src = "images/Escher/handWithSphere/dark.jpg"; //dark
image2.src = "images/Escher/handWithSphere/bright.jpg"; //bright
image3.src = "images/Escher/handWithSphere/shape.png"; //shape map
image4.src = "images/Escher/handWithSphere/reflect2.jpg"; //reflection
image5.src = "images/dark.png";//refraction
image6.src = "images/Escher/handWithSphere/alphaControl.png";
}
if($(this).text() ==="UnderWater")
{
initParameters();
//underWater
alphaR = 0;
image1.src = "images/underWater/dark.jpg"; //dark
image2.src = "images/underWater/bright.jpg"; //bright
image3.src = "images/underWater/shape.jpg"; //shape map
image4.src = "images/dark.png"; //reflection
image5.src = "images/underWater/BG.jpg";//refraction
image6.src = "images/underWater/alphaControl.jpg";
}
if($(this).text() ==="FragFace")
{
initParameters();
//poly_fragFace
image1.src = "images/poly_fragFace/noise.jpg"; //dark
image2.src = "images/poly_fragFace/dot.jpg"; //bright
image3.src = "images/poly_fragFace/shape.jpg"; //shape map
image4.src = "images/dark.png"; //reflection
image5.src = "images/poly_fragFace/bg.jpg"; //refraction
image6.src = "images/poly_fragFace/alpha.jpg"; //alpha
}
if($(this).text() ==="Impossible1")
{
initParameters();
//impossible_triangle
alphaR = 1;
image1.src = "images/impossible_triangle/dark.png"; //dark
image2.src = "images/impossible_triangle/bright.png"; //bright
image3.src = "images/impossible_triangle/shape.png"; //shape map
image4.src = "images/dark.png"; //reflection
image5.src = "images/dark.png"; //refraction
image6.src = "images/white.png"; //alpha
}
if($(this).text() ==="Impossible2")
{
initParameters();
//impossible_stair
alphaR = 1;
image1.src = "images/impossible_stair/dark.png"; //dark
image2.src = "images/impossible_stair/bright.png"; //bright
image3.src = "images/impossible_stair/shape.png"; //shape map
image4.src = "images/dark.png"; //reflection
image5.src = "images/dark.png"; //refraction
image6.src = "images/white.png"; //alpha
}
if($(this).text() ==="Impossible3")
{
initParameters();
//impossible_gradient
alphaR = 1;
FGshiftX = 1.0;
lightIntensity[0] = 0.5;
image1.src = "images/dark.png"; //dark
image2.src = "images/white.png"; //bright
image3.src = "images/impossible_gradient/shape.png"; //shape map
image4.src = "images/dark.png"; //reflection
image5.src = "images/dark.png"; //refraction
image6.src = "images/white.png"; //alpha
}
$("#container1image").empty().append(image1);
$("#container2image").empty().append(image2);
$("#container3image").empty().append(image3);
$("#container4image").empty().append(image4);
$("#container5image").empty().append(image5);
$("#container6image").empty().append(image6);
//set thumb image size
setThumbImgSize(image3);
//update gl-canvas width and height
updateCanvasSizeandStyle(image3);
normalImage.src = image3.src;
lightImage.src = image2.src;
darkImage.src = image1.src;
refractImage.src = image5.src;
reflectImage.src = image4.src;
alphaImage.src = image6.src;
});
}
UPLOADinit = function()
{
/******************* Initial Maps *********************/
image1 = new Image();
image2 = new Image();
image3 = new Image();
image4 = new Image();
image5 = new Image();
image6 = new Image();
initParameters();
//Sphere for fresnel
alphaR = 0;
reflMap = 1;
fresnelB = 0.36;
fresnelC = 0.73;
image1.src = "images/dark.png"//dark
image2.src = "images/white.png"//bright
image3.src = "images/sphere.png"; //shape
image4.src = "images/trees.jpg"; //reflection
image6.src = "images/white.png"; //alpha
image5.src = "images/tree_blurry.jpg"; //refraction
//sphere for test
// image1.src = "images/dark.png"//dark
// image2.src = "images/white.png"//bright
// image3.src = "images/sphere.png"; //shape
// image4.src = "images/trees.png"; //reflection
// //image4.src = "images/bg_artMuseum.jpg"; //reflection
// //image4.src = "images/reflect_window2.png";//reflection
// image6.src = "images/white.png"; //alpha
// image5.src = "images/checker.jpg";//refraction
// image5.src = "images/light.png"; //refraction
//Holmer with bubble
// image3.src = "images/Holmer/Holmer_new_shape.png"; //shape map
// image1.src = "images/Holmer/Holmer_new_dark.png"; //dark
// image2.src = "images/Holmer/Holmer_new_bright.png"; //bright
// image4.src = "images/reflect_window2.png";//reflection
// image5.src = "images/checker.jpg"; //refraction
// image6.src = "images/Holmer/Holmer_new_alphaControl.png";
//newBottle for Fresnel
// alphaR = 0;
// reflMap = 1;
// logIOR = 0.1;
// mouseXY[0] = [0.32, -0.06];
// fresnelB = 0.36;
// fresnelC = 0.73;
// FGshiftX = 0.1;
// FGshiftY = -0.05;
// FGscaleX = 0.92;
// FGscaleY = 0.67;
// FGdis = 0.27;
// image1.src = "images/dark.png"//dark
// image2.src = "images/white.png"//bright
// //image3.src = "images/sphere.png"; //shape
// image4.src = "images/indoor.jpg"; //reflection
// image6.src = "images/white.png"; //alpha
// image5.src = "images/checker2.png"; //refraction
// image3.src = "images/newBottleForFresnel.png"; //shape map
//for fresnel test - newBottle
// image1.src = "images/dark.png"; //dark
// image2.src = "images/light.png"; //bright
// image3.src = "images/newBottleForFresnel.png"; //shape map
// image4.src = "images/white.png"; //reflection
// image6.src = "images/white.png"; //alpha
// image5.src = "images/checker2.png";//refraction
//poly_girl
// image1.src = "images/dark.png"; //dark
// image2.src = "images/white.png"; //bright
// image3.src = "images/polyGirl/original.jpg"; //shape map
// image4.src = "images/dark.png"; //reflection
// image5.src = "images/dark.png"; //refraction
// image6.src = "images/white.png"; //alpha
//for fresnel test - cylinder
// alphaR = 0;
// logIOR = 1;
// image1.src = "images/dark.png"; //dark
// image2.src = "images/light.png"; //bright
// image3.src = "images/cylinder.png"; //shape map
// image4.src = "images/trees.png"; //reflection
// image6.src = "images/white.png"; //alpha
// image5.src = "images/dark.png"; //refraction
//eye
// image1.src = "images/Eye/eye_dark.jpg"; //dark
// image2.src = "images/Eye/eye_bright.jpg"; //bright
// image3.src = "images/Eye/eye_shape_smooth.png"; //shape map
// image4.src = "images/Eye/eye_foreground.png"; //reflection
// image5.src = "images/checker.jpg";//refraction
// image6.src = "images/eye/eye_alpha.jpg";
// image1.src = "images/dark.png"; //dark
// image2.src = "images/light.png"; //bright
// image3.src = "images/bottle/shape.png"; //shape map
// //image4.src = "images/stripe_s.jpg"; //reflection
// image4.src = "images/reflect_red.png"; //reflection
// image5.src = "images/checker.jpg";//refraction
// image6.src = "images/white.png";
//image2.src = "images/light.png"; //bright
//image1.src = "images/dark_(alpha50).png"; //dark
//image2.src = "images/light_(alpha50).png"; //bright
//image3.src = "images/normal.png"; //shape map
//for responsive display
// image1.src = "images/solid.png";
// image2.src = "images/solid.png";
// image3.src = "images/solid.png";
// image4.src = "images/solid.png";
// image5.src = "images/solid.png";
// image6.src = "images/solid.png";
//image1.src = "images/Holmer/Holmer_dark.png"; //dark
//image2.src = "images/Holmer/Holmer_bright.png"; //bright
//image3.src = "images/Holmer/Holmer_shape.png"; //shape map
//image4.src = "images/reflect_red.png";//reflection
//image4.src = "images/dark.png";
//image5.src = "images/dark.png"; //refraction
//image5.src = "images/white.png";
//image1.src = "images/bottle/dark.png"//dark
//image2.src = "images/bottle/bright.png"//bright
//image3.src = "images/bottle/shape.png"
//image5.src = "images/bottle/bg.png"
//image6.src = "images/eye/eye_alpha.jpg";
//image6.src = "images/Holmer/Holmer_alphaControl.jpg"; //refraction
//load default images in thumb
initDefaultThumbImgSize(image1);
initDefaultThumbImgSize(image2);
initDefaultThumbImgSize(image3);
initDefaultThumbImgSize(image4);
initDefaultThumbImgSize(image5);
initDefaultThumbImgSize(image6);
initDefaultCanvasSize(image3);//canvas size based on Normal map
$("#container1image").append(image1);
$("#container2image").append(image2);
$("#container3image").append(image3);
$("#container4image").append(image4);
$("#container5image").append(image5);
$("#container6image").append(image6);
//key function
addEventListeners();
}
function initDefaultThumbImgSize(_image){
_image.addEventListener('load', function() {
//set thumb image size
setThumbImgSize(_image);
});
}
function initDefaultCanvasSize(_image){
_image.addEventListener('load', function() {
//update gl-canvas width and height
updateCanvasSizeandStyle(_image);
});
}
function addEventListeners()
{
// container1 DnD event
var container1 = $container1[0];
container1.addEventListener('dragover', cancel, false);
container1.addEventListener('dragenter', cancel, false);
container1.addEventListener('dragexit', cancel, false);
container1.addEventListener('drop', dropFile, false);
var container2 = $container2[0];
container2.addEventListener('dragover', cancel, false);
container2.addEventListener('dragenter', cancel, false);
container2.addEventListener('dragexit', cancel, false);
container2.addEventListener('drop', dropFile, false);
var container3 = $container3[0];
container3.addEventListener('dragover', cancel, false);
container3.addEventListener('dragenter', cancel, false);
container3.addEventListener('dragexit', cancel, false);
container3.addEventListener('drop', dropFile, false);
var container4 = $container4[0];
container4.addEventListener('dragover', cancel, false);
container4.addEventListener('dragenter', cancel, false);
container4.addEventListener('dragexit', cancel, false);
container4.addEventListener('drop', dropFile, false);
var container5 = $container5[0];
container5.addEventListener('dragover', cancel, false);
container5.addEventListener('dragenter', cancel, false);
container5.addEventListener('dragexit', cancel, false);
container5.addEventListener('drop', dropFile, false);
var container6 = $container6[0];
container6.addEventListener('dragover', cancel, false);
container6.addEventListener('dragenter', cancel, false);
container6.addEventListener('dragexit', cancel, false);
container6.addEventListener('drop', dropFile, false);
}
/*
* Handles when a file is dropped by
* the user onto the container1
*/
function dropFile(event)
{
var eventCaller = event.target.parentNode.parentNode.id;
//from ".btn-file input" to ".btn-file" to "imgThumb_container", result is "#container1 2 3 4 5"
//alert(event);
// stop the browser doing
// it's normal thing of going
// to the item
event.stopPropagation();
event.preventDefault();
// query what was dropped
var files = event.dataTransfer.files;
// if we have something
if(files.length) {
handleDropFile(files[0], eventCaller);
}
return false;
}
/**
* Handles the uploaded file (drop file and selected file)
*/
function handleDropFile(file, eventCaller)
{
var fileReader = new FileReader();
//fileReader.onloadend = fileUploaded;
fileReader.onloadend = function(event) {
if(event.target.result.match(/^data:image/))
{
return fileUploaded.call(this, event, eventCaller);
}else{
// time to whinge
alert("Umm, images only? ... Yeah");
}
}
fileReader.readAsDataURL(file);
}
/************* Selected file to upload (not drag and drop) -start**************/
//load selected file to container
function handleSelectedFile(fileSelected, container)
{
var fileToLoad = fileSelected[0];
if (fileToLoad.type.match("image.*"))
{
var fileReader = new FileReader();
fileReader.onload = function(event)
{
return fileUploaded.call(this, event, container);
};
}else{
alert("Umm, images only? ... Yeah");
}
fileReader.readAsDataURL(fileToLoad);
}
/************* Selected file to upload (not drag and drop) - end **************/
/**
* File upload handled
*/
function fileUploaded(event, elemName)
{
var image;
var $container = $('#' + elemName);
// check it's an image
$container.addClass('live');
if(elemName === "container1")
{
image1 = new Image();
image1.src = event.target.result;
image = image1;
//set thumb image size
setThumbImgSize(image1);
// Update WebGL texture.
darkImage.src = image1.src;
}
else if(elemName === "container2")
{
image2 = new Image();
image2.src = event.target.result;
image = image2;
//set thumb image size
setThumbImgSize(image2);
// Update WebGL texture.
lightImage.src = image2.src;
}
else if(elemName === "container3")
{
image3 = new Image();
image3.src = event.target.result;
image = image3;
//set thumb image size
setThumbImgSize(image3);
//update gl-canvas width and height
updateCanvasSizeandStyle(image3);
// Update WebGL texture.
normalImage.src = image3.src;
}
else if(elemName === "container4")
{
image4 = new Image();
image4.src = event.target.result;
image = image4;
//set thumb image size
setThumbImgSize(image4);
// Update WebGL texture.
reflectImage.src = image4.src;
}
else if(elemName === "container5")
{
image5 = new Image();
image5.src = event.target.result;
image = image5;
//set thumb image size
setThumbImgSize(image5);
// Update WebGL texture.
refractImage.src = image5.src;
}
else if(elemName === "container6")
{
image6 = new Image();
image6.src = event.target.result;
image = image6;
//set thumb image size
setThumbImgSize(image6);
// Update WebGL texture.
alphaImage.src = image6.src;
}
// create the image object
imageManip(elemName, image);
}
function cancel(event)
{
if(event.preventDefault)
event.preventDefault();
return false;
}
function imageManip(elemName, image)
{
$('#' + elemName + 'image').empty();
$('#' + elemName + 'image').append(image);
}
function setThumbImgSize(_image)
{
_image.style.width = "auto";
_image.style.height = "auto";
if(_image.width>=_image.height){
_image.style.width = "100px";
}else{
_image.style.height = "100px";
}
}
function updateCanvasSizeandStyle(_image)
{
var canvas = document.getElementById("gl-canvas");
var canvasContainer = $('.canvas_container');
var ratioImage = _image.width / _image.height;
var ratioContainer = canvasContainer.width() / canvasContainer.height();
var lightPostionContainer = $('#lightPosition_container');
if(ratioImage>=ratioContainer){
canvas.width = canvasContainer.width();
canvas.height = canvas.width * _image.height / _image.width;
canvas.style.width = "100%";
canvas.style.height = "auto";
$(lightPostionContainer).css("width", "100%");
$(lightPostionContainer).css("height", "auto");
}else{
canvas.height = canvasContainer.height() ;
canvas.width = canvas.height * _image.width / _image.height;
canvas.style.height = "100%";
canvas.style.width = "auto";
$(lightPostionContainer).css("height", "100%");
$(lightPostionContainer).css("width", "auto");
}
$(lightPostionContainer).attr("width", canvas.width) ;
$(lightPostionContainer).attr("height", canvas.height);
var viewbox = "0 0 " + canvas.width + " " + canvas.height;
$(lightPostionContainer).attr("viewBox", viewbox);
gl = WebGLUtils.setupWebGL( canvas );
gl.viewport( 0, 0, canvas.width, canvas.height );
gl.clearColor( 0.05, 0.05, 0.05, 1.0 );
}
/************* Selected file to upload (not drag and drop) set listener**************/
/************* and drag and drop UPLOADinit **************/
//hover image with image name label show up
$(document).on('change', '.btn-file :file', function() {
var input = $(this);
var label = input.val().replace(/\\/g, '/').replace(/.*\//, '');
input.trigger('fileselect', [label]);
});
$(document).ready( function() {
UPLOADinit();
sampleButtons();
$('.btn-file :file').on('fileselect', function(event) {
var elemName = event.target.id;
var containerName = event.target.parentNode.parentNode.id;
var filesSelected = document.getElementById(elemName).files;
handleSelectedFile(filesSelected, containerName);
});
});