-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtf_scripting_api.lua
62 lines (51 loc) · 1.65 KB
/
tf_scripting_api.lua
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
local util = require("__turing-factorio__/util")
--- function to write a signal
---@param id any
---@param wire any
---@param signal any
function write_signal(id, wire, signal)
-- gets the entity with the given id
local entity = util.entity_from_hash(id)
-- if the entity is nil, return
if not entity then
return
end
-- output signal on the given wire
-- TODO: Change prototype type such that it has an output signal
-- (we need the correct control behavior)
end
-- function to read a signal
---@param id any
---@param wire any
---@param signal any
function read_signal(id, wire, signal)
-- gets the entity with the given id
local entity = util.entity_from_hash(id)
-- if the entity is nil, return
if not entity then
return
end
-- read signal on the given wire
local signals = entity.get_circuit_network(wire).signals
-- if the signal is nil, return
if not signals then
return
end
-- return the signal
return signals[signal]
end
-- function to write to stdout
---@param id any
---@param input string
function stdout(id, input)
if not global.fs[id] then
game.print("Error: terminal " .. id .. " does not exist.")
end
-- write input from cursor location
global.fs[id].output.stdout.contents = string.sub(global.fs[id].output.stdout.contents, 1,
global.fs[id].output.stdout.cursor) .. input ..
string.sub(global.fs[id].output.stdout.contents,
global.fs[id].output.stdout.cursor + 1)
-- add length of input to cursor
global.fs[id].output.stdout.cursor = global.fs[id].output.stdout.cursor + string.len(input)
end