1
0
mirror of https://github.com/kepler155c/opus synced 2025-10-21 02:37:48 +00:00

begin moving turtle specific code from opus into turtle package

This commit is contained in:
kepler155c@gmail.com
2019-02-18 02:56:28 -05:00
parent a36051bf78
commit 440b829f62
7 changed files with 33 additions and 162 deletions

View File

@@ -2,7 +2,7 @@ if not _G.turtle then
return
end
local Pathing = require('turtle.pathfind')
local Pathing = require('pathfind')
local GPS = require('gps')
local Point = require('point')
local synchronized = require('sync').sync
@@ -661,7 +661,7 @@ end
-- go backwards - turning around if necessary to fight mobs / break blocks
function turtle.goback()
local hi = headings[turtle.point.heading]
return turtle._goto({
return turtle.go({
x = turtle.point.x - hi.xd,
y = turtle.point.y,
z = turtle.point.z - hi.zd,
@@ -670,8 +670,8 @@ function turtle.goback()
end
function turtle.gotoYfirst(pt)
if turtle._gotoY(pt.y) then
if turtle._goto(pt) then
if turtle.gotoY(pt.y) then
if turtle.go(pt) then
turtle.setHeading(pt.heading)
return true
end
@@ -679,7 +679,7 @@ function turtle.gotoYfirst(pt)
end
function turtle.gotoYlast(pt)
if turtle._goto({ x = pt.x, z = pt.z, heading = pt.heading }) then
if turtle.go({ x = pt.x, z = pt.z, heading = pt.heading }) then
if turtle.gotoY(pt.y) then
turtle.setHeading(pt.heading)
return true
@@ -687,8 +687,18 @@ function turtle.gotoYlast(pt)
end
end
function turtle._goto(pt)
local dx, dy, dz, dh = pt.x, pt.y, pt.z, pt.heading
function turtle.go(pt)
if not pt.x and not pt.z and pt.y then
if turtle.gotoY(pt.y) then
turtle.setHeading(pt.heading)
return true
end
return false, 'Failed to reach location'
end
local dx = pt.x or turtle.point.x
local dz = pt.z or turtle.point.z
local dy, dh = pt.y, pt.heading
if not turtle.gotoSingleTurn(dx, dy, dz, dh) then
if not gotoMultiTurn(dx, dy, dz) then
return false, 'Failed to reach location'
@@ -699,7 +709,9 @@ function turtle._goto(pt)
end
-- avoid lint errors
turtle['goto'] = turtle._goto
-- deprecated
turtle['goto'] = turtle.go
turtle['_goto'] = turtle.go
function turtle.gotoX(dx)
turtle.headTowardsX(dx)
@@ -1026,7 +1038,7 @@ function turtle.setMovementStrategy(strategy)
if strategy == 'pathing' then
movementStrategy = turtle.pathfind
elseif strategy == 'goto' then
movementStrategy = turtle._goto
movementStrategy = turtle.go
else
error('Invalid movement strategy')
end

View File

@@ -109,7 +109,7 @@ local function xprun(env, path, ...)
setmetatable(env, { __index = _G })
local fn, m = loadfile(path, env)
if fn then
return pcall(fn, ...)
return trace(fn, ...)
end
return fn, m
end
@@ -125,12 +125,12 @@ function multishell.openTab(tab)
local routine = kernel.newRoutine(tab)
routine.co = coroutine.create(function()
local result, err
local result, err, stacktrace
if tab.fn then
result, err = Util.runFunction(routine.env, tab.fn, table.unpack(tab.args or { } ))
elseif tab.path then
result, err = xprun(routine.env, tab.path, table.unpack(tab.args or { } ))
result, err, stacktrace = xprun(routine.env, tab.path, table.unpack(tab.args or { } ))
else
err = 'multishell: invalid tab'
end
@@ -138,6 +138,9 @@ function multishell.openTab(tab)
if not result and err and err ~= 'Terminated' then
if err then
printError(tostring(err))
if stacktrace then -- alternatively log stack to _debug
print(stacktrace)
end
end
print('\nPress enter to close')
routine.isDead = true