summaryrefslogtreecommitdiffhomepage
path: root/assets/js/generator.js
diff options
context:
space:
mode:
Diffstat (limited to 'assets/js/generator.js')
-rw-r--r--assets/js/generator.js24
1 files changed, 24 insertions, 0 deletions
diff --git a/assets/js/generator.js b/assets/js/generator.js
new file mode 100644
index 0000000..eabe108
--- /dev/null
+++ b/assets/js/generator.js
@@ -0,0 +1,24 @@
+document.getElementById('minify').onclick = () => {
+ let a, b, c, d;
+ const input = document.getElementById('input').value;
+
+ document.getElementById('log').innerText = '';
+ document.getElementById('log').append('LOG\ndcba Z ID\n');
+
+ try {
+ for (let i = 0; i < 16; i++) {
+ const currentBinary = (i >>> 0).toString(2);
+ // fill binary number with leading zeros until it is 4 digits long
+ const filledBinary = currentBinary.length >= 4 ? currentBinary : new Array(4 - currentBinary.length + 1).join('0') + currentBinary;
+ a = filledBinary[3] === '1';
+ b = filledBinary[2] === '1';
+ c = filledBinary[1] === '1';
+ d = filledBinary[0] === '1';
+ document.getElementById('log').append(`${filledBinary} ${eval(input) ? '1' : '0'} ${document.getElementById(i + 1).getAttribute('data-id')}\n`);
+ document.getElementById(i + 1).innerText = eval(input) ? '1' : '0';
+ }
+ } catch (err) {
+ console.error(err);
+ alert('Oh, da ist wohl was schiefgelaufen, bitte probieren Sie es noch einmal :)');
+ }
+};