petomka

Untitled

Aug 11th, 2014
215
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 2.10 KB | None | 0 0
  1. local redside = "back" -- Redstone Output Seite
  2. local monside = "top" -- Seite des Monitors
  3.  
  4. local option1 = 60   -- Zeit fuer Option1 in s
  5. local option2 = 120  -- Zeit fuer Option2 in s
  6. local option3 = 180  -- Zeit fuer Option3 in s
  7. local option4 = 300  -- Zeit fuer Option4 in s
  8. local option5 = 600  -- zeit fuer Option5 in s
  9.  
  10. local input = 0 -- Diesen Wert nicht veraendern
  11. local time = 0 -- Diesen Wert nicth veraendern
  12.  
  13. m = peripheral.wrap(monside)
  14. m.clear()
  15.  
  16. redstone.setOutput(redside,false)
  17.  
  18. function Layout()
  19.  m.setBackgroundColor(colors.cyan)
  20.  m.clear()
  21.  m.setCursorPos(1,1)
  22.  m.write(option1)
  23.  m.write("          ")
  24.  
  25.  m.setBackgroundColor(colors.green)
  26.  m.setCursorPos(1,2)
  27.  m.write(option2)
  28.  m.write("          ")
  29.  
  30.  m.setBackgroundColor(colors.yellow)
  31.  m.setCursorPos(1,3)
  32.  m.write(option3)
  33.  m.write("          ")
  34.  
  35.  m.setBackgroundColor(colors.orange)
  36.  m.setCursorPos(1,4)
  37.  m.write(option4)
  38.  m.write("          ")
  39.  
  40.  m.setBackgroundColor(colors.red)
  41.  m.setCursorPos(1,5)
  42.  m.write(option5)
  43.  m.write("          ")
  44. end
  45.  
  46. Layout()
  47.  
  48. function SetTime()
  49.  if input == 1 then
  50.   time = option1
  51.  elseif input == 2 then
  52.   time = option2
  53.  elseif input == 3 then
  54.   time = option3
  55.  elseif input == 4 then
  56.   time = option4
  57.  elseif input == 5 then
  58.   time = option5
  59.  end
  60. end
  61.  
  62. function Timer()
  63.  while time >= 0.2 do
  64.   m.clear()
  65.   m.setCursorPos(1,3)
  66.   m.write(time)
  67.   time = time - 0.1
  68.   sleep(0.1)
  69.   local event,side,x,y = os.pullEvent()
  70.   if event == "monitor_touch" then
  71.    if x >= 1 and y == 5 then
  72.     time = 0
  73.    break
  74.    end
  75.   end
  76.  end
  77. end
  78.  
  79. function Toggle()
  80.  Layout()
  81.  redstone.setOutput(redside,true)
  82.  SetTime()
  83.  Timer()
  84.  redstone.setOutput(redside,false)
  85.  Layout()
  86. end
  87.  
  88. while true do
  89.  event,side,x,y = os.pullEvent()
  90.  if event == "monitor_touch" then
  91.   if x >= 1 and y == 1 then
  92.    input = 1
  93.    Toggle()
  94.   elseif x >= 1 and y == 2 then
  95.    input = 2
  96.    Toggle()
  97.   elseif x >= 1 and y == 3 then
  98.    input = 3
  99.    Toggle()
  100.   elseif x >= 1 and y == 4 then
  101.    input = 4
  102.    Toggle()
  103.   elseif x >= 1 and y == 5 then
  104.    input = 5
  105.    Toggle()
  106.   end
  107.  end
  108. end
Advertisement
Add Comment
Please, Sign In to add comment