Guest User

Energy Rent 1.0

a guest
Sep 22nd, 2012
234
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 6.34 KB | None | 0 0
  1. -- Energy Rent 1.0
  2.  
  3. -- width monitor 50
  4. -- high monitor 18
  5.  
  6. term.clear()
  7. TSP = textutils.slowWrite
  8. -- function to generate boxes
  9. function box(x1,x2,y1,y2,titleX,corner,title)
  10. local x,y=1,1
  11. for y=y1,y2 do
  12.     if y==y1 or y==y2 then
  13.         term.setCursorPos(x1,y)
  14.         write(corner)
  15.         for x=x1+1,x2-1 do
  16.         write("-")
  17.         --TSP("-",10) failed attempts to anime the windows  T_T
  18.     end
  19.     write(corner)
  20.     else
  21.         term.setCursorPos(x1,y)
  22.         write("|")
  23.         --TSP("|",10)
  24.         term.setCursorPos(x2,y)
  25.         write("|")
  26.         --TSP("|",10)
  27.     end
  28.         if title > "" then
  29.         term.setCursorPos(titleX,y1)
  30.         write(title)
  31.     end
  32. end
  33. end
  34.  
  35. -- function to generate the menus
  36. function menu(...)
  37. local sel = 1
  38. local list = {...}
  39. local offX,offY = term.getCursorPos()
  40. local curX,curY = term.getCursorPos()
  41. while true do
  42.     if sel > #list then sel = 1 end
  43.         if sel < 1 then sel = #list end
  44.             for i = 1,#list do
  45.             term.setCursorPos(offX,offY+i-1)
  46.             if sel == i then
  47.                 print("#"..list[i].."#")
  48.             else
  49.                 print(" "..list[i].." ")
  50.             end
  51.         end
  52.         while true do
  53.             local button,button1 = os.pullEvent()
  54.             if button == "key" then
  55.                 if button1 == 200 then -- up key
  56.                     sel = sel-1
  57.                     break
  58.                 end
  59.                 if button1 == 208 then -- down key
  60.                     sel = sel+1
  61.                     break
  62.                 end
  63.                 if button1 == 28 then
  64.                     term.setCursorPos(curX,curY)
  65.                     return list[sel],sel
  66.                 end                        
  67.             end
  68.         end
  69.     end
  70. end
  71.  
  72. -- function to clear a selected area of the screen
  73. function cleararea(...)
  74. local pos={term.getCursorPos()}
  75. local args={...}
  76.  
  77. for y=args[2], args[2]+args[4]-2 do
  78.     term.setCursorPos(args[1],y)
  79.     write(string.rep(" ",args[3]-args[1]+1))
  80. end
  81. end
  82.  
  83. -- here should be able to load a table with the name of the admins or users
  84. function login(page)
  85. local mainX,mainY
  86. mainX,mainY = term.getSize()
  87. if page == 1 then
  88.     while true do
  89.         term.clear()
  90.         box(14,36,7,11,mainX/2-4,"*","= LOGIN =")
  91.         term.setCursorPos(mainX/2-9,mainY/2)
  92.         write("Username: ") --name is victor
  93.         local User=read()
  94.         term.setCursorPos(mainX/2-9,mainY/2)
  95.         write("                    ")
  96.         term.setCursorPos(mainX/2-9,mainY/2)
  97.         write("Password: ") --password is victor
  98.         local Pass=read('*')
  99.         term.setCursorPos(mainX/2-9,mainY/2)
  100.         write("                    ")
  101.         if User == "victor" and Pass == "victor" then
  102.             term.setCursorPos(mainX/2-9,mainY/2)
  103.             write("                 ")
  104.             term.setCursorPos(mainX/2-9,mainY/2)
  105.             TSP("Clave correcta")
  106.             sleep(3)
  107.             userspanel(1)
  108.             break
  109.         else
  110.             term.setCursorPos(mainX/2-9,mainY/2)
  111.             write("                 ")
  112.             term.setCursorPos(mainX/2-9,mainY/2)
  113.             TSP("Clave incorrecta")
  114.             sleep(3)
  115.             term.setCursorPos(mainX/2-9,mainY/2)
  116.             write("                    ")
  117.         end
  118.     end
  119. elseif page == 2 then
  120.     while true do
  121.         term.clear()
  122.         box(6,44,7,11,mainX/2-9,"*","= CHANGE PASSWORD =")
  123.         term.setCursorPos(mainX/2-17,mainY/2)
  124.         write("Enter new password: ") --name is victor
  125.         local Pass1=read()
  126.         term.setCursorPos(mainX/2-17,mainY/2)
  127.         write("                              ")
  128.         term.setCursorPos(mainX/2-17,mainY/2)
  129.         write("Repeat password: ") --password is victor
  130.         local Pass2=read('*')
  131.         term.setCursorPos(mainX/2-17,mainY/2)
  132.         write("                              ")
  133.         if Pass1 == Pass2 then--and Pass2 == Pass1 then
  134.             term.setCursorPos(mainX/2-17,mainY/2)
  135.             write("                           ")
  136.             term.setCursorPos(mainX/2-17,mainY/2)
  137.             TSP("Password changed successfully!")
  138.             sleep(3)
  139.             userspanel(1)
  140.             break
  141.         else--if pass1 ~= pass2 then
  142.             term.setCursorPos(mainX/2-17,mainY/2)
  143.             write("                              ")
  144.             term.setCursorPos(mainX/2-17,mainY/2)
  145.             TSP("Password does not match, try again!")
  146.             sleep(3)
  147.             --login(2)
  148.         end
  149.     end
  150. end
  151. end
  152.  
  153. function userspanel(page)
  154. cleararea(2,2,48,17)
  155. local mainX,mainY
  156. mainX,mainY = term.getSize()
  157. box(1,49,1,18,mainX/2-7,"+","= ENERGY RENT =")
  158. box(2,21,2,8,4,"@","= MAIN =")
  159. term.setCursorPos(4,4)
  160.  
  161. if page == 1 then
  162.     men1 = menu("Users list","Check sensors","Other...")
  163. elseif page == 2 then
  164.     men1 = menu("Add new user","Change password","Back...", "Exit")
  165. elseif page == 3 then
  166.     men1 = menu("Name","Back...")
  167. end
  168.  
  169. local selection = men1
  170.     if selection == "Users list" then
  171.         users()
  172.     elseif selection == "Check sensors" then
  173.         sensors()
  174.     elseif selection == "Other..." then
  175.         userspanel(2)
  176.         bRunning = true
  177.     elseif selection == "Add new user" then
  178.         userspanel(3)
  179.     elseif selection == "Name" then
  180. --Here you would have to add the name of the user to the users table
  181.         term.setCursorPos(term.getCursorPos()+7,term.getCursorPos())
  182.         local name=read()
  183.         userspanel(2)
  184.     elseif selection == "Change password" then
  185.         login(2)
  186.     elseif selection == "Back..." then
  187.         userspanel(1)
  188.         bRunning = true
  189.     elseif selection == "Back..." then
  190.         userspanel(1)
  191.         bRunning = true
  192.     elseif selection == "Exit" then
  193.         term.clear()
  194.         login(1)
  195.         bRunning = false
  196.     end
  197. end
  198.  
  199. function users()
  200. box(21,48,2,17,24,"@","= USERS =")
  201. term.setCursorPos(23,4)
  202.  
  203. --here should be able to load a table
  204. local selection = menu("user1","user2","Back...")
  205.     if selection == "user1" then
  206.         --cleararea(2,2,48,15)
  207.         userinfo()
  208.     elseif  selection == "user2" then
  209.         --cleararea(2,2,48,15)
  210.         userinfo()
  211.     elseif selection == "Back..." then
  212.         cleararea(2,2,48,15)
  213.         userspanel(1)
  214.         bRunning = false
  215.     end
  216. end
  217.  
  218. function userinfo()
  219. --here should be able to load a table
  220. box(2,21,8,17,4,"@","= USER INFO =")
  221. term.setCursorPos(4,9)
  222. print("Plot: ")
  223. term.setCursorPos(4,10)
  224. print("User: ")
  225. term.setCursorPos(4,12)
  226. print("Coordinates: ")
  227. term.setCursorPos(4,14)
  228. print("Energy expended: ")
  229. users()
  230. end
  231.  
  232. function sensors()
  233. box(21,48,2,17,24,"@","= SENSOR =")
  234. term.setCursorPos(23,4)
  235. -- here should be able to load a table
  236. local selection = menu("sensor1","sensor2","Back...")
  237.     if selection == "sensor1" then
  238.         sensorinfo()
  239.     elseif  selection == "sensor2" then
  240.         sensorinfo()
  241.     elseif selection == "Back..." then
  242.         cleararea(2,2,48,15)
  243.         userspanel(1)
  244.         bRunning = false
  245.     end
  246. end
  247.  
  248. function sensorinfo()
  249. --cleararea(2,2,30,15)
  250. --here should be able to load a table
  251. box(2,21,8,17,4,"@","= SENSOR INFO =")
  252. term.setCursorPos(4,9)
  253. print("Plot: ")
  254. term.setCursorPos(4,10)
  255. print("User: ")
  256. term.setCursorPos(4,12)
  257. print("Type: ")
  258. term.setCursorPos(4,14)
  259. print("sensor hired? ")
  260. sensors()
  261. end
  262.  
  263. login(1)
Add Comment
Please, Sign In to add comment