Advertisement
TIMAS_Bro

tablo

May 11th, 2023 (edited)
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.73 KB | None | 0 0
  1. sleep(2)
  2. local config = fs.open("/configt","r")
  3. local mn = peripheral.wrap(config.readLine())
  4. local thisst = config.readLine()
  5. config.close()
  6. local function sbc(clr)
  7. mn.setBackgroundColor(clr)
  8. end
  9. local function scp(x,y)
  10. mn.setCursorPos(x,y)
  11. end
  12. sbc(colors.white)
  13. mn.clear()
  14. local sx,sy = mn.getSize()
  15. sbc(colors.red)
  16. print("SY: "..sy)
  17. for i=1,sy/4 do
  18. for g=1,sx do
  19. scp(g, i)
  20. mn.write(" ")
  21. end
  22. end
  23. scp(1,1)
  24. mn.setBackgroundColor(colors.white)
  25. mn.write(thisst)
  26. sbc(colors.white)
  27. local tablesl = fs.list("/tables")
  28. print(tablesl[2])
  29. function drawtbl(sel)
  30. for i=1,#tablesl do
  31. local handle = fs.open("/tables/"..tablesl[i], "r")
  32. local lines = handle.readLine()
  33. local data = {}
  34. table.insert(data,lines)
  35. for lines in handle.readLine do
  36. table.insert(data,lines)
  37. end
  38. handle.close()
  39. local linec = #data + 1
  40. if sel == i then
  41. for h=1,sy do
  42. sbc(colors.white)
  43. if (h > sy/4) and (sy > h) then
  44. scp(1,h)
  45. mn.clearLine()
  46. end
  47. end
  48. local tttxt = "Poezd: "
  49. mn.setTextColor(colors.black)
  50. scp(sx/2-(tttxt:len()/3),sy/4+1)
  51. mn.setTextColor(colors.black)
  52. sbc(colors.red)
  53. scp(2,sy/4+2)
  54. mn.write("Poezd: "..tablesl[i])
  55. sbc(colors.white)
  56. for g=1,linec do
  57. scp(2,sy/4+2+g)
  58. if data[g] == thisst then
  59. sbc(colors.blue)
  60. mn.write(data[g].."(eta)")
  61. else
  62. mn.write(data[g])
  63. end
  64. sbc(colors.white)
  65. end
  66. end
  67. end
  68. end
  69. drawtbl(1)
  70. local bt = {}
  71. function drawselector(page)
  72. scp(sx,sy)
  73. sbc(colors.red)
  74. mn.setTextColor(colors.white)
  75. for i=1,sy do
  76. scp(i,sy)
  77. mn.write(" ")
  78. end
  79. scp(sx/2,sy)
  80. mn.write(page)
  81. scp(sx/2-2,sy)
  82. mn.write("<")
  83. bt[1] = sx/2-2
  84. scp(sx/2+2,sy)
  85. mn.write(">")
  86. bt[2] = sx/2+2
  87. local ttxt = "("..page.."/"..#tablesl..")"
  88. scp(sx-ttxt:len()+1,sy)
  89. mn.write(ttxt)
  90. end
  91. drawselector("1")
  92. local selection = 1
  93. local slt = 1
  94. local function touch()
  95. while true do
  96. local event, side
  97. event, side, xPos, yPos = os.pullEvent("monitor_touch")
  98. if yPos == sy then
  99. if xPos == bt[2] then
  100. print(">")
  101. if slt == #tablesl then
  102. else
  103. slt = slt + 1
  104. end
  105. drawtbl(slt)
  106. drawselector(tostring(slt))
  107. elseif xPos == bt[1] then
  108. print("<")
  109. if slt == 1 then sleep(0.05) print(slt)
  110. else
  111. slt = slt -1
  112. end
  113. drawtbl(slt)
  114. drawselector(tostring(slt))
  115. end
  116. end
  117. end
  118. end
  119. local function textUpdate()
  120. local txtt = "Raspisanija"
  121. local tmpa = mn.getTextColor()
  122. mn.setCursorPos(math.ceil((sx / 2) - (txtt:len() / 2)), (sy/4)/2)
  123. mn.setTextColor(colors.white)
  124. mn.write(txtt)
  125. mn.setTextColor(tmpa)
  126. end
  127. textUpdate()
  128. sleep(1)
  129. touch()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement