Advertisement
ByteZz

Byte Industries RSO

Mar 11th, 2014
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 2.90 KB | None | 0 0
  1. -- Byte Industries Redstone Outputter by ByteZz v0.2A 3/11/2014 3:17 EST --
  2. -- Changelog: --
  3. -- Added infinite loop, bugs fixed and confirmed working --
  4.  
  5. detectOutputBack = function()
  6. if rs.getInput("back") == true then
  7.         OutputBack = "ON"
  8. else
  9.         OutputBack = "OFF"
  10. end
  11. end
  12.  
  13. detectOutputRight = function()
  14. if rs.getInput("right") == true then
  15.         OutputRight = "ON"
  16. else
  17.         OutputRight = "OFF"
  18. end
  19. end
  20.  
  21. detectOutputLeft = function()
  22. if rs.getInput("left") == true then
  23.         OutputLeft = "ON"
  24. else
  25.         OutputLeft = "OFF"
  26. end
  27. end
  28.  
  29. actionBack = function()
  30. print("Currently Selected: Back")
  31. print("Current State: "..OutputBack)
  32. print("1. Set Output ON")
  33. print("2. Set Output OFF")
  34. actionBackResponse = read()
  35. if actionBackResponse == "1" then
  36.         rs.setOutput("back", true)
  37.         print("Setting output back ON...")
  38.         sleep(1)
  39.         term.clear()
  40.         term.setCursorPos(1,1)
  41.         menuScreen()
  42. else
  43.         rs.setOutput("back", false)
  44.         print("Setting output back OFF...")
  45.         sleep(1)
  46.         term.clear()
  47.         term.setCursorPos(1,1)
  48.         menuScreen()
  49. end
  50. end
  51.  
  52. actionRight = function()
  53. print("Currently Selected: Right")
  54. print("Current State: "..OutputRight)
  55. print("1. Set Output ON")
  56. print("2. Set Output OFF")
  57. actionRightResponse = read()
  58. if actionRightResponse == "1" then
  59.         rs.setOutput("right", true)
  60.         print("Setting output right ON...")
  61.         sleep(1)
  62.         term.clear()
  63.         term.setCursorPos(1,1)
  64.         menuScreen()
  65. else
  66.         rs.setOutput("right", false)
  67.         print("Setting output right OFF...")
  68.         sleep(1)
  69.         term.clear()
  70.         term.setCursorPos(1,1)
  71.         menuScreen()
  72. end
  73. end
  74.  
  75. actionLeft = function()
  76. print("Currently Selected: Left")
  77. print("Current State: "..OutputLeft)
  78. print("1. Set Output ON")
  79. print("2. Set Output OFF")
  80. actionLeftResponse = read()
  81. if actionLeftResponse == "1" then
  82.         rs.setOutput("left", true)
  83.         print("Setting output left ON...")
  84.         sleep(1)
  85.         term.clear()
  86.         term.setCursorPos(1,1)
  87.         menuScreen()
  88. else
  89.         rs.setOutput("left", false)
  90.         print("Setting output left OFF...")
  91.         sleep(1)
  92.         term.clear()
  93.         term.setCursorPos(1,1)
  94.         menuScreen()
  95. end
  96. end
  97.  
  98. menuScreen = function()
  99. term.clear()
  100. term.setCursorPos(1,1)
  101. detectOutputBack()
  102. detectOutputRight()
  103. detectOutputLeft()
  104.  
  105. print("Byte Industries RSO v0.2ALPHA")
  106. print("1. Redstone Output Back; Current State: "..OutputBack)
  107. print("2. Redstone Output Right; Current State: "..OutputRight)
  108. print("3. Redstone Output Left; Current State: "..OutputLeft)
  109. print("Select your option (1-3)")
  110.  
  111. menuResponse = read()
  112.  
  113. if menuResponse == "1" then
  114.         term.clear()
  115.         term.setCursorPos(1,1)
  116.         actionBack()
  117. elseif menuResponse == "2" then
  118.         term.clear()
  119.         term.setCursorPos(1,1)
  120.         actionRight()
  121. else
  122.         term.clear()
  123.         term.setCursorPos(1,1)
  124.         actionLeft()
  125. end
  126.  
  127. end
  128.  
  129.  
  130.  
  131.  
  132. menuScreen()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement