Advertisement
Guest User

Untitled

a guest
Sep 18th, 2014
240
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.36 KB | None | 0 0
  1. local component = require("component")
  2. local sides = require("sides")
  3. local rs = component.redstone
  4. local gpu = component.gpu
  5. local event = require("event")
  6. local colours = require("colors")
  7.  
  8. function trainDirection(direction)
  9.     if direction == "north" then
  10.         return 0
  11.     elseif direction == "east" then
  12.         return 1
  13.     elseif direction == "south" then
  14.         return 2
  15.     else
  16.         return 3
  17.     end
  18. end
  19.  
  20. function getStoredTrain()
  21.     for i = 1, 16, 1 do
  22.         if rs.getBundledInput(sides.north, i) == 1 then
  23.             return i
  24.         end
  25.     end
  26. end
  27.  
  28. function countTrains()
  29.     local count = 0
  30.     for i = 0, 16, 1 do
  31.         if rs.getBundledInput(sides.north, i) == 1 then
  32.             count = count + 1
  33.         end
  34.     end
  35.     return count
  36. end
  37.  
  38. function releaseTrain(id)
  39.     rs.setBundledOutput(sides.east, id, 1)
  40.     os.sleep(2)
  41.     rs.setBundledOutput(sides.east, id, 0)
  42. end
  43.  
  44. function setDestination(dire)
  45.     rs.setBundledOutput(sides.bottom, dire, 1)
  46. end
  47.  
  48. function resetDestination()
  49.     for i = 0, 16, 1 do
  50.         rs.setBundledOutput(sides.bottom, i, 0)
  51.     end
  52. end
  53.  
  54. function drawButtons()
  55.     old = gpu.setBackground(colours.red)
  56.     gpu.fill(10, 5, 20, 3, " ")
  57.     gpu.setBackground(old)
  58. end
  59.  
  60. drawButtons()
  61. while true do
  62.     local _, addr, x, y, but, player = event.pull("touch")
  63.     os.sleep(1)
  64. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement