Advertisement
Guest User

Untitled

a guest
May 27th, 2018
416
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.82 KB | None | 0 0
  1. local component = require("component")
  2. local computer = require("computer")
  3. local robot = require("robot")
  4. local sides = require("sides")
  5.  
  6. print("diggy hole!")
  7. origin = 0
  8. y_branch = 0
  9. max_lenght = 5
  10. max_branch_lenght = 5
  11. branch_distance = 5
  12. torch_distance = 6
  13. torch_counter = 0
  14. resume = 0
  15.  
  16. function truemove()
  17. if robot.detect() == true then
  18. print("strada bloccata")
  19. os.sleep(1)
  20. else
  21. print("strada aperta!")
  22. robot.forward()
  23. origin = origin - 1
  24.  
  25. end
  26. end
  27.  
  28. function check_roba()
  29. if computer.energy() < 2000 then
  30. resume = origin
  31. else if robot.durability() < 0.1 then
  32. resume = origin
  33. end
  34. end
  35.  
  36.  
  37.  
  38. function column_dig(y)
  39. for k=1,y do
  40. robot.swingUp()
  41. robot.up()
  42. end
  43. for z=y,1,-1 do
  44. robot.down()
  45. if z == 1 and torch_counter == torch_distance then
  46. robot.select(1)
  47. robot.placeUp(sides.right)
  48. torch_counter = 0
  49. end
  50. end
  51. end
  52.  
  53. function branch(l)
  54. robot.turnLeft()
  55. if robot.detect() == true then
  56. torch_counter = 3
  57. print("torciacontatore" .. torch_counter)
  58. for i=1,l do
  59. robot.swing()
  60. robot.forward()
  61. torch_counter = torch_counter +1
  62. column_dig(y_branch)
  63. end
  64. for i=1, l do
  65. robot.back()
  66. torch_counter = 3
  67. end
  68. else
  69. print("debug: non serve scavare a sinistra!")
  70. end
  71.  
  72. robot.turnLeft()
  73. robot.turnLeft()
  74.  
  75. if robot.detect() == true then
  76. for i=1,l do
  77. robot.swing()
  78. robot.forward()
  79. torch_counter = torch_counter +1
  80. column_dig(y_branch)
  81. end
  82. for i=1,l do
  83. robot.back()
  84. end
  85. else
  86. print("debug: non serve scavare a destra!")
  87. end
  88.  
  89. robot.turnLeft()
  90. end
  91.  
  92.  
  93. function main_dig(l,d)
  94. for i=1,l do
  95. for k =1,d do
  96. robot.swing()
  97. robot.forward()
  98. origin = origin + 1
  99. if robot.detectUp() == true then
  100. column_dig(y_branch)
  101. print("debug: superatocolumn_dig branch centrale!")
  102. else
  103. print("debug: non serve scavare!")
  104. end
  105. end
  106. branch(max_branch_lenght)
  107. check_roba()
  108. if resume ~= 0 then
  109. return_home(resume,0)
  110. end
  111. end
  112.  
  113. function return_home(x,z)
  114. robot.turnLeft()
  115. robot.turnLeft()
  116. while origin > z do
  117. truemove()
  118. end
  119. robot.turnLeft()
  120. robot.turnLeft()
  121. resume = 0
  122. end
  123.  
  124.  
  125.  
  126. print("Definisci altezza del branch!: ")
  127. y_branch = io.read()
  128. y_branch = y_branch - 1
  129. main_dig(max_lenght, branch_distance)
  130. return_home(origin, 0)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement