Compare commits

..

No commits in common. "408fed1ad2ffaf59709ba7e4f1dbc641684c5df0" and "147dc403658a7c283326038603461c1cd9c6af05" have entirely different histories.

View File

@ -57,29 +57,9 @@ local function isFull(minEmpty)
return true
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 didPlace = false
local result, drop, dig, onComplete
-- Empty inventory
while isFull(minEmpty) do
if not didPlace then
@ -92,8 +72,7 @@ local function handleFullInv(minEmpty)
-- Try: place, check block above is empty or dig it, place
-- If all fails, print error, wait and repeat
result, drop, dig, onComplete = placeChest()
if not result then
if not (turtle.select(CHEST_SLOT) and (turtle.placeUp() or ((not turtle.inspectUp() or turtle.digUp()) and turtle.placeUp()))) then
Logger:error("Can't place chest :(")
os.sleep(5)
goto continue
@ -101,12 +80,11 @@ local function handleFullInv(minEmpty)
didPlace = true
end
assert(drop ~= nil, "Placed chest, but drop operation is nil")
for i=1,16 do
if i == CHEST_SLOT then
goto continue_SLOT
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!")
goto continue
end
@ -117,14 +95,10 @@ local function handleFullInv(minEmpty)
::continue::
end
assert(dig ~= nil, "Placed chest, but dig operation is nil")
if didPlace and CHEST_PICKUP then
turtle.select(CHEST_SLOT)
dig()
turtle.digUp()
end
assert(onComplete ~= nil, "Placed chest, but onComplete operation is nil")
onComplete()
end
local function dig(checkRefuel)
@ -132,13 +106,12 @@ local function dig(checkRefuel)
turtle.dig()
checkRefuel()
end
turtle.digUp()
turtle.digDown()
end
local function line(length, turn, checkRefuel)
turtle.digDown()
for _=2,length do
for i=2,length do
dig(checkRefuel)
end
turn()
@ -147,7 +120,7 @@ end
local function panel(width, length, leftFirst, checkRefuel, checkFullInv)
Logger:trace("Panel:", width, length)
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()
line(length, turn, 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))
end
Logger:trace("RectPrism:", depth, width, length)
for _=1,depth do
for i=1,depth do
panel(width, length, leftFirst, checkRefuel, checkFullInv)
for __=1,2 do
while not turtle.down() do
turtle.digDown()
checkRefuel()
end
while not turtle.down() do
turtle.digDown()
checkRefuel()
end
leftFirst = (not not leftFirst) ~= (width % 2 == 0)
end