Advertisement
Guest User

Turtle Postman

a guest
Mar 7th, 2013
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 3.87 KB | None | 0 0
  1. args = {...}
  2.  
  3. local home = vector.new(0,0,0)
  4. local target = vector.new(0,0,0)
  5. local actualP = vector.new(0,0,0)
  6. local orientation = {h=0,t=0,a=0}
  7. local orientations = {"north", "east", "south", "west"}
  8. local zDiff = {-1, 0, 1, 0}
  9. local xDiff = {0, 1, 0, -1}
  10.  
  11. local function addposition(name,x,z,y,f)
  12. local fLocation = fs.open(name,"w")
  13.         fLocation.writeLine(x)
  14.         fLocation.writeLine(y)
  15.         fLocation.writeLine(z)
  16.         fLocation.writeLine(f)
  17. fLocation.close()
  18. end
  19.  
  20. local function getposition(name)
  21.         local fLocation = fs.open(name,"r")
  22.         if name=="home" then
  23.         home = vector.new(tonumber(fLocation.readLine()),tonumber(fLocation.readLine()),tonumber(fLocation.readLine()))
  24.         orientation.h = tonumber(fLocation.readLine())
  25.         orientation.a = orientation.h
  26.         else
  27.         target = vector.new(tonumber(fLocation.readLine()),tonumber(fLocation.readLine()),tonumber(fLocation.readLine()))
  28.         orientation.t = tonumber(fLocation.readLine())
  29.         end
  30.         fLocation.close()
  31. end
  32.  
  33. function left()
  34.     orientation.a = orientation.a - 1
  35.     orientation.a = (orientation.a - 1) % 4
  36.     orientation.a = orientation.a + 1
  37.     turtle.turnLeft()
  38. end
  39.  
  40. function right()
  41.     orientation.a = orientation.a - 1
  42.     orientation.a = (orientation.a + 1) % 4
  43.     orientation.a = orientation.a + 1
  44.     turtle.turnRight()
  45. end
  46.  
  47. function moveForward()
  48.     actualP.x = actualP.x + xDiff[orientation.a]  
  49.     actualP.z = actualP.z + zDiff[orientation.a]
  50.         moved = false
  51.     while not(moved) do
  52.     while turtle.detect() do
  53.     turtle.dig()
  54.     end
  55.         moved = turtle.forward()
  56.     end
  57. end
  58.  
  59. function moveUp()
  60.     actualP.y = actualP.y + 1
  61.     turtle.digUp()
  62.     moved = false
  63.     while not(moved) do
  64.     while turtle.detectUp() do
  65.        turtle.digUp()
  66.       end
  67.         moved = turtle.up()
  68.     end
  69. end
  70.  
  71. function moveDown()
  72.     actualP.y = actualP.y - 1
  73.     turtle.digDown()
  74.     moved = false
  75.     while not(moved) do
  76.         moved = turtle.down()
  77.     end
  78. end
  79.  
  80. function look(direction)
  81.     while direction ~= orientations[orientation.a] do
  82.         right()
  83.     end
  84. end
  85.  
  86. function goto(xTarget, zTarget, yTarget)
  87.     while yTarget < actualP.y do
  88.         moveDown()
  89.     end
  90.    
  91.     while yTarget > actualP.y do
  92.         moveUp()
  93.     end
  94.    
  95.     if xTarget < actualP.x then
  96.         look("west")
  97.         while xTarget < actualP.x do
  98.             moveForward()
  99.         end
  100.     end
  101.  
  102.     if xTarget > actualP.x then
  103.         look("east")
  104.         while xTarget > actualP.x do
  105.             moveForward()
  106.         end
  107.     end
  108.  
  109.     if zTarget < actualP.z then
  110.         look("north")
  111.         while zTarget < actualP.z do
  112.             moveForward()
  113.         end
  114.     end
  115.  
  116.     if zTarget > actualP.z then
  117.         look("south")
  118.         while zTarget > actualP.z do
  119.             moveForward()
  120.         end
  121.     end
  122. end
  123.  
  124. function deliver()
  125.     look(orientations[orientation.t])
  126.     for i = 1,16 do
  127.         turtle.select(i)
  128.         turtle.drop()
  129.     end
  130.     turtle.select(1)
  131.  
  132.     goto(home.x,home.z,home.y)
  133.     look(orientations[orientation.h])
  134. end
  135.  
  136. function checkargs()
  137. if #args == 1 and fs.exists(args[1])then
  138. return true
  139. elseif #args == 1 and not fs.exists(args[1])then
  140. print("Unknown Location")
  141. return false
  142. elseif #args > 1 and #args < 6 then
  143. print("not enough parameters")
  144. return false
  145. elseif not tonumber(args[3]) or not tonumber(args[4]) or not tonumber(args[5]) or not tonumber(args[6]) then
  146. print("Arguments 3 to 6 need to be numeric")
  147. return false
  148. else
  149. return true
  150. end
  151. end
  152.  
  153. print("use <mail> add <name> x z y f to add a position")
  154. print(" f = facing get it by pressing f3 ")
  155. print("use mail <name> to send the turtle to a place you added before")
  156.  
  157. checkargs()
  158. if checkargs() == true then
  159. if tostring(args[1]) == "add" then
  160.  if fs.exists(args[2]) then
  161.     print("Name already Exists")
  162.   else
  163.    addposition(args[2],args[3],args[4],args[5],args[6])
  164.    print("eingetragen")
  165.  end
  166. end
  167.  
  168. if #args == 1 then
  169. if fs.exists("home") then
  170. getposition("home")
  171. getposition(tostring(args[1]))
  172. actualP = vector.new(home.x,home.y,home.z)
  173. goto(target.x,target.z,target.y)
  174. deliver()
  175. else
  176. print("Set homeposition first")
  177. end
  178. end
  179. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement