summaryrefslogtreecommitdiffhomepage
path: root/assets/js
diff options
context:
space:
mode:
authorMarvin Borner2019-03-10 22:38:24 +0100
committerMarvin Borner2019-03-10 22:38:24 +0100
commit6fe593a196b9ddbcb0a961456730358a312c6ef4 (patch)
tree98a000c37f8f6017e0467fb34b65faa08c1c4ee7 /assets/js
parent33a8d09d606bbfa832676df87751821a0e0be314 (diff)
Added KV template and generator
Diffstat (limited to 'assets/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 :)');
+ }
+};