1
0
mirror of https://github.com/kepler155c/opus synced 2024-09-27 14:48:14 +00:00
opus/sys/autorun/gps.lua

44 lines
765 B
Lua
Raw Normal View History

2018-01-14 23:28:23 +00:00
local modem = _G.device.wireless_modem
local turtle = _G.turtle
2016-12-11 19:24:52 +00:00
2018-01-14 23:28:23 +00:00
if turtle and modem then
2018-01-24 22:39:38 +00:00
local s, m = turtle.run(function()
_G.requireInjector(_ENV)
local Config = require('config')
local config = {
destructive = false,
}
Config.load('gps', config)
if config.home then
local s = turtle.enableGPS(2)
if not s then
s = turtle.enableGPS(2)
end
if not s and config.destructive then
turtle.setPolicy('turtleSafe')
s = turtle.enableGPS(2)
end
if not s then
error('Unable to get GPS position')
end
if config.destructive then
turtle.setPolicy('turtleSafe')
end
if not turtle.pathfind(config.home) then
error('Failed to return home')
end
end
end)
if not s and m then
error(m)
end
2016-12-11 19:24:52 +00:00
end