Advertisement
sidekick_

Sample OS

Jan 16th, 2013
490
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 10.76 KB | None | 0 0
  1. --[[
  2.      This program was made by solely by remiX for users
  3.      that are wanting to make/design their own 'OS'. This
  4.      can be used as an example/sample for themselves.
  5.      This program is freeware and credits is required if
  6.      used in anyway.
  7. --]]
  8.  
  9. --[[ Variables ]] --
  10. screenX, screenY = term.getSize()
  11. mainProg = true
  12. showTime = true
  13.  
  14. -- Tables
  15. -- t_osStuff table contains the stuff that will appear on the desktop
  16. t_osStuff = {
  17.     {text = "-------", option = "startMenu", x = 1, y = screenY - 1, textCol = colours.black, bgCol = colours.blue},
  18.     {text = "|Start|", option = "startMenu", x = 1, y = screenY, textCol = colours.black, bgCol = colours.blue}
  19. }
  20. -- t_startMenu is the stuff that will appear for when start is clicked,
  21. -- Also contains the other stuff within it, like the help and programs menu.
  22. t_startMenu = {
  23.     ["main"] = {
  24.         {text = "Programs", option = "programsMenu", x = 2, y = 11, textCol = colours.black, bgCol = colours.white},
  25.         {text = "Help", option = "helpMenu", x = 2, y = 12, textCol = colours.black, bgCol = colours.white},
  26.         {text = "Reboot", option = function() os.reboot() end, x = 13, y = 17, textCol = colours.white, bgCol = colours.black}
  27.     },
  28.     ["helpMenu"] = {
  29.         textCol = colours.black,
  30.         bgCol = colours.white,
  31.         mainText = "Help",
  32.         text = {
  33.             "first",
  34.             "Second line of help",
  35.             "Third line of help",
  36.             "Third line of help",
  37.             "First line of help",
  38.             "Second line of help",
  39.             "Third line of help",
  40.             "Third line of help",
  41.             "First line of help",
  42.             "Second line of help",
  43.             "Third line of help",
  44.             "Third line of help",
  45.             "First line of help",
  46.             "Second line of help",
  47.             "Third line of help",
  48.             "Third line of help",
  49.             "First line of help",
  50.             "Second line of help",
  51.             "Third line of help",
  52.             "Third line of help",
  53.             "First line of help",
  54.             "Second line of help",
  55.             "3rd last",
  56.             "2nd last",
  57.             "last"
  58.         }
  59.     },
  60.     ["programsMenu"] = {
  61.         textCol = colours.black,
  62.         bgCol = colours.white,
  63.         mainText = "Programs",
  64.         startX = 3,
  65.         startY = 3,
  66.         programs = {
  67.             {text = "MineSweeper", path = "progs/minesweeper"},
  68.             {text = "Thunderbird", path = "progs/thunderbird"},
  69.             {text = "Lightshot", path = "progs/lightshot"},
  70.             {text = "CCiri", path = "games/cciri"},
  71.         }
  72.     }
  73. }
  74.  
  75. --[[ Functions ]] --
  76.  
  77. --[[ isValidMouseClick function:
  78.     Takes: table, which key to return within that table, x value
  79.            and y value.
  80.     Returns: true if valid click for that table with the key,
  81.              false and nil if not.
  82.     Basically, it loops through a specified table and checks to see
  83.     if the specified x and y values match up with the ones with the
  84.     table plus the length of the text for precision.
  85. --]]
  86. function isValidMouseClick(_table, _returnKey, mx, my)
  87.     for _, v in pairs(_table) do
  88.         if mx >= v.x and mx < v.x + #v.text
  89.         and my == v.y then
  90.             return true, v[_returnKey]
  91.         end
  92.     end
  93.     return false, nil
  94. end
  95.  
  96. --[[ popupMenu function is used when you rightclick
  97.      while at the desktop for a list of options to
  98.      pop up.
  99.      Takes: x and y values, background colour, text
  100.             colour and the arguments (which are the
  101.             options)
  102.      Returns: the selected option
  103. --]]
  104.  
  105. function popupMenu(x, y, _bgColour, _textColour, ...)
  106.     bgCol = _bgColour or colours.black
  107.     textCol = _textColour or colours.white
  108.     local args = {...}
  109.     l = 0
  110.     for i = 1, #args do
  111.         if l < #args[i] then
  112.             l = (#args[i] + 4)
  113.         end
  114.     end
  115.     local objects = {}
  116.     local bMenuDown = (y + 3 + #args) <= screenY
  117.     local bMenuRight = (x + l - 2) <= screenX
  118.     startX = bMenuRight and x or (x - l + 2)
  119.     startY = bMenuDown and y or (y - (#args + 1))
  120.     for i,v in pairs(args) do
  121.         objects[i] = {
  122.             x = startX + 1;
  123.             y = i + startY;
  124.             text = v;
  125.             }
  126.     end
  127.     term.setBackgroundColour(bgCol)
  128.     term.setCursorPos(startX-1, startY)
  129.     write(string.rep(" ", l))
  130.     term.setCursorPos(startX-1, startY+#objects+1)
  131.     write(string.rep(" ", l))
  132.     term.setTextColour(textCol)
  133.     for _, option in pairs(objects) do
  134.         term.setCursorPos(startX - 1, option.y)
  135.         write(string.rep(" ", l))
  136.         term.setCursorPos(option.x, option.y)
  137.         term.write(option.text)
  138.     end
  139.     local _, button, mx, my = os.pullEvent('mouse_click')
  140.     return isValidMouseClick(objects, "text", mx, my)
  141. end
  142.  
  143. --[[ drawMainOS function is for drawing the desktop
  144.      of the program with all the colours etc.
  145. --]]
  146.  
  147. function drawMainOS()
  148.     term.setBackgroundColour(colours.grey)
  149.     term.clear()
  150.     sTime = textutils.formatTime(os.time(), false)
  151.         term.setCursorPos(screenX - #sTime - 2, 1)
  152.     term.setTextColour(colours.white)
  153.     write(sTime)
  154.     term.setCursorPos(3, 1)
  155.     term.setTextColour(colours.lightBlue)
  156.     write("Sample OS")
  157.     term.setBackgroundColour(colours.red)
  158.     term.setCursorPos(1, 2)
  159.     write(string.rep(" ", screenX))
  160.     term.setCursorPos(1, screenY - 1)
  161.     write(string.rep(" ", screenX))
  162.     term.setCursorPos(1, screenY)
  163.     write(string.rep(" ", screenX))
  164.     for _, tab in pairs(t_osStuff) do
  165.         term.setCursorPos(tab.x, tab.y)
  166.         term.setTextColour(tab.textCol)
  167.         term.setBackgroundColour(tab.bgCol)
  168.         write(tab.text)
  169.     end
  170. end
  171.  
  172. --[[ MC_time function for the time at the
  173.      top right
  174. --]]
  175. function MC_time()
  176.     while true do
  177.         if showTime then
  178.             sTime = textutils.formatTime(os.time(), false)
  179.             term.setCursorPos(screenX - #sTime - 2, 1)
  180.             term.setTextColour(colours.white)
  181.             term.setBackgroundColour(colours.grey)
  182.             write(sTime)
  183.             sleep(1)
  184.         else sleep(5) end
  185.     end
  186. end
  187.  
  188. local function cWrite(...)
  189.   local curColor
  190.   for i=1, #arg do -- arg is ...
  191.     if type(arg[i]) == 'number' then
  192.       curColor = arg[i]
  193.     else
  194.       if curColor then
  195.         term.setTextColor(curColor)
  196.       end
  197.       write(arg[i])
  198.     end
  199.   end
  200. end
  201.  
  202. --[[ startMenu function is for when the bottom
  203.      left is clicked (the start button). This
  204.      displays various things, such as 'Programs',
  205.      'Help', and 'Reboot' and all do their own thing.
  206. --]]
  207.  
  208. function startMenu()
  209.     for y = 10, screenY - 2 do
  210.         for x = 1, 20 do
  211.             term.setBackgroundColour( (x >= 1 and x <= 10) and colours.white or colours.black)
  212.             term.setCursorPos(x, y)
  213.             write(" ")
  214.         end
  215.     end
  216.     term.setBackgroundColour(colours.white)
  217.     for _, tab in pairs(t_startMenu["main"]) do -- prints all text for the start menu
  218.         term.setCursorPos(tab.x, tab.y)
  219.         term.setTextColour(tab.textCol)
  220.         term.setBackgroundColour(tab.bgCol)
  221.         write(tab.text)
  222.     end
  223.     --[[ This loop waits for a click within the start-up
  224.         menu. It waits until a click is performed on one
  225.         of the options or if the click is outside the menu,
  226.         which it thens returns to the main OS screen.
  227.         If an option is clicked, it then performs that
  228.         option
  229.     --]]
  230.     local running = true
  231.     while running do
  232.         local _, button, x, y = os.pullEventRaw("mouse_click")
  233.         bValidClick, option = isValidMouseClick(t_startMenu["main"], "option", x, y)
  234.         if bValidClick then
  235.             if type(option) == "function" then
  236.                 option()
  237.             else
  238.                 term.setBackgroundColour(t_startMenu[option].bgCol)
  239.                 term.clear()
  240.                 term.setBackgroundColour(colours.red)
  241.                 term.setCursorPos(screenX, 1)
  242.                 write("X")
  243.                 term.setBackgroundColour(colours.grey)
  244.                 term.setCursorPos(1, 1)
  245.                 write(string.rep(" ", screenX-1))
  246.                 term.setTextColour(colours.lightBlue)
  247.                 term.setCursorPos(2, 1)
  248.                 write(t_startMenu[option].mainText)
  249.                 if option == "programsMenu" then
  250.                     local yPos = 1
  251.                     while true do
  252.                         for i = 3, screenY do
  253.                             term.setBackgroundColour(t_startMenu["programsMenu"].bgCol)
  254.                             term.setCursorPos(t_startMenu["programsMenu"].startX, i)
  255.                             if t_startMenu["programsMenu"].programs[yPos + i - 3] then
  256.                                 term.clearLine()
  257.                                 cWrite(colours.red, "[", colours.yellow, "RUN", colours.red, "]  ", t_startMenu["programsMenu"].textCol, t_startMenu["programsMenu"].programs[yPos + i - 3].text)
  258.                             else break end
  259.                         end
  260.                         ev, button, x, y = os.pullEvent()
  261.                         if ev == "mouse_scroll" then
  262.                             if button == -1 and yPos > 1 then
  263.                                 yPos = yPos - 1
  264.                             elseif button == 1 and yPos < (#t_startMenu["programsMenu"].programs - (screenY - 3)) then
  265.                                 yPos = yPos + 1
  266.                             end
  267.                         elseif ev == "mouse_click" then
  268.                             if button == 1 and x == screenX and y == 1 then
  269.                                 running = false
  270.                                 break
  271.                             elseif button == 1 and x >= 3 and x <= 7 and y >= 3 then
  272.                                 showTime = false
  273.                                 term.setBackgroundColour(colours.black) term.setTextColour(colours.white) term.clear()
  274.                                 sleep(1)
  275.                                 if fs.exists(t_startMenu["programsMenu"].programs[y + yPos - 3].path) then
  276.                                     shell.run(t_startMenu["programsMenu"].programs[y + yPos - 3].path)
  277.                                 else
  278.                                     error("Invalid file: " .. t_startMenu["programsMenu"].programs[y + yPos - 3].path)
  279.                                 end
  280.                                 running = false
  281.                                 showTime = true
  282.                                 break
  283.                             end
  284.                         end
  285.                     end
  286.                 else
  287.                     local scroll = option == "helpMenu"
  288.                     if scroll then
  289.                         local yPos = 1
  290.                         while true do
  291.                             term.setTextColour(t_startMenu[option].textCol)
  292.                             term.setBackgroundColour(t_startMenu[option].bgCol)
  293.                             for i = 2, screenY do
  294.                                 term.setCursorPos(1, i)
  295.                                 term.clearLine()
  296.                                 if not t_startMenu[option].text[yPos + i - 2] then break
  297.                                 else write(t_startMenu[option].text[yPos + i - 2]) end
  298.                             end
  299.                             local ev, button, x, y = os.pullEvent()
  300.                             if ev == "mouse_scroll" then
  301.                                 if button == -1 and yPos > 1 then
  302.                                     yPos = yPos - 1
  303.                                 elseif button == 1 and yPos <= (#t_startMenu[option].text - (screenY - 4)) then
  304.                                     yPos = yPos + 1
  305.                                 end
  306.                             elseif ev == "mouse_click" then
  307.                                 if button == 1 and x == screenX and y == 1 then
  308.                                     running = false
  309.                                     break
  310.                                 end
  311.                             end
  312.                         end
  313.                     end
  314.                 end
  315.             end
  316.         else
  317.             if not (x >= 1 and x <= 20 and y >= 10 and y <= screenY - 2) then
  318.                 running = false
  319.             end
  320.         end
  321.     end
  322. end
  323.  
  324. function main()
  325.     while mainProg do
  326.         drawMainOS()
  327.         e = {os.pullEventRaw()}
  328.         if e[1] == "mouse_click" then
  329.             if e[2] == 2 and e[4] >= 3 and e[4] <= screenY - 2 then -- brings up Popup menu
  330.                 bValidClick, option = popupMenu(e[3], e[4], colours.black, colours.lightBlue, "Option1", "Option2", "Option3")
  331.                 --[[ Add an if, elseif, end statement here for
  332.                      each option and what it must do
  333.                 --]]
  334.             elseif e[2] == 1 then
  335.                 bMouseClick, option = isValidMouseClick(t_osStuff, "option", e[3], e[4]) -- checks to see if the position clicked is a valid area
  336.                 if bMouseClick then
  337.                     if option == "startMenu" then
  338.                         startMenu()
  339.                     end
  340.                 end
  341.             end
  342.         elseif e[1] == "terminate" then
  343.             term.setCursorPos(1, 1)
  344.             term.setBackgroundColour(colours.black)
  345.             term.clear()
  346.             term.setTextColour(colours.red)
  347.             print("Terminated\n")
  348.             term.setTextColour(colours.white)
  349.             mainProg = false
  350.         end
  351.     end
  352. end
  353.  
  354. if not term.isColor() then
  355.     print("This program requires an advanced computer.")
  356.     return
  357. end
  358.  
  359. parallel.waitForAny(main, MC_time)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement