Compare commits
No commits in common. "408fed1ad2ffaf59709ba7e4f1dbc641684c5df0" and "147dc403658a7c283326038603461c1cd9c6af05" have entirely different histories.
408fed1ad2
...
147dc40365
47
quarry.lua
47
quarry.lua
@ -57,29 +57,9 @@ 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
|
||||||
@ -92,8 +72,7 @@ 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
|
||||||
result, drop, dig, onComplete = placeChest()
|
if not (turtle.select(CHEST_SLOT) and (turtle.placeUp() or ((not turtle.inspectUp() or turtle.digUp()) and turtle.placeUp()))) then
|
||||||
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
|
||||||
@ -101,12 +80,11 @@ 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 drop()) then
|
if turtle.getItemCount(i) > 0 and not (turtle.select(i) and turtle.dropUp()) then
|
||||||
Logger:error("Couldn't drop items into chest!")
|
Logger:error("Couldn't drop items into chest!")
|
||||||
goto continue
|
goto continue
|
||||||
end
|
end
|
||||||
@ -117,14 +95,10 @@ 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)
|
||||||
dig()
|
turtle.digUp()
|
||||||
end
|
end
|
||||||
|
|
||||||
assert(onComplete ~= nil, "Placed chest, but onComplete operation is nil")
|
|
||||||
onComplete()
|
|
||||||
end
|
end
|
||||||
|
|
||||||
local function dig(checkRefuel)
|
local function dig(checkRefuel)
|
||||||
@ -132,13 +106,12 @@ 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 _=2,length do
|
for i=2,length do
|
||||||
dig(checkRefuel)
|
dig(checkRefuel)
|
||||||
end
|
end
|
||||||
turn()
|
turn()
|
||||||
@ -147,7 +120,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 _=2,width do
|
for i=2,width do
|
||||||
checkFullInv()
|
checkFullInv()
|
||||||
line(length, turn, checkRefuel)
|
line(length, turn, checkRefuel)
|
||||||
dig(checkRefuel)
|
dig(checkRefuel)
|
||||||
@ -168,13 +141,11 @@ 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 _=1,depth do
|
for i=1,depth do
|
||||||
panel(width, length, leftFirst, checkRefuel, checkFullInv)
|
panel(width, length, leftFirst, checkRefuel, checkFullInv)
|
||||||
for __=1,2 do
|
while not turtle.down() do
|
||||||
while not turtle.down() do
|
turtle.digDown()
|
||||||
turtle.digDown()
|
checkRefuel()
|
||||||
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