Advertisement
capnstoobie

platform

Dec 1st, 2013
139
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. --[[
  2. Creates a platform based on length and width given by the player. Also clears a 2 block high space above the platform,
  3. in case there are any blocks there to impede the player's path.
  4.  
  5. Instructions:
  6. - place blocks in turtle's inventory, starting from the first slot
  7. - the turtle will move in a snake pattern, from left to right (looking from behind)
  8. - if sand/gravel is used, the turtle will keep placing blocks down until the hole is full
  9. ]]--
  10.  
  11. -- The turtle must snake right and left as it makes the platform
  12. rightturn = true
  13. turncounter = 0
  14.  
  15. -- Ask user to enter width and length of the platform
  16. write("Enter width: ")
  17. local platform_width = tonumber(read())
  18. write("Enter length: ")
  19. local platform_length = tonumber(read())
  20. platform_total = platform_width * platform_length
  21.  
  22. -- Check that the turtle has enough blocks to make the platform
  23. block_count = 0
  24. for slotnum = 1,16 do
  25.     block_count = block_count + turtle.getItemCount(slotnum)
  26. end
  27. if block_count < platform_total then
  28.     print("Blocks required: ",platform_total)
  29.     print("Blocks in inventory: ",block_count)
  30.     print("The turtle does not have enough blocks to build the platform requested. Stopping program now.")
  31.     return
  32. end
  33.  
  34. slotnum = 1
  35.  
  36. for a=1,platform_total do
  37.  
  38.     turtle.dig()
  39.     turtle.forward()
  40.     turtle.digUp()
  41.     turtle.digDown()
  42.     turtle.select(slotnum)
  43.     turtle.placeDown()
  44.     -- Check to see if there are any blocks in the selected slot
  45.     if turtle.getItemCount(slotnum) == 0 then
  46.         repeat
  47.             slotnum = slotnum + 1
  48.         until turtle.getItemCount(slotnum) ~= 0
  49.     end
  50.         --[[ Check to see if block placed has fallen (ie gravel/sand) and if yes place another block ]]--
  51.         while turtle.detectDown() == false do
  52.             turtle.select(slotnum)
  53.             turtle.placeDown() 
  54.             -- Check to see if there are any blocks in the selected slot
  55.                 if turtle.getItemCount(slotnum) == 0 then
  56.                     repeat
  57.                         slotnum = slotnum + 1
  58.                     until turtle.getItemCount(slotnum) ~= 0
  59.                 end
  60.         end
  61.  
  62.     turncounter = turncounter + 1
  63.     print(turncounter,platform_length)
  64.    
  65. --[[ First turn ]]--
  66.     if turncounter == platform_length then
  67.         print("First turn")
  68.         if rightturn == true then turtle.turnRight() else turtle.turnLeft() end
  69.     end    
  70.  
  71. --[[ Second turn ]]--
  72.     if turncounter == platform_length+1 then
  73.         print("Second turn")
  74.         if rightturn == true then turtle.turnRight() else turtle.turnLeft() end
  75.         -- Reverse the snake!
  76.         if rightturn == true then rightturn = false else rightturn = true end
  77.         turncounter = 1
  78.     end
  79. end
  80.  
  81. -- Return to starting position
  82. for a = 1,platform_width-1 do
  83.     turtle.back()
  84. end
  85. turtle.turnLeft()
  86. if (platform_width % 2 == 0) then
  87.     turtle.back()
  88. else
  89.     for a = 1,platform_length do
  90.         turtle.back()
  91.     end
  92. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement