-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmini.lua
170 lines (143 loc) · 4.79 KB
/
mini.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
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
157
158
159
160
161
162
163
164
165
166
167
168
169
170
VERBOSE = false
INVENTORIES = nil
DB_PATH = "/monitor.db" -- TODO: test
TAB = " "
-- TRANSMISSION DATA
MONITOR_NAME = nil
PROTOCOL_NAME = nil
HOST_NAME = nil
function printTable (t, key, value, indent)
-- t : table | The table to print
-- key : bool | If true, print the key
-- value : bool | If true, print value
for k,v in pairs(t) do
if key and value then
print(indent .. k .. " : " .. v)
elseif key then
print(indent .. k)
elseif value then
print(indent .. v)
end
end
end
function printNTable (t, key, value, indentLevel)
-- t : table | The table to print
-- key : bool | If true, print the key
-- value : bool | If true, print value
-- indentLevel : int | Level to start indentation, recommended is 1
indentLevel = indentLevel or 1
local indent = string.rep("-", indentLevel)
for k,v in pairs(t) do
if type(v) == "table" then
printNTable(v, key, value, indentLevel+1)
else
if key and value then
print(indent .. " " .. k .. " : " .. v)
elseif key then
print(indent .. " " .. k)
elseif value then
print(indent .. " " .. v)
end
end
end
end
function myPrint(str, endLine, indent)
endLine = endLine or "\n"
indent = indent or TAB
io.write(indent .. str .. endLine)
end
function myClearCursor(doClear, cursorX, cursorY)
-- doClear = doClear or false
cursorX = cursorX or 1
cursorY = cursorY or 1
term.setCursorPos(cursorX, cursorY)
if doClear == "all" then
term.clear()
elseif doClear == "line" then
term.clearLine()
end
end
function verbosePrint(str)
if VERBOSE then
print(str)
end
end
function setup ()
local function doFileSetup()
-- function constants
PERIPHERAL_NAME = "PERIPHERAL_NAME"
DISPLAY_NAME = "DISPLAY_NAME"
local handle = fs.open(DB_PATH)
MONITOR_NAME = handle.readLine()
PROTOCOL_NAME = handle.readLine()
HOST_NAME = handle.readLine()
local isInventory = false
local newInventory = nil
while true do
local line = handle.readLine()
-- TODO: test
if isInventory == false and line == nil then
break
elseif isInventory and line == nil then
error("File if corrupt!")
end
-- State Machine for reading database file
if isInventory == false and line == "INVENTORY" then
-- Begin reading inventory block -> read peripheral name
verbosePrint("Found inventory block.")
isInventory = PERIPHERAL_NAME
newInventory = {}
elseif isInventory == PERIPHERAL_NAME then
-- Read peripheral name -> read custom name
verbosePrint("Found peripheral name: " .. line)
newInventory[PERIPHERAL_NAME] = line
isInventory = DISPLAY_NAME
elseif isInventory == DISPLAY_NAME then
-- Read custom -> read item list
verbosePrint("Found custom name: " .. line)
newInventory[DISPLAY_NAME] = line
isInventory = 1
elseif line == "END INVENTORY" then
-- End inventory -> begin reading next inventory block
if newInventory[1] then
table.insert(INVENTORIES, newInventory)
verbosePrint("Inventory block added: " .. newInventory[PERIPHERAL_NAME])
else
verbosePrint("Inventory block was empty.")
end
isInventory = false
newInventory = {}
elseif isInventory then
-- read item list -> read item list
newInventory[isInventory] = {["ITEM"] = line, ["COUNT"] = -1}
verbosePrint("Added " .. line .. " to inventory " .. newInventory[PERIPHERAL_NAME])
isInventory = isInventory + 1
-- else
-- Unknown line
end
end -- while true
end -- doFileSetup
local function setupModem ()
end
-- file setup -> done
-- Modem detection
-- Inventory setup
-- check for file
-- if found, prompt for file setup
if pcall(doFileSetup) then
return
else
myPrint("File is corrupt.")
end
end
function main ()
if arg[1] == "-verbose" then
VERBOSE = true
print(VERBOSE)
end
-- inventories = getPeripheralInventory()
setup()
end
main()
print(string.format("Monitor: %s\nProtocol: %s\nHost: %s\nInventories:", MONITOR_NAME, PROTOCOL_NAME, HOST_NAME))
printNTable(INVENTORIES, true, true)