Advertisement
Guest User

Turtle.lua

a guest
Apr 17th, 2014
192
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 3.16 KB | None | 0 0
  1. --GoldKart (c) GoldProgramming 2014
  2. --Turtle Version 1.0
  3. --Csstform
  4.  
  5. --CONFIG
  6. --===================
  7. --DEBUG MODE
  8. debug = false
  9. --TURTLE ID
  10. tNum = 1
  11. --AMOUNT OF RACING TURTLES
  12. rNum = 1
  13. --===================
  14.  
  15. --[[SETUP
  16. =====================
  17. Place one item in slot 9 and a different one in slot 10.
  18. Place a block of what the road is made out of in slot 13.
  19. Make sure that the turtle number matches the one on the PDA.
  20. ]]--
  21.  
  22. --Program initialization
  23. term.clear()
  24. term.setCursorPos(1, 1)
  25. rednet.open("left")
  26. redstone.setOutput("front", true)
  27. rednet.host("turtle"..tostring(tNum),"GoldKartTurtles")
  28. local exit = false
  29.  
  30. --this will send a command
  31. function sendCommand(id, command)
  32.     rednet.send(id, command)
  33.     if debug == true then
  34.         print("Sent "..tostring(command).." to "..tostring(id).."...")
  35.     end
  36. end
  37.  
  38. --This will recive a command
  39. function recieveCommand()
  40.     local senderId, message, distance = rednet.receive()
  41.     if debug == true then
  42.         print("Recived "..tostring(message).." from "..tostring(senderId).."...")
  43.     end
  44.     return message
  45. end
  46.  
  47.  
  48. --This will translate the rednet messaqge into a command
  49. function translate(input)
  50.     if input == "forward" then
  51.         turtle.forward()
  52.         if not redstone.getOutput("front") then
  53.             redstone.setOutput("front", true)
  54.         end
  55.         if debug == true then
  56.             print("Turtle moving forward...")
  57.         end
  58.     elseif input == "left" then
  59.         turtle.turnLeft()
  60.         if not redstone.getOutput("front") then
  61.             redstone.setOutput("front", true)
  62.         end
  63.         if debug == true then
  64.             print("Turtle turning left...")
  65.         end
  66.     elseif input == "right" then
  67.         turtle.turnRight()
  68.         if not redstone.getOutput("front") then
  69.             redstone.setOutput("front", true)
  70.         end
  71.         if debug == true then
  72.             print("Turtle turning right...")
  73.         end
  74.     elseif input == "back" then
  75.         turtle.back()
  76.         if not redstone.getOutput("front") then
  77.             redstone.setOutput("front", true)
  78.         end
  79.         if debug == true then
  80.             print("Turtle moving backwards...")
  81.         end
  82.     elseif input == "getItem" then
  83.         turtle.select(1)
  84.         turtle.suckDown(1)
  85.         if not redstone.getOutput("front") then
  86.             redstone.setOutput("front", true)
  87.         end
  88.         if debug == true then
  89.             print("Turtle picking up item...")
  90.         end
  91.     elseif input == "useItem" then
  92.         turtle.select(1)
  93.         if turtle.compareTo(9) then
  94.             redstone.setOutput("front", false)
  95.             turtle.drop(1)
  96.         end
  97.         if turtle.compareTo(10) then
  98.             target = math.random(1, rNum)
  99.             sendCommand(target, "hit")
  100.             turtle.drop(1)
  101.         end
  102.         if debug == true then
  103.             print("Turtle using item...")
  104.         end
  105.     elseif input == "hit" then
  106.         turtle.turnLeft()
  107.         sleep(.1)
  108.         turtle.turnLeft()
  109.         sleep(.1)
  110.         turtle.turnLeft()
  111.         sleep(.1)
  112.         turtle.turnLeft()
  113.         if debug == true then
  114.             print("Turtle has been hit...")
  115.         end
  116.     elseif input == "exit" then
  117.         exit = true
  118.     end
  119. end
  120.  
  121. --Main program loop
  122. while exit == false do
  123.     local test = recieveCommand()
  124.     translate(test)
  125.  
  126.     if not turtle.detectDown() then
  127.         turtle.down()
  128.     elseif turtle.detect() then
  129.         turtle.select(13)
  130.         if turtle.compare() then
  131.             turtle.up()
  132.         end
  133.     end
  134. end
  135.  
  136. --Closing code
  137. term.clear()
  138. term.setCursorPos(1, 1)
  139. rednet.close("left")
  140. redstone.setOutput("front", false)
  141. os.shutdown()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement