Compare commits
2 Commits
147dc40365
...
408fed1ad2
Author | SHA1 | Date | |
---|---|---|---|
![]() |
408fed1ad2 | ||
![]() |
d80ff4e679 |
47
quarry.lua
47
quarry.lua
@ -57,9 +57,29 @@ local function isFull(minEmpty)
|
|||||||
return true
|
return true
|
||||||
end
|
end
|
||||||
|
|
||||||
|
local function placeChest()
|
||||||
|
if not turtle.select(CHEST_SLOT) then
|
||||||
|
Logger:error("Cannot select chest slot", CHEST_SLOT)
|
||||||
|
return false, nil, nil, nil
|
||||||
|
end
|
||||||
|
|
||||||
|
if turtle.placeUp() or (turtle.digUp() and turtle.placeUp()) then
|
||||||
|
return true, turtle.dropUp, turtle.digUp, function() end
|
||||||
|
end
|
||||||
|
|
||||||
|
if turtle.turnLeft() and turtle.turnLeft() and (turtle.place() or (turtle.dig() and turtle.place())) then
|
||||||
|
return true, turtle.drop, turtle.dig, function()
|
||||||
|
turtle.turnRight()
|
||||||
|
turtle.turnRight()
|
||||||
|
end
|
||||||
|
end
|
||||||
|
return false, nil, nil, nil
|
||||||
|
end
|
||||||
|
|
||||||
local function handleFullInv(minEmpty)
|
local function handleFullInv(minEmpty)
|
||||||
local didPlace = false
|
local didPlace = false
|
||||||
|
|
||||||
|
local result, drop, dig, onComplete
|
||||||
-- Empty inventory
|
-- Empty inventory
|
||||||
while isFull(minEmpty) do
|
while isFull(minEmpty) do
|
||||||
if not didPlace then
|
if not didPlace then
|
||||||
@ -72,7 +92,8 @@ local function handleFullInv(minEmpty)
|
|||||||
|
|
||||||
-- Try: place, check block above is empty or dig it, place
|
-- Try: place, check block above is empty or dig it, place
|
||||||
-- If all fails, print error, wait and repeat
|
-- If all fails, print error, wait and repeat
|
||||||
if not (turtle.select(CHEST_SLOT) and (turtle.placeUp() or ((not turtle.inspectUp() or turtle.digUp()) and turtle.placeUp()))) then
|
result, drop, dig, onComplete = placeChest()
|
||||||
|
if not result then
|
||||||
Logger:error("Can't place chest :(")
|
Logger:error("Can't place chest :(")
|
||||||
os.sleep(5)
|
os.sleep(5)
|
||||||
goto continue
|
goto continue
|
||||||
@ -80,11 +101,12 @@ local function handleFullInv(minEmpty)
|
|||||||
didPlace = true
|
didPlace = true
|
||||||
end
|
end
|
||||||
|
|
||||||
|
assert(drop ~= nil, "Placed chest, but drop operation is nil")
|
||||||
for i=1,16 do
|
for i=1,16 do
|
||||||
if i == CHEST_SLOT then
|
if i == CHEST_SLOT then
|
||||||
goto continue_SLOT
|
goto continue_SLOT
|
||||||
end
|
end
|
||||||
if turtle.getItemCount(i) > 0 and not (turtle.select(i) and turtle.dropUp()) then
|
if turtle.getItemCount(i) > 0 and not (turtle.select(i) and drop()) then
|
||||||
Logger:error("Couldn't drop items into chest!")
|
Logger:error("Couldn't drop items into chest!")
|
||||||
goto continue
|
goto continue
|
||||||
end
|
end
|
||||||
@ -95,10 +117,14 @@ local function handleFullInv(minEmpty)
|
|||||||
::continue::
|
::continue::
|
||||||
end
|
end
|
||||||
|
|
||||||
|
assert(dig ~= nil, "Placed chest, but dig operation is nil")
|
||||||
if didPlace and CHEST_PICKUP then
|
if didPlace and CHEST_PICKUP then
|
||||||
turtle.select(CHEST_SLOT)
|
turtle.select(CHEST_SLOT)
|
||||||
turtle.digUp()
|
dig()
|
||||||
end
|
end
|
||||||
|
|
||||||
|
assert(onComplete ~= nil, "Placed chest, but onComplete operation is nil")
|
||||||
|
onComplete()
|
||||||
end
|
end
|
||||||
|
|
||||||
local function dig(checkRefuel)
|
local function dig(checkRefuel)
|
||||||
@ -106,12 +132,13 @@ local function dig(checkRefuel)
|
|||||||
turtle.dig()
|
turtle.dig()
|
||||||
checkRefuel()
|
checkRefuel()
|
||||||
end
|
end
|
||||||
|
turtle.digUp()
|
||||||
turtle.digDown()
|
turtle.digDown()
|
||||||
end
|
end
|
||||||
|
|
||||||
local function line(length, turn, checkRefuel)
|
local function line(length, turn, checkRefuel)
|
||||||
turtle.digDown()
|
turtle.digDown()
|
||||||
for i=2,length do
|
for _=2,length do
|
||||||
dig(checkRefuel)
|
dig(checkRefuel)
|
||||||
end
|
end
|
||||||
turn()
|
turn()
|
||||||
@ -120,7 +147,7 @@ end
|
|||||||
local function panel(width, length, leftFirst, checkRefuel, checkFullInv)
|
local function panel(width, length, leftFirst, checkRefuel, checkFullInv)
|
||||||
Logger:trace("Panel:", width, length)
|
Logger:trace("Panel:", width, length)
|
||||||
local turn, otherTurn = leftFirst and turtle.turnLeft or turtle.turnRight, leftFirst and turtle.turnRight or turtle.turnLeft
|
local turn, otherTurn = leftFirst and turtle.turnLeft or turtle.turnRight, leftFirst and turtle.turnRight or turtle.turnLeft
|
||||||
for i=2,width do
|
for _=2,width do
|
||||||
checkFullInv()
|
checkFullInv()
|
||||||
line(length, turn, checkRefuel)
|
line(length, turn, checkRefuel)
|
||||||
dig(checkRefuel)
|
dig(checkRefuel)
|
||||||
@ -141,11 +168,13 @@ local function rectPrism(depth, width, length, leftFirst)
|
|||||||
Logger:debug("Handling full inventory with target:", invEmptyTarget, " handled:", handleFullInv(invEmptyTarget))
|
Logger:debug("Handling full inventory with target:", invEmptyTarget, " handled:", handleFullInv(invEmptyTarget))
|
||||||
end
|
end
|
||||||
Logger:trace("RectPrism:", depth, width, length)
|
Logger:trace("RectPrism:", depth, width, length)
|
||||||
for i=1,depth do
|
for _=1,depth do
|
||||||
panel(width, length, leftFirst, checkRefuel, checkFullInv)
|
panel(width, length, leftFirst, checkRefuel, checkFullInv)
|
||||||
while not turtle.down() do
|
for __=1,2 do
|
||||||
turtle.digDown()
|
while not turtle.down() do
|
||||||
checkRefuel()
|
turtle.digDown()
|
||||||
|
checkRefuel()
|
||||||
|
end
|
||||||
end
|
end
|
||||||
leftFirst = (not not leftFirst) ~= (width % 2 == 0)
|
leftFirst = (not not leftFirst) ~= (width % 2 == 0)
|
||||||
end
|
end
|
||||||
|
Loading…
x
Reference in New Issue
Block a user