Advertisement
Guest User

Untitled

a guest
Jan 20th, 2013
152
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 2.28 KB | None | 0 0
  1. local function findPeripheral( kind )
  2.     for _,v in pairs( rs.getSides ) do
  3.         if peripheral.getType( v ) == kind then
  4.             return v
  5.         end
  6.     end
  7.  
  8.     return nil
  9. end
  10.  
  11. local monitor  -- empty variable waiting for peripheral.wrap
  12. local monitorSide = findPeripheral( "monitor" )
  13. local sizeX, sizeY = term.getSize() -- get the pixel size of the screen ( currently the computers screen )
  14.  
  15. if not monitorSide then
  16.     print( "No monitor found! :(")
  17.     error() -- exit the program here
  18. else
  19.     monitor = peripheral.wrap( monitorSide )
  20. end
  21.  
  22.  
  23. local msg = "Monitor has focus"
  24. term.setCursorPos( sizeX / 2 - #msg / 2, sizeY / 2 ) -- set the cursor so when we print the message it will be in the middle
  25. print( msg )
  26.  
  27. -- only add the DIFFERENCES between them all, that way if there are 2 trains and they are ( for example ) at purple AND red, the red chars will not override the purple chars
  28. local activeLines = {
  29.     topAtStation = "*",
  30.     topBetweenStation = "++++",
  31.     -- add other ones here, again ONLY the differences!
  32. }
  33.  
  34. local function drawScreen()
  35.     term.clear()
  36.     term.setCursorPos( 1,1 )
  37.  
  38.     -- first we draw the default path on the screen
  39.  
  40.  
  41.  
  42.     -- now we draw on the train progress
  43.     local rsInput = rs.getBundledInput("back")
  44.  
  45.     if colors.test( rsInput, colors.purple ) then
  46.         term.setCursorPos( 1,1 )
  47.         write( activeLines.topAtStation )
  48.     end
  49.  
  50.     if colors.test( rsInput, colors.red ) then
  51.         term.setCursorPos( 2, 1 )
  52.         write( activeLines.topBetweenStation )
  53.     end
  54.  
  55.     if colors.test( rsInput, colors.orange ) then
  56.         term.setCursorPos( 6, 1 )
  57.         write( activeLines.topAtStation )
  58.     end
  59.  
  60.     if colors.text( rsInput, colors.white ) then
  61.         term.setCursorPos( 7, 1 )
  62.         write( activeLines.topBetweenStation )
  63.     end
  64.  
  65.     -- etc, etc, etc
  66. end
  67.  
  68. term.redirect( monitor ) -- give control of term functions to the monitor object
  69.  
  70. local refresh = os.startTimer( 1 ) -- this starts a timer that takes 1 second for refreshing ( its better than sleep with event loops )
  71.  
  72. while true do
  73.     drawScreen() -- call the function that will draw the screen
  74.  
  75.     os.pullEvent( "timer" ) -- change this to os.pullEventRaw later to stop program termination ... the program will wait here until the timer finishes
  76.    
  77.     refresh = os.startTimer( 1 ) -- restart the timer
  78. end
  79.  
  80. term.restore() -- give control back to the computers screen
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement