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
|
'use strict'
const Operator = require('../operator')
function OperatorT (orca, x, y, passive) {
Operator.call(this, orca, x, y, 't', true)
this.name = 'track'
this.info = 'Reads an eastward operator with offset.'
this.ports.input.val = { x: 1, y: 0 }
this.ports.haste.len = { x: -1, y: 0 }
this.ports.haste.key = { x: -2, y: 0 }
this.ports.output = { x: 0, y: 1 }
this.haste = function () {
this.len = clamp(this.listen(this.ports.haste.len, true), 1, 16)
this.key = this.listen(this.ports.haste.key, true)
for (let x = 1; x <= this.len; x++) {
orca.lock(this.x + x, this.y)
}
this.ports.input.val = { x: (this.key % this.len) + 1, y: 0 }
}
this.run = function () {
const res = this.listen(this.ports.input.val)
this.output(`${res}`)
}
function clamp (v, min, max) { return v < min ? min : v > max ? max : v }
}
module.exports = OperatorT
|