Advertisement
Guest User

goToPos func

a guest
Apr 3rd, 2013
521
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 2.78 KB | None | 0 0
  1. -- goToPos Function. --
  2. -- By Ninetainedo -- NoFake Dev Team --
  3. -- Moves the turtle to xTmp, yTmp, zTmp considerating it is on 0, 0, 0. (Also turns the turtle to sideTmp considerating it is currently facing 0). --
  4. -- Example :
  5. --
  6. -- .....
  7. -- ...T.
  8. -- .....
  9. -- .D...
  10. --
  11. -- On this draw (Top view), the Turtle is the 'T', the destination is the 'D' and the turtle is facing on right (1)
  12. -- I have to do goToPos(-2, -2, 0, -1, "szyx")
  13. -- The last parameter represents the order the turtle has to move. In this case, it will move in this order : side, z, y, x
  14. --
  15. -- Axis are defined with turtle facing 0 :
  16. -- x is forward
  17. -- y is right
  18. -- z is up
  19. --
  20.  
  21. function goToPos(xTmp, yTmp, zTmp, sideTmp, order)
  22.   local xMove = function()
  23.     while (xTmp ~= 0) do
  24.       if (xTmp > 0) then
  25.         while (not turtle.forward()) do
  26.           turtle.dig()
  27.           turtle.attack()
  28.           os.sleep(0.4)
  29.         end
  30.         xTmp = xTmp - 1
  31.       else
  32.         if (not turtle.back()) then
  33.           turtle.turnLeft()
  34.           turtle.turnLeft()
  35.           while (not turtle.forward()) do
  36.             turtle.dig()
  37.             turtle.attack()
  38.             os.sleep(0.4)
  39.           end
  40.           turtle.turnRight()
  41.           turtle.turnRight()
  42.         end
  43.         xTmp = xTmp + 1
  44.       end
  45.     end
  46.   end
  47.   local yMove = function()
  48.     if (yTmp > 0) then
  49.       turtle.turnRight()
  50.       while (yTmp > 0) do
  51.         while (not turtle.forward()) do
  52.           turtle.dig()
  53.           turtle.attack()
  54.           os.sleep(0.4)
  55.         end
  56.         yTmp = yTmp - 1
  57.       end
  58.       turtle.turnLeft()
  59.     elseif (yTmp < 0) then
  60.       turtle.turnLeft()
  61.       while (yTmp < 0) do
  62.         while (not turtle.forward()) do
  63.           turtle.dig()
  64.           turtle.attack()
  65.           os.sleep(0.4)
  66.         end
  67.         yTmp = yTmp + 1
  68.       end
  69.       turtle.turnRight()
  70.     end
  71.   end
  72.   local zMove = function()
  73.     while (zTmp ~= 0) do
  74.       if (zTmp < 0) then
  75.         while (not turtle.down()) do
  76.           turtle.attackDown()
  77.           turtle.digDown()
  78.           os.sleep(0.4)
  79.         end
  80.         zTmp = zTmp + 1
  81.       else
  82.         while (not turtle.up()) do
  83.           turtle.attackUp()
  84.           turtle.digUp()
  85.           os.sleep(0.4)
  86.         end
  87.         zTmp = zTmp - 1
  88.       end
  89.     end
  90.   end
  91.   local sMove = function()
  92.     while (sideTmp ~= 0) do
  93.       if (sideTmp > 0) then
  94.         turtle.turnRight()
  95.         sideTmp = sideTmp - 1
  96.       else
  97.         turtle.turnLeft()
  98.         sideTmp = sideTmp + 1
  99.       end
  100.     end
  101.   end
  102.  
  103.   for a = 1, 4 do
  104.     if (order:sub(a, a) == 'x') then
  105.       xMove()
  106.     elseif (order:sub(a, a) == 'y') then
  107.       yMove()
  108.     elseif (order:sub(a, a) == 'z') then
  109.       zMove()
  110.     elseif (order:sub(a, a) == 's') then
  111.       sMove()
  112.     end
  113.   end
  114. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement