Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- os.loadAPI("/Base64")
- os.loadAPI("uap")
- os.loadAPI("lg/lg")
- rednet.open("back")
- lg.setup("term")
- local balance = nil
- local screen = 1
- local card = nil
- local psw = nil
- local name = nil
- function saveCreds(id,psw)
- local cf = fs.open("/bank/creds","w")
- cf.writeLine(id)
- cf.writeLine(psw)
- cf.close()
- local cardff = fs.open("card","w")
- cardff.write(id)
- cardff.close()
- end
- function writeCreds()
- local cf = fs.open("/bank/creds","r")
- if cf then
- cardf = cf.readLine()
- pswf = cf.readLine()
- cf.close()
- if cardf and pswf then
- term.setBackgroundColor(colors.gray)
- term.setTextColor(colors.white)
- term.setCursorPos(2,10)
- term.write(cardf)
- card = cardf
- term.setCursorPos(2,14)
- term.write(pswf)
- psw = pswf
- end
- else
- end
- end
- function drawMAIN()
- uap.upd()
- term.setBackgroundColor(colors.white)
- term.clear()
- term.setCursorPos(9,3)
- term.setTextColor(colors.red)
- term.write("Creatopico")
- term.setCursorPos(12,4)
- term.write("Bank")
- local sx,sy = term.getSize()
- term.setBackgroundColor(colors.red)
- for i=1,sx do
- term.setCursorPos(i,6)
- term.write(" ")
- end
- term.setTextColor(colors.gray)
- term.setCursorPos(12,8)
- term.write("LOGIN")
- term.setCursorPos(10,10)
- term.write("REGISTER")
- for i=1,sx do
- term.setCursorPos(i,14)
- term.write(" ")
- end
- uap.upd()
- end
- drawMAIN()
- local soffset = 0
- function drawHistory(offset)
- screen = 5
- lg.fillScreen(colors.white)
- lg.fill(1,lg.getSize().x,3,3,colors.red)
- lg.drawText(2,3,colors.white,colors.red,"Istorija Perevodov")
- rednet.send(40,Base64.encode("getlt "..card.." "..psw),"bank44")
- local sId = nil
- local msg = nil
- local prt = nil
- repeat
- event, senderId, message, distance = os.pullEvent("rednet_message")
- sId = senderId
- msg = message
- prt = distance
- until prt ~= "base44" and sId == 40
- gi = 1
- for i=1, #msg do
- gi = i + offset
- if msg[gi] then
- lg.drawText(2,5+i,colors.red,colors.white,"- "..msg[gi])
- end
- if i == lg.getSize().y - 4 then break end
- end
- lg.drawBT("close1",2,10,lg.getSize().y-1,lg.getSize().y-1,colors.white,colors.red,"Nazad")
- if offset == 0 then
- lg.drawBT("up",lg.getSize().x,lg.getSize().x,17,17,colors.white,colors.gray,"\30")
- else
- lg.drawBT("up",lg.getSize().x,lg.getSize().x,17,17,colors.white,colors.red,"\30")
- end
- lg.drawBT("down",lg.getSize().x,lg.getSize().x,19,19,colors.white,colors.red,"\31")
- lg.fill(lg.getSize().x,lg.getSize().x,5,15,colors.gray)
- local percentage = (offset / 10) * 100
- local rp = math.floor(percentage) / 10
- lg.drawText(lg.getSize().x,5+rp,colors.lightGray,colors.gray,"\8")
- uap.upd()
- end
- function drawLOGIN()
- term.setBackgroundColor(colors.white)
- term.clear()
- term.setTextColor(colors.red)
- term.setCursorPos(12,3)
- term.write("LOGIN")
- term.setBackgroundColor(colors.red)
- term.setTextColor(colors.white)
- local sx,sy = term.getSize()
- uap.upd()
- for i=1,sx do
- term.setCursorPos(i,6)
- term.write(" ")
- end
- term.setBackgroundColor(colors.gray)
- term.setCursorPos(2,10)
- for i=1,10 do
- term.write(" ")
- term.setCursorPos(2+i,10)
- end
- term.setTextColor(colors.red)
- term.setBackgroundColor(colors.white)
- term.setCursorPos(3,9)
- term.write("CARD-ID")
- term.setBackgroundColor(colors.gray)
- term.setCursorPos(2,14)
- for f=1,10 do
- term.write(" ")
- term.setCursorPos(2+f,14)
- end
- term.setTextColor(colors.red)
- term.setBackgroundColor(colors.white)
- term.setCursorPos(3,13)
- term.write("PASSWORD")
- term.setBackgroundColor(colors.red)
- term.setTextColor(colors.white)
- term.setCursorPos(2,17)
- term.write("BACK")
- term.setCursorPos(10,17)
- term.write("LOGIN")
- writeCreds()
- uap.upd()
- end
- function drawACC()
- term.setBackgroundColor(colors.white)
- term.clear()
- term.setTextColor(colors.red)
- term.setCursorPos(8,3)
- term.write("Hi, "..name)
- term.setBackgroundColor(colors.red)
- term.setTextColor(colors.white)
- lg.drawBT("perevod",2,15,13,16,colors.white,colors.red," Perevod\n Deneg")
- lg.drawBT("history",19,25,13,16,colors.white,colors.red," Isto\n rija")
- local sx,sy = term.getSize()
- for i=1,sx do
- term.setCursorPos(i,6)
- term.write(" ")
- end
- term.setTextColor(colors.red)
- term.setBackgroundColor(colors.white)
- term.setCursorPos(2,10)
- term.write("- Balance: "..balance.." AR")
- uap.upd()
- end
- -- loop
- while true do
- local event, button, x, y = os.pullEvent( "mouse_click" )
- -- LOGIN BT HANDL
- if (screen == 1) then
- if (y == 8 and x > 11 and x < 18) then
- drawLOGIN()
- screen = 2
- else
- end
- elseif (screen == 2) then
- if (y == 17 and x > 1 and x < 7) then
- drawMAIN()
- screen = 1
- elseif (y == 10 and x > 1 and x < 13) then
- term.setBackgroundColor(colors.lightGray)
- term.setTextColor(colors.white)
- term.setCursorPos(1,10)
- for i=1,10 do
- term.setCursorPos(1+i,10)
- term.write(" ")
- end
- term.setCursorPos(2,10)
- card = read()
- term.setBackgroundColor(colors.gray)
- term.setCursorPos(1,10)
- for i=1,10 do
- term.setCursorPos(1+i,10)
- term.write(" ")
- end
- term.setCursorPos(2,10)
- term.write(card)
- elseif (y == 14 and x > 1 and x < 13) then
- term.setBackgroundColor(colors.lightGray)
- term.setTextColor(colors.white)
- term.setCursorPos(1,14)
- for i=1,10 do
- term.setCursorPos(1+i,14)
- term.write(" ")
- end
- term.setCursorPos(2,14)
- psw = read()
- term.setBackgroundColor(colors.gray)
- term.setCursorPos(1,14)
- for i=1,10 do
- term.setCursorPos(1+i,14)
- term.write(" ")
- end
- term.setCursorPos(2,14)
- term.write(psw)
- elseif (y == 17 and x > 10 and x < 16) then
- rednet.send(40,Base64.encode("login "..card.." "..psw),"bank44")
- term.setBackgroundColor(colors.white)
- term.setTextColor(colors.red)
- term.setCursorPos(10,17)
- term.write("Loading...")
- local sId = nil
- local msg = nil
- local prt = nil
- repeat
- event, senderId, message, distance = os.pullEvent("rednet_message")
- sId = senderId
- msg = Base64.decode(message)
- prt = distance
- until prt ~= "base44" and sId == 40
- local ii = 1
- for word in string.gmatch(msg,"%S+") do
- if (ii == 1) then
- name = word
- elseif (ii == 2) then
- balance = word
- end
- ii = ii + 1
- end
- if (msg == "error2") then
- term.setCursorPos(10,17)
- term.write("Oshibka!")
- term.setCursorPos(2,18)
- term.write(" -Incorect password")
- elseif (msg == "error1") then
- term.setCursorPos(10,17)
- term.write("Oshibka!")
- term.setCursorPos(2,18)
- term.write(" - No account")
- else
- screen = 3
- saveCreds(card, psw)
- drawACC()
- end
- else
- end
- elseif screen == 3 and lg.isButton(x,y) == "perevod" then
- screen = 4
- lg.fillScreen(colors.white)
- lg.fill(1,lg.getSize().x,3,3,colors.red)
- lg.drawInput("id",2,10,7,7,8)
- lg.drawText(2,6,colors.red,colors.white,"ID karty")
- lg.drawText(2,3,colors.white,colors.red,"Perevod deneg")
- lg.drawText(2,10,colors.red,colors.white,"Summa AR")
- lg.drawText(2,14,colors.red,colors.white,"Comment")
- lg.drawInput("suma",2,10,11,11,8)
- lg.drawInput("comment",2,20,15,15,18)
- lg.drawBT("pay",2,13,17,20,colors.white,colors.red," Perevesti")
- uap.upd()
- elseif screen == 4 and lg.isInput(x,y) then
- if lg.isInput(x,y) == "id" then
- id = lg.getInput(x,y)
- elseif lg.isInput(x,y) == "suma" then
- suma = lg.getInput(x,y,true)
- elseif lg.isInput(x,y) == "comment" then
- comment = lg.getInput(x,y)
- end
- elseif screen == 4 and lg.isButton(x,y) == "pay" then
- if (id ~= card and card ~= nil and id ~= nil) then
- if comment then
- comment = string.gsub(comment, " ", "_")
- rednet.send(40,Base64.encode("send_money "..card.." "..psw.." "..id.." "..suma.." "..comment),"bank44")
- else
- rednet.send(40,Base64.encode("send_money "..card.." "..psw.." "..id.." "..suma),"bank44")
- end
- local sId = nil
- local msg = nil
- local prt = nil
- repeat
- event, senderId, message, distance = os.pullEvent("rednet_message")
- sId = senderId
- msg = Base64.decode(message)
- prt = distance
- until prt ~= "base44" and sId == 40
- lg.fillScreen(colors.red)
- screen = 10
- local answer = nil
- if msg == "error1" then
- answer = "Takoy karty netu!"
- elseif msg == "error2" then
- answer = "Nevernyi parol!"
- elseif msg == "error3" then
- answer = "Nedostatochno deneg!"
- elseif msg == "error4" then
- answer = "Takoy karty netu! ("..id..")"
- else
- answer = "Gotovo!"
- end
- lg.drawText(1,lg.getSize().y/2,colors.white,colors.red,answer)
- os.sleep(1)
- rednet.send(40,Base64.encode("login "..card.." "..psw),"bank44")
- local sId = nil
- local msg = nil
- local prt = nil
- repeat
- event, senderId, message, distance = os.pullEvent("rednet_message")
- sId = senderId
- msg = Base64.decode(message)
- prt = distance
- until prt ~= "base44" and sId == 40
- local ii = 1
- for word in string.gmatch(msg,"%S+") do
- if (ii == 1) then
- name = word
- elseif (ii == 2) then
- balance = word
- end
- ii = ii + 1
- end
- os.sleep(3)
- screen = 3
- drawACC()
- else
- lg.fillScreen(colors.red)
- screen = 10
- local answer = "Nelzya otpravit sebe!"
- lg.drawText(1,lg.getSize().y/2,colors.white,colors.red,answer)
- os.sleep(1)
- screen = 3
- drawACC()
- end
- elseif screen == 3 and lg.isButton(x,y) == "history" then
- soffset = 0
- drawHistory(soffset)
- elseif screen == 5 and lg.isButton(x,y) == "close1" then
- screen = 3
- drawACC()
- elseif screen == 5 and lg.isButton(x,y) == "down" then
- soffset = soffset + 1
- drawHistory(soffset)
- elseif screen == 5 and lg.isButton(x,y) == "up" then
- if soffset > 0 then
- soffset = soffset - 1
- drawHistory(soffset)
- end
- end
- end
- lg.exit()
Add Comment
Please, Sign In to add comment