summaryrefslogtreecommitdiffstats
path: root/site/main.mjs
blob: 3add1fe3fa1978f25b9fc0c3d2652543e862a93e (plain)
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
import init, { make_vm } from './wasm/automathon.js';

function wordlistElts(wordlist) {
    return wordlist.map((bc, i) => {
        const bcElt = document.createElement('x-bytecode');
        bcElt.setAttribute('x-index', i);
        for (let i = 0; i < bc.len(); i++) {
            const opElt = document.createElement('x-op');
            opElt.setAttribute('x-index', i);
            opElt.textContent = bc.at(i);
            bcElt.appendChild(opElt);
        }
        return bcElt;
    })
}

function selectorForIP(word, offset) {
    return `#wordlist x-bytecode[x-index='${word}'] x-op[x-index='${offset}']`;
}

function initWordlist() {
    const sel = selectorForIP(0, 0);
    document.querySelectorAll(sel).forEach(e => {
        e.classList.add('ip')
    });
}

function renderStack(vm) {
    document.querySelectorAll('#stack').forEach(e => {
        while (e.lastChild) {
            e.removeChild(e.lastChild);
        }
        vm.stack().reverse()
            .forEach(datum => {
                const elt = document.createElement('li');
                elt.textContent = datum;
                e.appendChild(elt);
                return elt;
            });
    });
}

function renderCallStack(vm) {
    document.querySelectorAll('#callstack').forEach(e => {
        while (e.lastChild) {
            e.removeChild(e.lastChild);
        }
        vm.callstack().reverse()
            .forEach(datum => {
                const elt = document.createElement('li');
                elt.textContent = `${datum.word}@${datum.offset}`;
                e.appendChild(elt);
                return elt;
            });
    });
}

const highRange = new Range();
const highlight = new Highlight(highRange);
CSS.highlights.set('exec', highlight);

function renderTextHighlight(vm) {
    const ip = vm.ip();
    const anno = vm.annotation_at(ip)
    const src = document.querySelector('#src');

    // this assumes the text node is the first child, maybe it isn't?
    highRange.setStart(src.childNodes[0], anno.start);
    highRange.setEnd(src.childNodes[0], anno.end);
}

function tick(vm) {
    if (!vm.tick()) {
        vm.reset_ip();
    }

    const { word, offset } = vm.ip();
    document.querySelectorAll('#wordlist .ip').forEach(e => e.classList.remove('ip'));
    const sel = selectorForIP(word, offset);
    document.querySelectorAll(sel).forEach(e => {
        e.classList.add('ip');
    });
    renderStack(vm);
    renderCallStack(vm);
    renderTextHighlight(vm);
}

async function loaded() {
    console.debug('running init');
    const mod = await init();
    console.debug('init done', mod);
    const vm = make_vm();

    document.querySelector('#compile').onclick = e => {
        console.debug('compile clicked', e);

        let wordlistContainer = document.querySelector('#wordlist');
        while (wordlistContainer.lastChild) {
            console.debug('removing child', wordlistContainer.lastChild)
            wordlistContainer.removeChild(wordlistContainer.lastChild);
        }

        // always add a newline until i decide what to do with the parser.
        const text = document.querySelector('#src').textContent + '\n';
        console.debug('compiling', text);
        const start = performance.now();
        const res = vm.compile(text);
        const end = performance.now();
        console.info(`compile took ${end-start} ms`);
        if (res) {
            const wordlist = wordlistElts(vm.wordlist());
            wordlist.forEach(elt => wordlistContainer.appendChild(elt));
            initWordlist();
            renderStack(vm);
            renderCallStack(vm);
            renderTextHighlight(vm);
        }
    };
    document.querySelector('#tick').onclick = e => {
        console.debug('tick clicked', e);
        tick(vm);
    };
    document.querySelector('#bench').onclick = e => {
        console.debug('bench clicked', e);
        const start = performance.now();
        let tickCount = 0;
        for (let i = 0; i < 1_000_000; i++) {
            tickCount += vm.run();
        }
        const end = performance.now();
        console.info(`run took ${end-start} ms for ${tickCount} ticks (${(end-start)/tickCount * 1_000_000} ns/tick).`);
        console.info('result', vm.stack());
    };

    let blinkenRun = false;
    document.querySelector('#blinken').onclick = e => {
        console.debug('blinken clicked', e);
        blinkenRun = !blinkenRun;
        if (blinkenRun) {
            e.target.textContent = 'haltenblinken';
        } else {
            e.target.textContent = 'blinken';
        }
        const frameRate = 6;
        const onTimeout = _ => {
            if (blinkenRun) {
                tick(vm);
                setTimeout(onTimeout, 1_000 / frameRate);
            }
        }
        setTimeout(onTimeout);
    }
    window.vm = vm;
}

document.addEventListener('DOMContentLoaded', loaded);