Advertisement
Scorpionfien

RC-Home Button

Jun 20th, 2015
331
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 6.50 KB | None | 0 0
  1. -- Custom Button Program 0-2-0
  2. -- Works with: Advanced Computer & Monitor
  3. -- Environment Tested: Minecraft 1.6.4 Computer Craft version 1.5
  4. -- Modified By RC-Scorpionfien, Created By Lyqyd
  5. -- Requires TouchPoint API to work, download at pastebin.com/pFHeia96
  6. -- Download this file >> http://www.pastebin.com/MSnd0uj1
  7.  
  8. --Loads the API, straightforward
  9. os.loadAPI("touchpoint")
  10.  
  11. --Resets Outputs
  12. rs.setBundledOutput("bottom", 0)
  13.  
  14. --establish two "pages" of buttons
  15. local page1 = touchpoint.new("left")
  16. local page2 = touchpoint.new("left")
  17. local page3 = touchpoint.new("left")
  18. local page4 = touchpoint.new("left")
  19. local page5 = touchpoint.new("left")
  20. local page6 = touchpoint.new("left")
  21. local page7 = touchpoint.new("left")
  22.  
  23. --one variable to put each page into in order to simplify switching
  24. local t
  25.  
  26. --Two redstone testing functions
  27. --add toggling where it makes sense
  28.  
  29. function rsdoorOpen()
  30. page2:flash("Open")
  31. rs.setBundledOutput("bottom", colors.combine(rs.getBundledOutput("bottom"), colors.white))
  32. end
  33.  
  34. function rsdoorClosed()
  35. page2:flash("Close")
  36. rs.setBundledOutput("bottom", colors.subtract(rs.getBundledOutput("bottom"), colors.white))
  37. end
  38.  
  39. function rsdoorTimed()
  40. page2:flash("Timed")
  41. rs.setBundledOutput("bottom", colors.combine(rs.getBundledOutput("bottom"), colors.white))
  42. sleep(5)
  43. page2:flash("Timed")
  44. rs.setBundledOutput("bottom", colors.subtract(rs.getBundledOutput("bottom"), colors.white))
  45. end
  46.  
  47. function rspowerOn()
  48. page3:flash("On")
  49. rs.setBundledOutput("bottom", colors.combine(rs.getBundledOutput("bottom"), colors.orange))
  50. end
  51.  
  52. function rspowerOff()
  53. page3:flash("Off")
  54. rs.setBundledOutput("bottom", colors.subtract(rs.getBundledOutput("bottom"), colors.orange))
  55. end
  56.  
  57. function rsMaster()
  58. page3:flash("Master Off")
  59. rs.setBundledOutput("bottom", 0)
  60. end
  61.  
  62. function rslightOn()
  63. page4:flash("On")
  64. rs.setBundledOutput("bottom", colors.combine(rs.getBundledOutput("bottom"), colors.magenta))
  65. end
  66.  
  67. function rslightOff()
  68. page4:flash("Off")
  69. rs.setBundledOutput("bottom", colors.subtract(rs.getBundledOutput("bottom"), colors.magenta))
  70. end
  71.  
  72. function rsmredOn()
  73. page5:flash("On")
  74. rs.setBundledOutput("bottom", colors.combine(rs.getBundledOutput("bottom"), colors.lightBlue))
  75. end
  76.  
  77. function rsmredOff()
  78. page5:flash("Off")
  79. rs.setBundledOutput("bottom", colors.subtract(rs.getBundledOutput("bottom"), colors.lightBlue))
  80. end
  81.  
  82. function rslavaOn()
  83. page6:flash("On")
  84. rs.setBundledOutput("bottom", colors.combine(rs.getBundledOutput("bottom"), colors.yellow))
  85. end
  86.  
  87. function rslavaOff()
  88. page6:flash("Off")
  89. rs.setBundledOutput("bottom", colors.subtract(rs.getBundledOutput("bottom"), colors.yellow))
  90. end
  91.  
  92. function rsendOn()
  93. page7:flash("On")
  94. rs.setBundledOutput("bottom", colors.combine(rs.getBundledOutput("bottom"), colors.lime))
  95. end
  96.  
  97. function rsendOff()
  98. page7:flash("Off")
  99. rs.setBundledOutput("bottom", colors.subtract(rs.getBundledOutput("bottom"), colors.lime))
  100. end
  101.  
  102. function doNothing()
  103. sleep(1)
  104. end
  105.  
  106. ---Main Menu
  107. function mainTable()
  108. t = page1
  109. end
  110.  
  111. --Door Menu
  112. function doorMenu()
  113. t = page2
  114. end
  115.  
  116. --Power Menu
  117. function powerMenu()
  118. t = page3
  119. end
  120.  
  121. --Lights Menu
  122. function lightMenu()
  123. t = page4
  124. end
  125.  
  126. --Molter Redstone Menu
  127. function mredMenu()
  128. t = page5
  129. end
  130.  
  131. --Lava Menu
  132. function lavaMenu()
  133. t = page6
  134. end
  135.  
  136. --Molten Ender Menu
  137. function mendMenu()
  138. t = page7
  139. end
  140.  
  141. --set up two pages
  142. do
  143. page1:add("Main Menu", doNothing, 4, 1, 36, 2, colors.purple, colors.purple)
  144. page1:add("Door", doorMenu, 4, 5, 12, 9, colors.purple, colors.lime)
  145. page1:add("Power", powerMenu, 16, 5, 24, 9, colors.purple, colors.lime)
  146. page1:add("Lights", lightMenu, 28, 5, 36, 9, colors.purple, colors.lime)
  147. page1:add("MoltRed", mredMenu, 4, 13, 12, 17, colors.purple, colors.lime)
  148. page1:add("Lava", lavaMenu, 16, 13, 24, 17, colors.purple, colors.lime)
  149. page1:add("MoltEnd", mendMenu, 28, 13, 36, 17, colors.purple, colors.lime)
  150.  
  151. page2:add("Door Menu", doNothing, 4, 1, 36, 2, colors.magenta, colors.magenta)
  152. page2:add("Open", rsdoorOpen, 4, 5, 12, 9, colors.magenta, colors.lime)
  153. page2:add("Close", rsdoorClosed, 16, 5, 24, 9, colors.magenta, colors.lime)
  154. page2:add("Timed", rsdoorTimed, 28, 5, 36, 9, colors.magenta, colors.lime)
  155. page2:add("Back", mainTable, 28, 13, 36, 17, colors.magenta, colors.lime)
  156.  
  157. page3:add("Power Menu", doNothing, 4, 1, 36, 2, colors.pink, colors.pink)
  158. page3:add("On", rspowerOn, 4, 5, 12, 9, colors.pink, colors.lime)
  159. page3:add("Off", rspowerOff, 16, 5, 24, 9, colors.pink, colors.lime)
  160. page3:add("Master Off", rsMaster, 28, 5, 36, 9, colors.pink, colors.lime)
  161. page3:add("Back", mainTable, 28, 13, 36, 17, colors.pink, colors.lime)
  162.  
  163. page4:add("Lights Menu", doNothing, 4, 1, 36, 2, colors.cyan, colors, cyan)
  164. page4:add("On", rslightOn, 4, 5, 12, 9, colors.cyan, colors.lime)
  165. page4:add("Off", rslightOff, 16, 5, 24, 9, colors.cyan, colors.lime)
  166. page4:add("Back", mainTable, 28, 5, 36, 9, colors.cyan, colors.lime)
  167.  
  168. page5:add("Molten Redstone Menu", doNothing, 4, 1, 36, 2, colors.red, colors,red)
  169. page5:add("On", rsmredOn, 4, 5, 12, 9, colors.red, colors.lime)
  170. page5:add("Off", rsmredOff, 16, 5, 24, 9, colors.red, colors.lime)
  171. page5:add("Back", mainTable, 28, 5, 36, 9, colors.red, colors.lime)
  172.  
  173. page6:add("Lava Menu", doNothing, 4, 1, 36, 2, colors.orange, colors.orange)
  174. page6:add("On", rslavaOn, 4, 5, 12, 9, colors.orange, colors.lime)
  175. page6:add("Off", rslavaOff, 16, 5, 24, 9, colors.orange, colors.lime)
  176. page6:add("Back", mainTable, 28, 5, 36, 9, colors.orange, colors.lime)
  177.  
  178. page7:add("Molten Ender Menu", doNothing, 4, 1, 36, 2, colors.lightBlue, colors.lightBlue)
  179. page7:add("On", rsendOn, 4, 5, 12, 9, colors.lightBlue, colors.lime)
  180. page7:add("Off", rsendOff, 16, 5, 24, 9, colors.lightBlue, colors.lime)
  181. page7:add("Back", mainTable, 28, 5, 36, 9, colors.lightBlue, colors.lime)
  182. end
  183.  
  184. --Starts with the main Table, then checks for buttons clicked, toggles them, and runs the program it has with my modified t:run2()
  185. mainTable()
  186. while true do
  187. t:draw()
  188. -- local event, p1, p2, p3 = os.pullEvent() ---monitor_touch, side, xpos, ypos
  189. local event, p1 = t:handleEvents(os.pullEvent()) ---button_click, name
  190. if event == "button_click" then
  191. --remove toggling and simplify button running
  192. t.buttonList[p1].func()
  193. end
  194. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement