-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfarmCocoa.lua
More file actions
223 lines (197 loc) · 3.35 KB
/
farmCocoa.lua
File metadata and controls
223 lines (197 loc) · 3.35 KB
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
local arg = { ... }
height = 0
width = 0
delay = 0
rsCheck = false
waitNoticeInterval = 10 -- hopefully delay is a multiple of this
function toboolean(rsCheckString)
return not not rsCheckString
end
print("Recieved " .. #arg .. " arguments.")
if(#arg ~= 4) then
print("Usage: farmCocoa.lua <height> <width> <delay> <rsCheck>")
exit()
else
height = tonumber(arg[1])
width = tonumber(arg[2])
delay = tonumber(arg[3])
rsCheck = toboolean(arg[4])
end
local col = 0
local function turn(side)
if side == "left" then
turtle.turnLeft()
elseif side == "right" then
turtle.turnRight()
elseif side == "back" then
turtle.turnRight()
turtle.turnRight()
else
print("Turn direction not recognized!")
turtle.turnLeft()
turtle.turnLeft()
turtle.turnLeft()
turtle.turnLeft()
end
end
local function tryDig()
while turtle.detect() do
if turtle.dig() then
sleep(0.5)
else
return false
end
end
return true
end
local function tryDigUp()
while turtle.detectUp() do
if turtle.digUp() then
sleep(0.5)
else
return false
end
end
return true
end
local function tryDigDown()
while turtle.detectDown() do
if turtle.digDown() then
sleep(0.5)
else
return false
end
end
return true
end
local function tryUp()
while not turtle.up() do
if turtle.detectUp() then
if not tryDigUp() then
return false
end
elseif turtle.attackUp() then
else
sleep( 0.5 )
end
end
return true
end
local function tryDown()
while not turtle.down() do
if turtle.detectDown() then
if not tryDigDown() then
return false
end
elseif turtle.attackDown() then
else
sleep( 0.5 )
end
end
return true
end
local function tryForward()
while not turtle.forward() do
if turtle.detect() then
if not tryDig() then
return false
end
elseif turtle.attack() then
else
sleep( 0.5 )
end
end
return true
end
local function plant()
turtle.place()
end
local function farmHeight()
abort = false
for d=1, (height - 1) do
tryDig()
plant()
if(rsCheck) then
if(redstone.getInput("bottom")) then
print("Aborting: redstone signal received.")
abort = true
end
end
if((col % 2) == 1) then
tryUp()
else
tryDown()
end
end
return abort
end
local function nextRow()
turn("right")
tryForward()
turn("left")
end
local function farm()
print( "Farming..." )
col = 1
abort = false
for l = 1, width do
abort = farmHeight()
if(abort) then
print("Abort = true, ending farm().")
break
else
if col < width then
tryDig()
plant()
nextRow()
col = col + 1
end
if col == width then
tryDig()
plant()
end
end
end
end
local function raiseHeight()
for d=1, (height - 1) do
tryUp()
end
end
local function lowerHeight()
for d=1, (height - 1) do
tryDown()
end
end
local function unload()
if((col % 2) == 1) then
lowerHeight()
end
for n = 1, 16 do
turtle.select(n)
turtle.dropDown()
end
turtle.select(1)
end
local function moveWidth()
for r=1, (col - 1) do
tryForward()
end
end
local function reset()
turn("left")
moveWidth()
turn("right")
end
print("Waiting " .. delay .. " seconds...")
for w = 1, delay, waitNoticeInterval do
sleep(waitNoticeInterval)
timeLeft = delay - w
print(timeLeft .. "s left.")
end
print("Farming " .. height .. "x" .. width .. "...")
turtle.select(1)
farm()
unload()
reset()
print("Done.")