Advertisement
TIMAS_Bro

station

May 11th, 2023 (edited)
127
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 5.85 KB | None | 0 0
  1. local sc = peripheral.wrap("left")
  2. local sc2 = peripheral.wrap("back")
  3. local config = fs.open("/config","r")
  4. local mn = peripheral.wrap(config.readLine())
  5. local spk = peripheral.wrap(config.readLine())
  6. local spk2 = peripheral.wrap(config.readLine())
  7. local spk3 = peripheral.wrap(config.readLine())
  8. local mnb = peripheral.wrap(config.readLine())
  9. config.close()
  10. local monc = 2
  11. local sx,sy = mn.getSize()
  12. local bsx,bsy = mnb.getSize()
  13. local bsx,bsy = bsx,bsy
  14. local monline = {}
  15. monline[1] = tonumber(sy - 2)
  16. monline[2] = tonumber(10)
  17. local g = 1
  18. print(monline[g])
  19. local function clear()
  20.   mn.clear()
  21.   mnb.clear()
  22. end
  23. local function setTextColor(clr)
  24.   mn.setTextColor(clr)
  25.   mnb.setTextColor(clr)
  26. end
  27. local function setCursorPos(x,y)
  28.   mn.setCursorPos(x,y)
  29. end
  30. local function setCursorPosb(x,y)
  31.   mnb.setCursorPos(x,y)
  32. end
  33. local function setBackgroundColor(clr)
  34.   mn.setBackgroundColor(clr)
  35.   mnb.setBackgroundColor(clr)
  36. end
  37. local function write(txt)
  38.   mn.write(txt)
  39. end
  40. local function writeb(txt)
  41.   mnb.write(txt)
  42. end
  43. local function playNote(sound,vol,ptc)
  44.   spk.playNote(sound,vol,ptc)
  45.   spk2.playNote(sound,vol,ptc)
  46.   spk3.playNote(sound,vol,ptc)
  47. end
  48. local function rdw()
  49.   clear()
  50.   setTextColor(colors.white)
  51.   local sx, sy = mn.getSize()
  52.   for i=1,monc do
  53.     if i == 2 then
  54.       for g=1,bsy do
  55.         setCursorPosb(1,g)
  56.         writeb("|")
  57.         setCursorPosb(bsx,g)
  58.         writeb("|")
  59.       end
  60.     else
  61.       for g=1,sy do
  62.         setCursorPos(1,g)
  63.         write("|")
  64.         setCursorPos(sx,g)
  65.         write("|")
  66.       end
  67.     end
  68.   end
  69. end
  70. rdw()
  71. local swt = 0
  72. local mint = false
  73. local function drawLine(line,nr)
  74.   local atime,name,station,station2 = string.match(sc.getLine(line),"(%w+) (%w+) (%w+) (%w*)")
  75.   setCursorPos(1,1)
  76.   write("Vremya  Poezd    Napravlenye")
  77.   setTextColor(colors.lightBlue)
  78.   setCursorPos(2,nr)
  79.   if string.find(atime,"min") then
  80.       local minute,type,station,station2 = string.match(sc.getLine(line),"(%w+)  (%w+) (%w+) (%w+) (%w*)")  
  81.       atime = minute.."min"
  82.       mint = true
  83.   elseif string.find(atime, "now") then
  84.     setTextColor(colors.orange)
  85.     redstw = 0
  86.     atime = "TUT"
  87.     swt = 1
  88.   else
  89.     swt = 0
  90.   end
  91.   write(atime)
  92.   setTextColor(colors.white)
  93.   setCursorPos(8,nr)
  94.   setTextColor(colors.yellow)
  95.   write(name)
  96.   setTextColor(colors.white)
  97.   setBackgroundColor(colors.lime)
  98.   if atime ~= nil then
  99.     setCursorPos(10+atime:len()+5,nr)
  100.   end
  101.   write(station)
  102.   if station2 ~= nil then
  103.   if station2:len() > 1 then
  104.     setCursorPos(15+atime:len()+station:len(),nr)
  105.     write(" "..station2)
  106.   end
  107.   end
  108.   setBackgroundColor(colors.black)
  109.   mint = false
  110. end
  111. local redstw = 0
  112. local atimest = 0
  113. local function drawLineb(line,nr)
  114.   local atime,name,station,station2 = string.match(sc.getLine(line),"(%w+) (%w+) (%w+) (%w*)")
  115.   setCursorPosb(1,1)
  116.   writeb("Vremya  Poezd    Napravlenye")
  117.   setTextColor(colors.lightBlue)
  118.   setCursorPosb(2,nr)
  119.   if atime ~= nil then
  120.     if string.find(atime,"min") then
  121.       local minute,type,station,station2 = string.match(sc.getLine(line),"(%w+)  (%w+) (%w+) (%w+) (%w*)")  
  122.       atime = minute.."min"
  123.       mint = true
  124.     elseif string.find(atime, "now") then
  125.     setTextColor(colors.orange)
  126.     atime = "TUT"
  127.     atimest = 1
  128.     swt = 1
  129.     else
  130.       atimest = 0
  131.     end
  132.   else
  133.     swt = 0
  134.   end
  135.   writeb(atime)
  136.   setTextColor(colors.white)
  137.   setCursorPosb(8,nr)
  138.   setTextColor(colors.yellow)
  139.   writeb(name)
  140.   setTextColor(colors.white)
  141.   setBackgroundColor(colors.lime)
  142.   if atime ~= nil then
  143.     setCursorPosb(10+atime:len()+5,nr)
  144.   end
  145.   writeb(station)
  146.   if station2 ~= nil then
  147.   if station2:len() > 1 then
  148.     setCursorPosb(15+atime:len()+station:len(),nr)
  149.     writeb(" "..station2)
  150.   end
  151.   end
  152.   setBackgroundColor(colors.black)
  153.   mint = false
  154. end
  155. local time = os.time()
  156. repeat
  157.  sleep(0.05)
  158.  local timeo = os.time()
  159. until time ~= timeo
  160. rdw()
  161. local function rstw()
  162.   repeat
  163.    sleep(0.5)
  164.    print("train move away suka!")
  165.   until redstone.getInput("front") == true
  166.   redstw = 0
  167. end
  168. while true do
  169.   local time = os.time()
  170.   local fTime = textutils.formatTime(time, false)
  171.   print("MONC: "..monc)
  172.   for i=1,monc do
  173.     if i == 2 then
  174.       print("SC: "..sc.getLine(1).." SC2: "..sc2.getLine(1))
  175.       setCursorPosb(bsx-(fTime:len()+1),bsy)
  176.       writeb(""..fTime)
  177.     else
  178.       setCursorPos(sx-(fTime:len()+1),sy)
  179.       write(" "..fTime)
  180.     end
  181.   end
  182.   print("starting func")
  183.   for g=1,monc do
  184.     if g == 2 then
  185.       for i=1,sy-2 do
  186.         if sc2.getLine(i) ~= sc.getLine(24) then
  187.           drawLine(i,i+1)
  188.         end
  189.       end
  190.     else
  191.       for k=1,bsy do
  192.         if sc.getLine(k) ~= sc.getLine(24) then
  193.           drawLineb(k,k+1)
  194.         end
  195.       end
  196.     end
  197.   end
  198.  
  199.   sleep(1)
  200.   print("clearing")
  201.   for l=1,monc do
  202.     if l == 2 then
  203.       for i=1,monline[l] do
  204.         for p=2,bsx-1 do
  205.           setCursorPosb(p,i+1)
  206.           writeb(" ")
  207.         end
  208.       end
  209.     else
  210.       for i=1,monline[l] do
  211.         for p=2,sx-1 do
  212.           setCursorPos(2,i+1)
  213.           write(" ")
  214.         end
  215.       end
  216.     end
  217.   end
  218.   for i=1,monc do
  219.     if i == 2 then
  220.       setCursorPosb(2,bsy)
  221.       writeb("CreatopicoRails")
  222.     else
  223.       setCursorPos(2,sy)
  224.       write("CreatopicoRails")
  225.     end
  226.   end
  227.   if (redstw  == 0) and (redstone.getInput("front")) then
  228.     print("trainhere" )
  229.     setBackgroundColor(colors.orange)
  230.     playNote("chime",10,3)
  231.     clear()
  232.     local fives = 15
  233.     local textd = "Otpravlenye 4erez "..fives.." sekund!"
  234.     setCursorPos(2,3)
  235.     write(textd)
  236.     setCursorPosb(2,bsy/2)
  237.     writeb(textd)
  238.     sleep(0.5)
  239.     playNote("chime",10,6)
  240.     sleep(0.5)
  241.     playNote("chime",10,1)
  242.     shell.run("/ggg")
  243.     sleep(12)
  244.     clear()
  245.     setBackgroundColor(colors.black)
  246.     clear()
  247.     rdw()
  248.     redstw = 1
  249.   end
  250. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement