AquaJD

SSE Register

Feb 2nd, 2017
216
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 4.38 KB | None | 0 0
  1. tColors = {
  2.   ["m_bg"] = colors.white,
  3.   ["m_text"] = colors.black,
  4.   ["t_bg"] = colors.blue,
  5.   ["t_text"] = colors.white,
  6.   ["b1_bg"] = colors.cyan,
  7.   ["b2_bg"] = colors.cyan,
  8.   ["b3_bg"] = colors.green,
  9.   ["b_text"] = colors.white  
  10. }
  11.  
  12. tButton = {
  13.   ["b1_x"] = 4,
  14.   ["b1_y"] = 4,
  15.   ["b1_w"] = 20,
  16.   ["b1_h"] = 4,
  17.   ["b1_text"] = "Username",
  18.   ["b2_x"] = 4,
  19.   ["b2_y"] = 10,
  20.   ["b2_w"] = 20,
  21.   ["b2_h"] = 4,
  22.   ["b2_text"] = "Password",
  23.   ["b3_x"] = 4,
  24.   ["b3_y"] = 16,
  25.   ["b3_w"] = 12,
  26.   ["b3_h"] = 3,
  27.   ["b3_text"] = "Register",
  28. }
  29.  
  30. userInput = ""
  31. passInput = ""
  32. passInputN = ""
  33. bRunning = true
  34.  
  35. function drawBox(x,y,w,h,cb,ct,text,ce,extra)
  36.   term.setBackgroundColor(cb)
  37.   term.setTextColor(ct)
  38.   term.setCursorPos(x,y)
  39.   for i=1,h do
  40.     for i=1,w do
  41.       write(" ")
  42.     end
  43.     term.setCursorPos(x,y+i)
  44.   end
  45.   if h == 2 or h == 4 or h == 6 or h == 8 or h == 10 then
  46.     term.setCursorPos(x+(w/2)-(#text/2),y+(h/2)-1)
  47.   else
  48.     term.setCursorPos(x+(w/2)-(#text/2),y+(h/2))
  49.   end
  50.   print(text)
  51.   term.setCursorPos(x+(w/2)-(#extra/2),y+(h/2)+1)
  52.   term.setTextColor(ce)
  53.   print(extra)
  54. end
  55.  
  56. function dispSuccess()
  57.   drawBox(tButton["b3_x"],tButton["b3_y"],14,tButton["b3_h"],colors.lime,tColors["b_text"],"Successful",tColors["b_text"],"")
  58.   sleep(1)
  59.   bRunning = false
  60. end
  61.  
  62. function dispFailure()
  63.   drawBox(tButton["b3_x"],tButton["b3_y"],18,tButton["b3_h"],colors.red,tColors["b_text"],"Already exists",tColors["b_text"],"")
  64.   sleep(1)
  65.   drawBox(tButton["b3_x"],tButton["b3_y"],tButton["b3_w"],tButton["b3_h"],tColors["b3_bg"],tColors["b_text"],tButton["b3_text"],tColors["b_text"],"")
  66. end
  67.  
  68. function redraw()
  69.   term.setBackgroundColor(tColors["m_bg"])
  70.   term.clear()
  71.   term.setCursorPos(2,2)
  72.   term.setBackgroundColor(tColors["t_bg"])
  73.   term.clearLine()
  74.   term.setCursorPos(2,2)
  75.   term.setTextColor(tColors["t_text"])
  76.   term.setBackgroundColor(tColors["t_bg"])
  77.   print("Security System Example")
  78.   drawBox(tButton["b1_x"],tButton["b1_y"],tButton["b1_w"],tButton["b1_h"],tColors["b1_bg"],tColors["b_text"],tButton["b1_text"],colors.lightGray,userInput)
  79.   drawBox(tButton["b2_x"],tButton["b2_y"],tButton["b2_w"],tButton["b2_h"],tColors["b2_bg"],tColors["b_text"],tButton["b2_text"],colors.lightGray,passInputN)
  80.   drawBox(tButton["b3_x"],tButton["b3_y"],tButton["b3_w"],tButton["b3_h"],tColors["b3_bg"],tColors["b_text"],tButton["b3_text"],colors.lightGray,"")
  81. end
  82.  
  83. function checkCreds()
  84.     local success = false
  85.     if not fs.exists("/sse/.users/."..userInput) then
  86.       local userFile = fs.open("/sse/.users/."..userInput,"w")
  87.       userFile.writeLine(passInput)
  88.       userFile.close()
  89.       success = true
  90.     end
  91.     if success == false then
  92.         return false
  93.     else
  94.         return true
  95.     end
  96. end
  97.  
  98. redraw()
  99. while bRunning do
  100.   local event, button, X, Y = os.pullEvent()
  101.   if event == "mouse_click" then
  102.     if button == 1 then
  103.       if X >= tButton["b1_x"] and X <= (tButton["b1_x"] + tButton["b1_w"] - 1) and Y >= tButton["b1_y"] and Y <= (tButton["b1_y"] + tButton["b1_h"] - 1) then
  104.         term.setTextColor(colors.lightGray)
  105.         term.setBackgroundColor(colors.gray)
  106.         term.setCursorPos(tButton["b1_x"]+1,tButton["b1_y"]+tButton["b1_h"]-2)
  107.         print("                  ")
  108.         term.setCursorPos(tButton["b1_x"]+1,tButton["b1_y"]+tButton["b1_h"]-2)
  109.         userInput = read()
  110.         redraw()
  111.       elseif X >= tButton["b2_x"] and X <= (tButton["b2_x"] + tButton["b2_w"] - 1) and Y >= tButton["b2_y"] and Y <= (tButton["b2_y"] + tButton["b2_h"] - 1) then
  112.         passInputN = ""
  113.         term.setTextColor(colors.lightGray)
  114.         term.setBackgroundColor(colors.gray)
  115.         term.setCursorPos(tButton["b2_x"]+1,tButton["b2_y"]+tButton["b2_h"]-2)
  116.         print("                  ")
  117.         term.setCursorPos(tButton["b2_x"]+1,tButton["b2_y"]+tButton["b2_h"]-2)
  118.         passInput = read("*")
  119.         for i=1,#passInput do
  120.           passInputN = passInputN .. "*"
  121.         end
  122.         redraw()
  123.       elseif X >= tButton["b3_x"] and X <= (tButton["b3_x"] + tButton["b3_w"] - 1) and Y >= tButton["b3_y"] and Y <= (tButton["b3_y"] + tButton["b3_h"] - 1) then
  124.         local bReturned = checkCreds()
  125.         if bReturned == true then
  126.           dispSuccess()
  127.         else
  128.           dispFailure()
  129.           redraw()
  130.         end
  131.       end
  132.     end
  133.   end
  134. end
  135.  
  136. term.setBackgroundColor(colors.black)
  137. term.clear()
  138. term.setCursorPos(1,1)
  139. term.setTextColor(colors.yellow)
  140. print(os.version())
Add Comment
Please, Sign In to add comment