Advertisement
Guest User

bankomat

a guest
Oct 10th, 2023
48
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.85 KB | None | 0 0
  1. local mn = peripheral.wrap("front")
  2. local dside = "drive_7"
  3. local screen = 1
  4. mn.setBackgroundColor(colors.white)
  5. mn.clear()
  6. mn.setCursorPos(1,1)
  7. mn.write("BctaBte")
  8. mn.setCursorPos(1,2)
  9. mn.write("kartu")
  10. -- funcs
  11. local function clear()
  12.   mn.clear()
  13. end
  14. local function setTextColor(clr)
  15.   mn.setTextColor(clr)
  16. end
  17. local function setCursorPos(x,y)
  18.   mn.setCursorPos(x,y)
  19. end
  20. local function setBackgroundColor(clr)
  21.   mn.setBackgroundColor(clr)
  22. end
  23. local function write(txt)
  24.   mn.write(txt)
  25. end
  26. local sx,sy = mn.getSize()
  27. function drawBT(colorm, txt, line)
  28. setBackgroundColor(colorm)
  29. setCursorPos(1,line)
  30. for i=1,sx do
  31.  setBackgroundColor(colorm)
  32.     for g=line,3 do
  33.         setCursorPos(i,g)
  34.         write(" ")
  35.     end
  36. end
  37. setCursorPos(3,line+1)
  38. write(txt)
  39. end
  40. -- loop
  41. mn.setTextScale(0.5)
  42. function bank()
  43. while true do
  44.   local event, side = os.pullEvent()
  45.   local cardfile = fs.open("/disk/card","r")
  46.   if  (side == dside) then
  47.   if (cardfile) then
  48.     clear()
  49.     screen = 2
  50.     drawBT(colors.green,"Enter PIN",1)
  51.     setBackgroundColor(colors.red)
  52.     setTextColor(colors.white)
  53.     setCursorPos(1,sy)
  54.     write("OtmeHitb")
  55.   else
  56.     clear()
  57.     setCursorPos(1,2)
  58.     setTextColor(colors.red)
  59.     setBackgroundColor(colors.white)
  60.     write("Eto ne karta!")
  61.     screen = 1
  62.     disk.eject(dside)
  63.     os.sleep(1)
  64.     setBackgroundColor(colors.white)
  65.     clear()
  66.     setCursorPos(1,1)
  67.     write("Bctabte")
  68.     setCursorPos(1,2)
  69.     write("kartu")
  70.   end
  71.   end
  72. end
  73. end
  74. function click()
  75.   while true do
  76.     event, side, xPos, yPos = os.pullEvent("monitor_touch")
  77.     if (screen == 2) then
  78.       if (yPos > 0 and yPos < 4 and xPos> 0 and xPos < sx+1) then
  79.         print("PIN")
  80.       elseif (yPos == sy and xPos< 10) then
  81.         print("SCREEN 0")
  82.      
  83.       end
  84.     end
  85.   end
  86. end
  87. parallel.waitForAll(bank,click)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement