-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
153 lines (139 loc) · 3.15 KB
/
index.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
// canvas and index text
const indexText = document.getElementById("index");
const canvas = document.getElementById("canvas");
const ctx = canvas.getContext("2d");
let radius;
resize(window.innerWidth);
window.onresize = event => {
resize(event.currentTarget.innerWidth);
draw();
};
// array
let timeout = 10;
let a = [];
let curr = [];
let ratio = 1;
let globalNum = 100;
let customReady = false;
function getRandomInt(min, max) {
min = Math.ceil(min);
max = Math.floor(max);
return Math.floor(Math.random() * (max - min)) + min;
}
function resize(width) {
width = width > 496 ? width / 3 : width / 2.5;
canvas.width = width;
canvas.height = width;
radius = width / 2;
}
function draw() {
if (curr) {
ctx.clearRect(0, 0, radius * 2, radius * 2);
let last = 0;
for (let i = 1; i <= curr.length; i++) {
let rad = i * (2 * Math.PI) / curr.length;
let color = "hsla(" + curr[i - 1] * ratio + ", 100%, 50%, 1.0)";
ctx.fillStyle = color;
ctx.strokeStyle = color;
ctx.beginPath();
ctx.moveTo(radius, radius);
ctx.arc(radius, radius, radius, last, rad, false);
last = rad;
ctx.lineTo(
radius + radius * Math.cos(rad),
radius + radius * Math.sin(rad)
);
ctx.fill();
ctx.stroke();
}
}
}
function custom() {
if (customReady) {
a = JSON.parse(document.getElementById("custom").value);
run();
}
}
function check(val) {
const errorEl = document.getElementById("error");
try {
JSON.parse(val);
customReady = true;
errorEl.innerHTML = "";
} catch (e) {
errorEl.innerHTML = e;
}
}
function changeSpeed(speed) {
console.log(speed);
timeout = 500 / speed;
}
function run() {
let arrMax = Math.max(a[0].reduce((a, b) => Math.max(a, b)));
ratio = 360 / arrMax;
asyncloop(
i => !a[i + 1],
i => {
curr = a[i];
window.requestAnimationFrame(draw);
indexText.innerHTML = i + 1;
}
);
}
function insertion() {
a = [];
for (var i = 1; i < curr.length; i++) {
var tmp = curr[i];
for (var j = i - 1; j >= 0 && curr[j] > tmp; j--) {
curr[j + 1] = curr[j];
if (curr.length < 200) a.push([...curr]);
}
if (curr.length >= 200) a.push([...curr]);
curr[j + 1] = tmp;
}
console.log(a);
run();
}
function inPlaceRadix() {
a = [];
var k = Math.max.apply(
null,
curr.map(function(i) {
return Math.ceil(Math.log(i) / Math.log(2));
})
);
for (var d = 0; d < k; ++d) {
for (var i = 0, p = 0, b = 1 << d, n = curr.length; i < n; ++i) {
var o = curr[i];
if ((o & b) == 0) {
curr.splice(p++, 0, curr.splice(i, 1)[0]);
}
a.push([...curr]);
}
}
run();
}
function asyncloop(end, f) {
(function loop(i) {
const promise = new Promise((resolve, reject) => {
setTimeout(() => {
f(i);
resolve();
}, timeout);
}).then(() => end(i) || loop(i + 1));
})(0);
}
function generate(num) {
if (num) {
globalNum = num;
}
curr = [];
for (var i = 0; i < globalNum; i++) {
curr.push(getRandomInt(0, 500));
}
}
timeout = 0;
generate(20);
inPlaceRadix();
window.requestAnimationFrame(draw);
timeout = 10;