Advertisement
sidekick_

Sliding Example

Mar 11th, 2013
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 14.62 KB | None | 0 0
  1. -- Simple variables
  2. local screenX, screenY = term.getSize()
  3. local status_user = "Idle"
  4. local stutus_connection = "Not Connected"
  5. local last_clicked
  6.  
  7. -- Timers
  8. local updateTime = os.startTimer( 1 )
  9.  
  10. -- Load the background image
  11. -- Sidebar settings
  12. local sideBarOut = false
  13. local sidebar_text = {
  14.     "Message",
  15.     "-------",
  16.     "New",
  17.     "Archive",
  18.     "Delete", "",
  19.     "Folder",
  20.     "-------",
  21.     "Inbox",
  22.     "Sent",
  23.     "Archive", "",
  24.     "Options",
  25.     "-------",
  26.     "UserID",
  27.     "Logout"
  28. }
  29.  
  30. -- Functions
  31. -- Functions from my ComputerCraft YouTube Program
  32. local function centerWrite( text, yPos, txtCol, bgCol )
  33.     term.setCursorPos( ( screenX - #text ) / 2, yPos )
  34.     term.setTextColour( txtCol )
  35.     term.setBackgroundColour( bgCol )
  36.     write( text )
  37. end
  38.  
  39. local function leftWrite( text, yPos, txtCol, bgCol )
  40.     term.setCursorPos( 1, yPos )
  41.     term.setTextColour( txtCol )
  42.     term.setBackgroundColour( bgCol )
  43.     write( text )
  44. end
  45.  
  46. local function rightWrite( text, yPos, txtCol, bgCol )
  47.     term.setCursorPos( screenX - #text + 1, yPos )
  48.     term.setTextColour( txtCol )
  49.     term.setBackgroundColour( bgCol )
  50.     write( text )
  51. end
  52.  
  53. local function sWrite( text, xPos, yPos, txtCol, bgCol )
  54.     term.setCursorPos( xPos, yPos )
  55.     term.setTextColour( txtCol )
  56.     term.setBackgroundColour( bgCol )
  57.     write( text )
  58. end
  59.  
  60. local function transEffect( s )
  61.     if s == "out" then
  62.         term.setBackgroundColour( colours.cyan )
  63.         for x = 1, 9 do
  64.             term.setBackgroundColour( colours.cyan )
  65.             for y = 3, screenY - 1 do
  66.                 term.setCursorPos( x, y )
  67.                 write( ' ' )
  68.             end
  69.             term.setTextColour( colours.black )
  70.             for i = 1, #sidebar_text do
  71.                 term.setCursorPos( 2, i + 2 )
  72.                 write( sidebar_text[i]:sub( math.abs( x - 10 ) ) )
  73.             end
  74.             sleep( 0.05 )
  75.         end
  76.     elseif s == "in" then
  77.         term.setTextColour( colours.white )
  78.         for x = 10, 2, -1 do
  79.             for y = 3, screenY - 1 do
  80.                 term.setBackgroundColour( y == 3 and colours.blue or colours.black )
  81.                 term.setCursorPos( x, y )
  82.                 write( ( x == 10 and y == 3 ) and 'j' or ( x == 9 and y == 3 ) and 'b' or ( x == 8 and y == 3 ) and 'u' or ( x == 7 and y == 3 ) and 'S' or ' ' )
  83.             end
  84.             sleep( 0.05 )
  85.         end
  86.     end
  87.     term.setBackgroundColour( colours.red )
  88.     term.setTextColour( colours.white )
  89.     for y = 3, screenY - 1 do
  90.         term.setCursorPos( s == "out" and 10 or 1, y )
  91.         write( y == math.floor( ( 3 + ( screenY - 1 ) ) / 2 ) and (s == "out" and '<' or '>') or ' ' )
  92.     end
  93. end
  94.  
  95. -- Other functions
  96. local function drawBG( t )
  97.     term.clear()
  98.     paintutils.drawImage( t, 1, 1 )
  99.    
  100.     -- Header
  101.     centerWrite( "SmartMail Client", 1, colours.red, colours.orange )
  102.     leftWrite( "Computer ID: " .. os.getComputerID(), 2, colours.red, colours.orange )
  103.     rightWrite( "User ID: " .. os.getComputerID(), 2, colours.red, colours.orange )     -- Not sure what the difference between user ID and computer ID as they are the same in your screenshot :P
  104.    
  105.     -- Sidebar '>'
  106.     if not sideBarOut then sWrite( ">", 1, math.floor( ( 3 + ( screenY - 1 ) ) / 2 ), colours.white, colours.red ) end
  107.    
  108.     -- Email table section
  109.     sWrite( "     Subject       |    From     |    Received    ", 2, 3, colours.white, colours.blue )
  110.    
  111.     -- Footer
  112.     leftWrite( "Status: " .. status_user, screenY, colours.white, colours.blue )
  113.     centerWrite( "Status: " .. stutus_connection, screenY, colours.white, colours.blue )
  114.     rightWrite( textutils.formatTime( os.time(), true ), screenY, colours.white, colours.blue )
  115. end
  116.  
  117. local function checkClick( tab, cx, cy, sx, ex, sy )
  118.     for i, v in pairs( tab ) do
  119.         if cx >= sx and cx <= ex and cy == sy + i - 1 then
  120.             return true, v
  121.         end
  122.     end
  123.     return false
  124. end
  125.  
  126. -- Main
  127. drawBG( bg )
  128.  
  129. parallel.waitForAny(
  130.     function()
  131.         while true do
  132.             sWrite( "     Sidebar: " .. ( sideBarOut and 'out' or 'in ' ), 15, 5, colours.white, colours.black )
  133.             sWrite( "Last clicked: " .. ( last_clicked or 'none' ) .. '    ', 15, 6, colours.white, colours.black ) -- The extra spaces to cut out text from previous writes
  134.             local ev = { os.pullEvent() }
  135.             if ev[1] == "mouse_click" and ev[2] == 1 then
  136.                 if ev[3] == 1 and not sideBarOut then
  137.                     transEffect( 'out' )
  138.                     sideBarOut = not sideBarOut
  139.                 elseif ev[3] == 10 and sideBarOut then
  140.                     transEffect( 'in' )
  141.                     sideBarOut = not sideBarOut
  142.                 elseif sideBarOut then
  143.                     local bValid, clicked = checkClick( sidebar_text, ev[3], ev[4], 1, 10, 3 )
  144.                     if bValid and clicked ~= "" and clicked ~= "-------" then last_clicked = clicked end
  145.                     -- Code would be here to check what was clicked
  146.                 end
  147.             end
  148.         end
  149.     end,
  150.     function()
  151.         while true do
  152.             local ev = { os.pullEvent() }
  153.             if ev[1] == "timer" and ev[2] == updateTime then
  154.                 updateTime = os.startTimer( 1 )
  155.                 rightWrite( textutils.formatTime( os.time(), true ), screenY, colours.white, colours.blue )
  156.             end
  157.         end
  158.     end
  159. )
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement