Advertisement
5tar-Kaster

Builder

Jun 7th, 2013
581
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 2.60 KB | None | 0 0
  1. -- external info --
  2. -- BUILDER --
  3. local blocks = { }
  4. local height = 1
  5. local lenth = 1
  6. local width = 1
  7.  
  8.  
  9.  
  10. -- HELPER FUNCTIONS --
  11. function clear()
  12.     term.clear()
  13.     term.setCursorPos(1, 1)
  14. end
  15.  
  16. function load(path)
  17.     file = fs.open(path, "r")
  18.     data = file.readAll()
  19.     file.close()
  20.    
  21.     return textutils.unserialize(data)
  22. end
  23.  
  24. function forward()
  25.     while true do
  26.         test = turtle.forward()
  27.         if test == true then
  28.             break
  29.         end
  30.         sleep(1)
  31.     end
  32. end
  33. function down()
  34.     while true do
  35.         test = turtle.down()
  36.         if test == true then
  37.             break
  38.         end
  39.         sleep(1)
  40.     end
  41. end
  42. function turnLeft()
  43.     turtle.turnLeft()
  44. end
  45. function turnRight()
  46.     turtle.turnRight()
  47. end
  48. function up()
  49.     while true do
  50.         test = turtle.up()
  51.         if test == true then
  52.             break
  53.         end
  54.         sleep(1)
  55.     end
  56. end
  57. function placeDown(index)
  58.     if index == 0 then
  59.         return false
  60.     end
  61.    
  62.     count = turtle.getItemCount(index)
  63.    
  64.     if count > 1 then
  65.         turtle.select(index)
  66.         turtle.placeDown()
  67.     else
  68.         clear()
  69.         print("OUT OF REASORCE!!!")
  70.         print()
  71.         print("Please full up on reasorce "..index)
  72.         print("and press Enter to continue building")
  73.        
  74.         while true do
  75.             e, p1 = os.pullEvent()
  76.             if e == "key" then
  77.                 if p1 == keys.enter then
  78.                     break
  79.                 end
  80.             end
  81.         end
  82.        
  83.         turtle.select(index)
  84.         turtle.placeDown()
  85.     end
  86. end
  87.  
  88. -- DEPENDANT FUNCTIONS --
  89. function findFile()
  90.     building = {}
  91.    
  92.     schematicFilepath = "/bluprints"
  93.     schematics = fs.list(schematicFilepath)
  94.    
  95.     textutils.pagedTabulate( schematics )
  96.    
  97.     print("please enter file location of building")
  98.     ans = read()
  99.     path = "/bluprints/"..ans
  100.  
  101.     blocks = load(path)
  102.    
  103.     height = #blocks
  104.     length = #blocks[1]
  105.     width  = #blocks[1][1]
  106. end
  107.  
  108.  
  109. -- PROGRAM FUNCTIONS --
  110. function build()
  111.     up()
  112.     forward()
  113.     turnRight()
  114.    
  115.     left = true
  116.    
  117.     for h=1, height do
  118.         for l=1, length do
  119.             for w=1, width do
  120.                 tempH = h
  121.                 tempL = l
  122.                 tempW = w
  123.                
  124.                 if h%2 == 1 then -- remainder of even numbers are 0
  125.                     tempL = length - l + 1
  126.                
  127.                     if not left then
  128.                         tempW = width - w + 1
  129.                     end
  130.                 else
  131.                     if left then
  132.                         tempW = width - w + 1
  133.                     end            
  134.                 end
  135.                 --print(left)
  136.                 --print("h: "..tempH.." l: "..tempL.." w: "..tempW)
  137.                
  138.                 placeDown(blocks[tempH][tempL][tempW])
  139.                 if w ~= width then forward() end
  140.             end
  141.            
  142.             if l ~= length then
  143.                 if left then turnLeft() else turnRight() end
  144.                     forward()
  145.                 if left then turnLeft() else turnRight() end
  146.                 left = not left
  147.             else
  148.                 turnLeft()
  149.                 turnLeft()
  150.                 up()
  151.             end
  152.         end
  153.     end
  154.    
  155. end
  156.  
  157. -- RUN --
  158. function run()
  159.     clear()
  160.     findFile()
  161.     build()
  162. end
  163. run()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement