-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsketch.js
108 lines (88 loc) · 2.38 KB
/
sketch.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
let algSelection;
let displaySelection;
let canvasWidth = 1300;
let canvasHeight = 800;
let numberOfObjects = 200;
let maxValueHeight = canvasHeight - 50;
let itemWidth = canvasWidth / numberOfObjects;
let values = new Array(numberOfObjects);
let alg;
function setup() {
algSelection = createSelect();
algSelection.option('Bubble');
algSelection.option('Insertion');
algSelection.option('Selection');
algSelection.option('Shaker');
algSelection.changed(changeAlg);
algSelection.position(15, 15);
displaySelection = createSelect();
displaySelection.option('Dots');
displaySelection.option('Bars');
displaySelection.changed(changeDisplay);
displaySelection.position(105, 15);
setRandomValues();
alg = new BubbleSort(values);
createCanvas(canvasWidth, canvasHeight);
frameRate(20);
displayValues();
}
function draw() {
alg.step();
displayValues();
}
function changeAlg() {
let selection = algSelection.value();
setRandomValues();
switch (selection) {
case 'Bubble':
alg = new BubbleSort(values);
break;
case 'Insertion':
alg = new InsertionSort(values);
break;
case 'Selection':
alg = new SelectionSort(values);
break;
case 'Shaker':
alg = new ShakerSort(values);
break;
}
displayValues();
}
function changeDisplay() {
displayValues();
}
function displayValues() {
resetCanvas();
let selectedDisplay = displaySelection.value();
for (let k = 0; k < values.length; k++) {
switch (selectedDisplay) {
case 'Bars':
noStroke();
rect(k * itemWidth, height - values[k], itemWidth, values[k]);
break;
case 'Dots':
strokeWeight(itemWidth);
point(k * itemWidth + itemWidth / 2, height - values[k]);
break;
}
this.resetFillAndStroke();
}
noStroke();
textSize(17);
text("Comparisons: " + alg.comparisons, 170, 30);
}
function resetCanvas() {
clear();
background(50, 50, 50);
this.resetFillAndStroke();
}
function resetFillAndStroke() {
fill(200, 200, 200);
stroke(200, 200, 200);
}
function setRandomValues() {
for (let i = 0; i < values.length; i++) {
values[i] = random(maxValueHeight) + 5;
}
}