Advertisement
Guest User

ex

a guest
Aug 11th, 2014
1,082
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 8.88 KB | None | 0 0
  1. args = {...}
  2.  
  3. widthx=0
  4. widthy=0
  5. depth=0
  6.  
  7. x=0
  8. y=0
  9. d=0
  10.  
  11. xdir=1
  12. ydir=0
  13.  
  14. xdirSurface = 1
  15. ydirSurface = 0
  16.  
  17. onWayUp=0
  18.  
  19. ignoreCount=0
  20.  
  21. onWayHome=0
  22.  
  23. lastSpotx=0
  24. lastSpoty=0
  25. lastSpotd=0
  26.  
  27. lastSpotxdir=1
  28. lastSpotydir=0
  29.  
  30. useEnderChest = false
  31. isChestPlaced = false
  32.  
  33.  
  34.  
  35. maxSlot = 15
  36.  
  37. function getCountFreeSlots()
  38.   freeslots = 0
  39.   for i=ignoreCount+1,maxSlot do
  40.     if turtle.getItemCount(i)==0 then
  41.       freeslots=freeslots+1
  42.     end
  43.   end
  44.   return freeslots
  45. end
  46.  
  47. function checkInventory()
  48.   if getCountFreeSlots() == 0 and onWayHome == 0 then
  49.     for j = 1,ignoreCount do
  50.       turtle.select(j)
  51.         if turtle.getItemSpace(j) < turtle.getItemCount(j) then
  52.           turtle.drop( ( (turtle.getItemSpace(j) + turtle.getItemCount(j)) / 2) - turtle.getItemSpace(j))
  53.         end
  54.       for i=ignoreCount+1,maxSlot do
  55.         turtle.select(j)
  56.         if turtle.compareTo(i) then
  57.           turtle.select(i)
  58.           turtle.drop()
  59.         end
  60.       end
  61.     end
  62.     turtle.select(1)
  63.     if getCountFreeSlots() == 0 then
  64.       if useEnderChest then
  65.         placeEnderChest()
  66.         clearInventory()
  67.         retrieveEnderChest()
  68.       else
  69.         onWayHome=1
  70.         lastSpotx=x
  71.         lastSpoty=y
  72.         lastSpotd=d
  73.         lastSpotxdir=xdir
  74.         lastSpotydir=ydir
  75.       end
  76.     end
  77.   end
  78.   if onWayHome==1 then
  79.     goHome()
  80.   end
  81.   if onWayHome==2 then
  82.     goBack()
  83.   end
  84. end
  85.  
  86. function right()
  87.   if turtle.turnRight() then
  88.     help=xdir
  89.     xdir=-ydir
  90.     ydir=help
  91.   end
  92.   save()
  93. end
  94.  
  95. function left()
  96.   if turtle.turnLeft() then
  97.     help=xdir
  98.     xdir=ydir
  99.     ydir=-help
  100.   end
  101.   save()
  102. end
  103.  
  104. function forward()
  105.   refuel()
  106.   while not turtle.forward() do
  107.     os.sleep(0)
  108.     turtle.dig()
  109.     if onWayHome == 0 then
  110.       checkInventory()
  111.     end
  112.   end
  113.   x=x+xdir
  114.   y=y+ydir
  115.   save()
  116. end
  117.  
  118. function up()
  119.   refuel()
  120.   while turtle.up() == false do
  121.     os.sleep(0)
  122.     turtle.digUp()
  123.     if onWayHome == 0 then
  124.       checkInventory()
  125.     end
  126.   end
  127.   d=d-1
  128.   save()
  129. end
  130.  
  131. function down()
  132.   refuel()
  133.   while turtle.down() == false do
  134.     os.sleep(0)
  135.     if not turtle.digDown() then
  136.       return false
  137.     end
  138.     if onWayHome == 0 then
  139.       checkInventory()
  140.     end
  141.   end
  142.   d=d+1
  143.   save()
  144.   return true
  145. end
  146.  
  147. function isRabbitHoleSpot()
  148.   if ((x + ((y*2) % 5)) % 5) == 0 then
  149.     return true
  150.   else
  151.     return false
  152.   end
  153. end
  154.  
  155. function rabbitHole()
  156.      
  157.   if isRabbitHoleSpot() and onWayUp == 0 then
  158.     if d==0 then
  159.       xdirSurface=xdir
  160.       ydirSurface=ydir
  161.     end
  162.     while d~=depth and down() do
  163.       rotaDigger()
  164.     end
  165.     onWayUp=1
  166.   end
  167.   if onWayUp==1 then
  168.     while d ~= 0 do
  169.       up()
  170.     end
  171.     rotateTo(xdirSurface,ydirSurface)
  172.  
  173.     for i=1,ignoreCount do
  174.       if turtle.getItemCount(i) > 1 then
  175.         turtle.select(i)
  176.         turtle.placeDown()
  177.         i=ignoreCount
  178.       end
  179.     end
  180.     turtle.select(1)
  181.     onWayUp=0
  182.   end
  183.  
  184. end
  185.  
  186. function isIgnoreBlock()
  187.   for i = 1,ignoreCount do
  188.     turtle.select(i)
  189.     if turtle.compare() then
  190.       return true
  191.     end
  192.   end
  193.   return false
  194. end
  195.  
  196. function rotaDigger()
  197.   for i=1,3 do
  198.     if isIgnoreBlock() == false then
  199.       turtle.dig()
  200.       if onWayHome == 0 then
  201.         checkInventory()
  202.       end
  203.     end
  204.     left()
  205.   end
  206.   if isIgnoreBlock() == false then
  207.     turtle.dig()
  208.     if onWayHome == 0 then
  209.       checkInventory()
  210.     end
  211.   end
  212. end
  213.  
  214. function goHome()
  215.  
  216.   if d ~= 0 then
  217.     onWayUp=1
  218.     rabbitHole()
  219.   end
  220.   while not (xdir==-1) do
  221.     left()
  222.   end
  223.   while not (x==0) do
  224.     forward()
  225.   end
  226.   while not (ydir==-1) do
  227.     left()
  228.   end
  229.   while not (y==0) do
  230.     forward()
  231.   end
  232.   while not (xdir==-1) do
  233.     left()
  234.   end
  235.   placeEnderChest()
  236.   clearInventory()
  237.   retrieveEnderChest()
  238.   onWayHome=2
  239. end
  240.  
  241. function goBack()
  242.   if d ~= 0 then
  243.     onWayUp=1
  244.     rabbitHole()
  245.   end
  246.   while not (xdir==1) do
  247.     left()
  248.   end
  249.   while not (x==lastSpotx) do
  250.     forward()
  251.   end
  252.   while not (ydir==1) do
  253.     left()
  254.   end
  255.   while not (y==lastSpoty) do
  256.     forward()
  257.   end
  258.   while not (d==lastSpotd) do
  259.     down()
  260.   end
  261.   rotateTo(lastSpotxdir,lastSpotydir)
  262.   onWayHome=0
  263. end
  264.  
  265. function rotateTo(dirxnew, dirynew)
  266.   while not (xdir==dirxnew and ydir==dirynew) do
  267.     left()
  268.   end
  269. end
  270.  
  271.  
  272. function refuel()
  273.   term.clear()
  274.   print("need fuel")
  275.   while turtle.getFuelLevel() < 80 do
  276.     for i=ignoreCount+1,maxSlot do
  277.       turtle.select(i)
  278.       if turtle.compareTo(16) then
  279.         turtle.transferTo(16)
  280.       end
  281.     end
  282.     turtle.select(16)
  283.     turtle.refuel(turtle.getItemCount(16)-1)
  284.   end
  285.   term.clear()
  286.   turtle.select(1)
  287. end
  288.  
  289. function clearInventory()
  290.   for i=ignoreCount+1,maxSlot do
  291.     turtle.select(i)
  292.     if turtle.compareTo(16) then
  293.       turtle.transferTo(16)
  294.     end
  295.   end
  296.   for i=ignoreCount+1,maxSlot do
  297.     turtle.select(i)
  298.     if useEnderChest then
  299.       turtle.dropUp()
  300.     else
  301.       turtle.drop()
  302.     end
  303.   end
  304. end
  305.  
  306. function placeEnderChest()
  307.   if useEnderChest and not isChestPlaced then
  308.     turtle.digUp()
  309.     turtle.select(15)
  310.     turtle.placeUp()
  311.     isChestPlaced = true
  312.     save()
  313.   end
  314. end
  315.  
  316. function retrieveEnderChest()
  317.   if useEnderChest and isChestPlaced then
  318.     turtle.select(15)
  319.     turtle.dropUp()
  320.     turtle.digUp()
  321.     isChestPlaced = false
  322.     save()
  323.   end
  324. end
  325.  
  326. function uTurn()
  327.   if y == widthy-1 then
  328.     return
  329.   end
  330.   if xdir == 1 and x == widthx-1 then
  331.     right()
  332.     rabbitHole()
  333.     forward()
  334.     right()
  335.     return
  336.   end
  337.   if xdir == -1 and x == 0 then
  338.     left()
  339.     rabbitHole()
  340.     forward()
  341.     left()
  342.     return
  343.   end
  344.   if (xdir==0 and (x==0 or x==widthx-1)) then
  345.     if x==0 then
  346.       if y%2==1 then
  347.         rabbitHole()
  348.         forward()
  349.       end
  350.     left()
  351.     return
  352.     end
  353.     if x==widthx-1 then
  354.       if y%2==0 then
  355.         rabbitHole()
  356.         forward()
  357.       end
  358.       right()
  359.       return
  360.     end
  361.   end
  362. end
  363.  
  364. function readFromSave()
  365.   if fs.exists("ex.save") then
  366.     h=fs.open("ex.save","r")
  367.     if h ~= nil then
  368.       widthx=tonumber(h.readLine())
  369.       widthy=tonumber(h.readLine())
  370.       depth=tonumber(h.readLine())
  371.       x=tonumber(h.readLine())
  372.       y=tonumber(h.readLine())
  373.       d=tonumber(h.readLine())
  374.       xdir=tonumber(h.readLine())
  375.       ydir=tonumber(h.readLine())
  376.       xdirSurface=tonumber(h.readLine())
  377.       ydirSurface=tonumber(h.readLine())
  378.       onWayUp=tonumber(h.readLine())
  379.       ignoreCount=tonumber(h.readLine())
  380.       onWayHome=tonumber(h.readLine())
  381.       lastSpotx=tonumber(h.readLine())
  382.       lastSpoty=tonumber(h.readLine())
  383.       lastSpotd=tonumber(h.readLine())
  384.       lastSpotxdir=tonumber(h.readLine())
  385.       lastSpotydir=tonumber(h.readLine())
  386.       useEnderChest=toboolean(h.readLine())
  387.       isChestPlaced=toboolean(h.readLine())
  388.       h.close()
  389.       return true
  390.     else
  391.       return false
  392.     end
  393.   else
  394.     return false
  395.   end
  396. end
  397.  
  398. function save()
  399.   h=fs.open("ex.save","w")
  400.   if h~= nil then
  401.     h.writeLine(widthx)
  402.     h.writeLine(widthy)
  403.     h.writeLine(depth)
  404.     h.writeLine(x)
  405.     h.writeLine(y)
  406.     h.writeLine(d)
  407.     h.writeLine(xdir)
  408.     h.writeLine(ydir)
  409.     h.writeLine(xdirSurface)
  410.     h.writeLine(ydirSurface)
  411.     h.writeLine(onWayUp)
  412.     h.writeLine(ignoreCount)
  413.     h.writeLine(onWayHome)
  414.     h.writeLine(lastSpotx)
  415.     h.writeLine(lastSpoty)
  416.     h.writeLine(lastSpotd)
  417.     h.writeLine(lastSpotxdir)
  418.     h.writeLine(lastSpotydir)
  419.     h.writeLine(useEnderChest)
  420.     h.writeLine(isChestPlaced)
  421.     h.flush()
  422.     h.close()
  423.   end
  424. end
  425.  
  426. function toboolean(v)
  427.     return (type(v) == "string" and v == "true") or (type(v) == "number" and v ~= 0) or (type(v) == "boolean" and v)
  428. end
  429.  
  430. function main()
  431.   if args[1] == nil or args[1] == "" or args[1] == "-h" or args[1]=="--help" or args[1] == "help" then
  432.     print("Usage:")
  433.     print("ex lenght, width, depth, ignoreCount, [-e|--enderchest]")
  434.     print("Put ignoreBlocks in slot 1 to ignoreCount")
  435.     print("Put enderchest in slot 15 if needed")
  436.     print("Put fuel in slot 16")
  437.     return
  438.   end
  439.   if args[1] == "continue" then
  440.    if readFromSave() == false then
  441.      return 1
  442.    end
  443.   else
  444.     widthx=tonumber(args[1])
  445.     widthy=tonumber(args[2])
  446.     depth=tonumber(args[3])
  447.     ignoreCount=tonumber(args[4])
  448.     if args[5] ~= nil and (args[5]=="-e" or args[5]=="--enderchest") then
  449.       useEnderChest = true
  450.       maxSlot = 14
  451.     end
  452.   end
  453.   term.clear()
  454.   if useEnderChest and turtle.getItemCount(15) == 0 then
  455.     print("no enderchest. canceled.")
  456.   end
  457.   if turtle.getItemCount(16) == 0 then
  458.     print("no fuel. canceled.")
  459.   end
  460.   retrieveEnderChest()
  461.   repeat
  462.     rabbitHole()
  463.     forward()
  464.     uTurn()
  465.     term.clear()
  466.   until y == widthy-1 and ((xdir==-1 and x==0) or (xdir==1 and x==widthx-1))
  467.  
  468.   onWayHome=1
  469.   goHome()
  470.   onWayHome=0
  471.   fs.delete("ex.save")
  472.   clearInventory()
  473.  
  474. end
  475.  
  476. main()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement