-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcontrol.lua
444 lines (382 loc) · 12.5 KB
/
control.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
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
-- Author: Xoandbit
os.loadAPI("lain")
data={}
-- CONFIG --
basechannel=666 -- Modem channel where control computer listens for messages
timeout = 2 -- TIME COUNTER TIMER
jobtimeout = 2
modemSide= "right"
monitorSide = "back"
treeGrowWaitTimeInMinutes = 10
-- CONFIG END --
treeChopTime = treeGrowWaitTimeInMinutes*60/timeout
-- Function for screen with executed job output
function TurtleTreeFarmScreen(parentscreen)
if (parentscreen==nil) then return 0 end
local w,h=parentscreen.getSize()
local screen = window.create(parentscreen, 1,1,w,h,true )
while (data.turtle==nil) do sleep(1) end
while (true) do
lain.Decorate(screen)
lain.WriteInLine(screen,5,1,{" - Tree Farm - time",data.time,"*",timeout})
local i=3
for id,bot in pairs(data.turtle) do
if (bot.lastping==nil) then bot.lastping=0 end
lain.WriteInLine(screen,3,i,{id,bot.robot.state,data.time-bot.lastping,
bot.robot.dirt,bot.robot.torch,bot.robot.sapling,bot.robot.fuel})
i=i+1
end
i=3
j=40
for id,job in pairs(data.jobqueue) do
if (job.exec) then
lain.WriteInLine(screen,j,i,{"#",job.exec,jobTypeName[job.jobt],job.time,job.asked})
i=i+1
if (i>=h) then
i=3
j=j+20
end
end
end
sleep(4)
end
end
-- Main treefarm control function
function TreeFarmControl(parentscreen, modem)
modem.closeAll()
if (parentscreen==nil) then
parentscreen=term.current()
end
local w,h=parentscreen.getSize()
local screen = window.create(parentscreen, 3,3,w-3,h-3,true )
data = lain.readData("base.log")
if (data==nil) then
data={}
-- initializing farm
data.farm = {}
data.farm.x = lain.ReadUserInput(
screen, "Tree farm starting block x?",true)
data.farm.y = lain.ReadUserInput(
screen, "Tree farm starting block y?",true)
data.farm.z = lain.ReadUserInput(
screen, "Tree farm starting block z?",true)
data.farm.f = lain.ReadUserInput(
screen, "Tree farm starting block f?",true)
data.farm.pLength = lain.ReadUserInput(
screen, "Farm sector count forward?",true)
data.farm.nLength = -lain.ReadUserInput(
screen, "Farm sector count back?",true)
data.farm.pWidth = lain.ReadUserInput(
screen, "Farm sector count left?",true)
data.farm.nWidth = - lain.ReadUserInput(
screen, "Farm sector count right?",true)
data.jcnt=0
data.jobqueue={}
data.tcnt=0
data.turtle = {}
data.time = 0
-- Initializing chest location
data.saplingcLocal = {
x=2,
y=0,
z=1
}
data.fuelcLocal = {
x=4,
y=0,
z=1
}
data.woodcLocal = {
x=0,
y=0,
z=1
}
data.torchcLocal = {
x=6,
y=0,
z=1
}
data.dirtcLocal = {
x=8,
y=0,
z=1
}
data.saplingc=lain.taddCord(data.farm, data.saplingcLocal)
data.fuelc=lain.taddCord(data.farm, data.fuelcLocal)
data.woodc=lain.taddCord(data.farm, data.woodcLocal)
data.torchc=lain.taddCord(data.farm, data.torchcLocal)
data.dirtc=lain.taddCord(data.farm, data.dirtcLocal)
-- Creating job list (jobs to do)
for i=data.farm.nWidth,data.farm.pWidth do
for j=data.farm.nLength,data.farm.pLength do
print("A55 ",i," ",j)
if (j~=0) then -- BECAUSE 0 row dont exist
local job1 = {
id=data.jcnt,
x=(i*3),
y=1,
z=(j*4),
jobt=jobType.Dirt,
nextjob=jobType.Sapling,
time=data.time
}
data.jcnt = data.jcnt+1
table.insert(data.jobqueue, job1)
local job2 = {
id=data.jcnt,
x=(i*3),
y=1,
z=(j*4) + ((j>0) and (1) or (-1)),
jobt=jobType.Dirt,
nextjob=jobType.Torch,
time=data.time
}
data.jcnt = data.jcnt+1
table.insert(data.jobqueue, job2)
local job3 = {
id=data.jcnt,
x=(i*3),
y=1,
z=(j*4) + ((j>0) and (2) or (-2)),
jobt=jobType.Dirt,
nextjob=jobType.Sapling,
time=data.time
}
data.jcnt = data.jcnt+1
table.insert(data.jobqueue, job3)
end
end
end
print("saving installation data")
lain.writeData("base.log",data)
print("RESTARTING")
sleep(1)
os.reboot()
end
modem.open(basechannel) -- treefarm main channel
-- Cleaning job requests timers from previous restart
for it,job in pairs(data.jobqueue) do
if (job.exec~=true and job.timeout~=nil) then
job.timeout=nil
data.turtle[job.asked].notfree=false
break
end
end
--Counter for timers
local counter=os.startTimer(timeout)
print("starting tree farm")
local ev = {}
while (true) do
if (ev[1]=="timer") then
if (ev[2]==counter) then
data.time = data.time +1
counter = os.startTimer(timeout)
else
-- CHECK IF WORK REQUEST WASN'T ACCEPTED
for it,job in pairs(data.jobqueue) do
if (job.exec~=true and job.timeout==ev[2]) then
job.timeout=nil
data.turtle[job.asked].notfree=false
break
end
end
end
elseif (ev[1]=="modem_message") then
local message = textutils.unserialize( ev[5] )
if (message~=nil and message.request~=nil) then
-- regular update about turtle state
if (message.request=="ping") then
-- print("PING MESSAGE ",message.ID)
if (data.turtle[message.ID]~=nil) then
data.turtle[message.ID].robot=message.robot;
data.turtle[message.ID].lastping=data.time
data.turtle[message.ID].responseCh=ev[4]
if (message.robot.state==1) then -- Robot is FREE
--Trying to search for job
local robo=data.turtle[message.ID]
if (robo~=nil and robo.notfree~=true
and robo.robot~=nil
and robo.robot.state==1) then
local minjob=nil
for it, job in pairs(data.jobqueue) do
job.cord=lain.taddCord(data.farm, job)
if (job.exec~=true and job.timeout==nil
and data.time>=job.time) then
-- Check if robot inventory has requested materials
if (job.jobt==jobType.Dirt and robo.robot.dirt>0)
or (job.jobt==jobType.Torch and robo.robot.torch>0)
or (job.jobt==jobType.Sapling and robo.robot.sapling>0)
or (job.jobt==jobType.Tree) then
if (minjob==nil
or lain.tdistance(robo.robot,job.cord)
<lain.tdistance(minjob.cord,robo.robot)) then
minjob=job
end
end
end
end
if (minjob~=nil) then -- SEND JOB REQUEST
minjob.timeout=os.startTimer(jobtimeout)
local response = {
target = robo.ID,
request = "job",
job = minjob,
}
robo.notfree=true
minjob.asked=robo.ID
print("Sending job request ",jobTypeName[minjob.jobt]," to ",response.target)
modem.transmit(
robo.responseCh,basechannel,textutils.serialize(response))
end
end
end
end
elseif (message.request=="startup") then
print("STARTUP request")
if (data.turtle[message.ID]==nil) then
--NEED TO CALCULATE TURTLE HOME position
data.turtle[message.ID]={}
data.turtle[message.ID].homeLocal={
x=data.tcnt,
y=0,
z=-2,
}
data.turtle[message.ID].ID = message.ID
data.turtle[message.ID].robot = {}
data.tcnt = data.tcnt + 1
data.turtle[message.ID].home=lain.taddCord(
data.farm, data.turtle[message.ID].homeLocal)
end
data.turtle[message.ID].robot.x=message.robot.x
data.turtle[message.ID].robot.y=message.robot.y
data.turtle[message.ID].robot.z=message.robot.z
data.turtle[message.ID].robot.f=message.robot.f
data.turtle[message.ID].responseCh=ev[4]
data.turtle[message.ID].robot.state=message.robot.state
local response = {
target = message.ID,
request = "startup",
home = data.turtle[message.ID].home,
saplingc = data.saplingc,
fuelc = data.fuelc,
woodc = data.woodc,
torchc = data.torchc,
dirtc = data.dirtc
}
modem.transmit(
data.turtle[message.ID].responseCh,basechannel,
textutils.serialize(response))
-- TURTLE IS GOING TO DO A JOB
elseif (message.request=="accepted") then
print("Job accept request from ",message.ID)
local accept_fail=true
for it,job in pairs(data.jobqueue) do
if (job.id == message.jobid and job.exec~=true) then
data.turtle[message.ID].notfree=false
job.exec=true
job.timeout=nil
local response = {
target = message.ID,
request = "accepted_response",
}
modem.transmit(data.turtle[message.ID].responseCh,basechannel,
textutils.serialize(response))
accept_fail = false
end
end
if (accept_fail) then
local response = {
target = message.ID,
request = "accepted_response_fail",
}
modem.transmit(data.turtle[message.ID].responseCh,basechannel,
textutils.serialize(response))
end
elseif (message.request=="job_done") then -- TURTLE FINISHED JOB
print("job done request from ",message.ID)
local response = {
target = message.ID,
request = "job_done_response",
}
modem.transmit(data.turtle[message.ID].responseCh,basechannel,
textutils.serialize(response))
for it, job in pairs(data.jobqueue) do
if (job.id==message.jobid) then
data.turtle[message.ID].notfree=false
if (job.jobt == jobType.Tree) then
if (message.jobstatus == "DONE" ) then
job.exec=false
job.jobt=jobType.Sapling
job.time=data.time
job.timeout=nil
elseif (message.jobstatus == "NOT GROWN") then
job.exec=false
job.time=data.time+(treeChopTime)
job.timeout=nil
end
elseif (job.jobt == jobType.Torch) then
if (message.jobstatus == "TORCH") then
table.remove(data.jobqueue,it)
end
elseif (job.jobt == jobType.Dirt) then
if (message.jobstatus == "DIRT") then
job.exec=false
job.time=data.time
job.y= job.y + 1
job.jobt = job.nextjob
job.timeout=nil
end
elseif (job.jobt == jobType.Sapling) then
if (message.jobstatus == "SAPLING") then
job.exec = false
job.time=data.time + treeChopTime
job.jobt = jobType.Tree
job.timeout=nil
end
end
break
end
end
end
end
end
lain.writeData("base.log",data)
ev = { os.pullEventRaw()}
end
end
--[[
--
--
-- Start of main program
--
--
--
--]]
jobType={
Dirt=5,
Sapling=6,
Torch=4,
Tree=3
}
jobTypeName={
[jobType.Dirt] = "Dirt",
[jobType.Sapling] = "Sapling",
[ jobType.Torch ] = "Torch",
[ jobType.Tree ] = "ChopTree",
}
monitor = peripheral.wrap(monitorSide)
if (monitor~=nil) then
monitor.setTextScale(0.5)
end
modem = peripheral.wrap(modemSide)
if (modem==nil) then
print("Modem must be attached at the right side of computer")
exit()
end
--term.redirect(peripheral.wrap("top"))
term.clear()
ccontrol = lain.CoroutineControl:new()
--ccontrol:addCoroutine(lain.DisplayEvents, {monitor})
ccontrol:addCoroutine(TreeFarmControl, {term.current(), modem})
ccontrol:addCoroutine(TurtleTreeFarmScreen, {monitor})
ccontrol:loop()