Advertisement
Guest User

control

a guest
Oct 30th, 2013
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 2.70 KB | None | 0 0
  1. turtle.select(1)
  2. local menu_options = { --This is our menu table. It contains basic data about the menu
  3.   [1] = {text="Kill Mob mode", color=colors.red},
  4.   [2] = {text="Breeding mode", color=colors.green},
  5.   [3] = {text="!!! ADMIN !!!", color=colors.cyan}
  6. }
  7. local termX, termY = term.getSize() --The x/y size of the terminal
  8. local function menuDraw(selected) --Our main draw function
  9.   local yPos = termY/2 - #menu_options/2 --The initial y position
  10.   for index, data in pairs(menu_options) do
  11.     menu_options[index].bounds = { --Create a new table in each option with the boundary data
  12.       x1 = termX/2 - (#data.text+4)/2;
  13.       x2 = termX/2 + (#data.text+4)/2;
  14.       y = yPos;
  15.     }
  16.     term.setTextColor(data.color)
  17.     term.setCursorPos(data.bounds.x1, data.bounds.y)
  18.  
  19.     local text =
  20.       index==selected and "[ "..data.text.." ]" or
  21.       "  "..data.text.."  " --Essentially an if statement, but in a contracted form
  22.     term.write(text)
  23.     yPos = yPos+1 --Increment the initial y pos so we can move on the next line
  24.   end
  25. end
  26.  
  27. local function checkClick(x,y) --Check the mouse click to see if there's a menu option
  28.   for index, data in pairs(menu_options) do
  29.     if x>= data.bounds.x1 and x<= data.bounds.x2 and y==data.bounds.y then
  30.       return index --Returns the index of the clicked option
  31.     end
  32.   end
  33.   return false --If it went through the entire for loop without success, return false
  34. end
  35.  
  36. term.clear()
  37.  
  38. local selector = 1 --Our selector
  39. while true do --The main loop. I would generally put this inside of a function for a program.
  40.   menuDraw(selector) --Draw the menu first
  41.   local e = {os.pullEvent()} --Pull an event and put the returned values into a table
  42.   if e[1] == "key" then --If it's a key...
  43.     if e[2] == keys.down then -- ... and it's the down arrow
  44.       selector = selector < #menu_options and selector+1 or 1 --Increment the selector if the selector < #menu_options. Otherwise reset it to 1
  45.     elseif e[2] == keys.up then
  46.       selector = selector > 1 and selector-1 or #menu_options --Decrement the selector if the selector > 1. Otherwise, reset it to #menu_options
  47.     elseif e[2] == keys.enter then
  48.       break --Break out of the loop
  49.     end
  50.   elseif e[1] == "mouse_click" then
  51.     local value = checkClick(e[3], e[4]) --Check the mouse click
  52.     if value then --If checkClick returns a value and not false
  53.       selector = value --Set the selector to that value and break out of the loop
  54.       break
  55.     end
  56.   end
  57. end
  58.  
  59. fs.delete("fmode")
  60.  
  61. file = fs.open("fmode", "wb")
  62.  
  63. if selector == 1 then
  64.   file.write(1)
  65. elseif selector == 2 then
  66.   file.write(2)
  67. elseif selector == 3 then
  68.   file.write(3)
  69. end
  70.  
  71. file.close()
  72. --shell.run("ASelection")
  73. os.reboot()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement