-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathkeepstockRS.lua
82 lines (74 loc) · 2.49 KB
/
keepstockRS.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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
-- Portions of code adapted from https://gist.github.com/Seniorendi/26bd8ecaec400146f2e38790faceead8
local bridge = peripheral.find("rsBridge")
if bridge == nil then error("rsBridge not found") end
local monitor = peripheral.find("monitor")
if monitor == nil then error("monitor not found") end
monTitle = "RS FE Use:".. bridge.getEnergyUsage().. " Keep in Stock:"
-- Format: [index] = {"Anything","mod:itemname",minimum amount}
-- Example: [1] = {"Oak Planks","minecraft:oak_planks",128}
reqItems = {
[1] = {"Oak Planks","minecraft:oak_planks",128},
[2] = {"Glass","minecraft:glass",128}
}
function craftItems(name, reqName, reqCount)
craftable = bridge.listCraftableItems()
for i = 1, #craftable do
craftableCount = tostring(craftable[i].amount)
craftableName = craftable[i].name
if craftableName == reqName then
row = row+1
CenterT(name, row+1, colors.black, colors.lightGray, "left")
if tonumber(craftableCount) <= tonumber(reqCount)-1 then
CenterT(craftableCount.. "/".. reqCount, row+1, colors.black, colors.red, "right")
if bridge.isItemCrafting(reqName) == false then
bridge.craftItem(reqName,reqCount-craftableCount)
print("Crafting ".. reqCount-craftableCount .. " ".. name)
end
else
CenterT(craftableCount.. "/".. reqCount, row+1, colors.black, colors.green, "right")
end
end
end
end
-- Clears the screen and writes the title
function clearScreen()
monitor.setBackgroundColor(colors.black)
monitor.clear()
monitor.setCursorPos(1,1)
CenterT(monTitle, 1, colors.black, colors.white, "head")
end
-- Function to write text to monitor easier
function CenterT(text, line, txtback, txtcolor, pos)
monX,monY = monitor.getSize()
monitor.setBackgroundColor(txtback)
monitor.setTextColor(txtcolor)
length = string.len(text)
dif = math.floor(monX-length)
x = math.floor(dif/2)
if pos == "head" then
monitor.setCursorPos(x+1, line)
monitor.write(text)
elseif pos == "left" then
monitor.setCursorPos(2, line)
monitor.write(text)
elseif pos == "right" then
monitor.setCursorPos(monX-length, line)
monitor.write(text)
end
end
-- Runs craftItems() with each item in reqItems
function checkTable()
row = 1
clearScreen()
for i = 1, #reqItems do
name = reqItems[i][1]
reqName = reqItems[i][2]
reqCount = reqItems[i][3]
craftItems(name, reqName, reqCount)
end
end
while true do
checkTable()
-- CheckTable runs every 30 seconds, you can increase that.
sleep(3)
end