Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- os.loadAPI("lg/lg")
- local _shell = _G.shell
- _G.shell = shell
- os.loadAPI("tos/tos")
- _G.shell = shell
- lg.setup("term")
- lg.setBackgroundColor(colors.white)
- local bg_col = colors.lightGray
- if tos.getPersistentVariable("color") ~= nil and lg.isColor(tos.getPersistentVariable("color")) then
- bg_col = lg.getColor(tos.getPersistentVariable("color"))
- end
- lg.fillScreen(bg_col)
- if tos.getPersistentVariable("uap_upd") ~= "ok" then
- shell.run("delete","/uap")
- shell.run("pastebin","get","1Nax8cQm","/uap")
- tos.writePersistentVariable("uap_upd","ok")
- end
- lg.setTextColor(colors.black)
- local up_col = tos.getPersistentVariable("upl_col")
- if up_col and lg.isColor(up_col) then
- lg.fill(1, 26, 2, 2,lg.getColor(up_col))
- else
- upl_col = "gray"
- lg.fill(1,26,2,2,colors.gray)
- end
- local up_sym = tos.getPersistentVariable('upl_sym')
- if not up_sym then up_sym = " " end
- for i = 1,26 do
- lg.drawText(i,2,colors.white,lg.getColor(up_col),up_sym)
- end
- local dwl_col = tos.getPersistentVariable("dwl_col")
- if dwl_col and lg.isColor(dwl_col) then
- lg.fill(1,26,19,19,lg.getColor(tos.getPersistentVariable('dwl_col')))
- else
- dwl_col = "gray"
- lg.fill(1,26,19,19,colors.gray)
- end
- lg.drawBT("bank",3,8,4,7,colors.black,colors.orange," crea\n bank")
- lg.drawBT('shell', 11,16,4,7,colors.green,colors.black," Bios")
- lg.drawBT('updater', 3,8,9,12,colors.white,colors.blue," Upd\n ate")
- lg.drawBT('pong',19,24,4,7,colors.white,colors.black,' ping\n pong')
- lg.drawBT('dgame',11,16,9,12,colors.white,colors.orange,' DRIVE\n GAME')
- lg.drawBT('creabet',19,24,9,12,colors.white,colors.green,' CREA\n bet')
- lg.drawBT('settings',3,8,14,17,colors.white,colors.gray,' sett\n ings')
- lg.drawBT("files",11,16,14,17,colors.orange,colors.white," FILE\n MGR")
- while true do
- local event, button, x, y = os.pullEvent( "mouse_click" )
- if (lg.isButton(x,y) == "bank") then
- tos.openFile('/bank/bank')
- elseif (lg.isButton(x,y) == "updater") then
- tos.openFile("/upd/upd")
- elseif (lg.isButton(x,y) == 'pong') then
- tos.openFile('/pong/pong')
- elseif (lg.isButton(x,y) == 'dgame') then
- tos.openFile('/drivegame/drivegame')
- elseif (lg.isButton(x,y) == 'creabet') then
- tos.openFile('/kazik/kazik')
- elseif (lg.isButton(x,y) == 'settings') then
- tos.openFile('/settings/settings')
- elseif (lg.isButton(x,y) == 'files') then
- tos.openFile('/files/files',true)
- elseif (lg.isButton(x,y) == "shell") then
- --lg.drawImage(1,15,"gui.nfp")
- term.clear()
- term.setCursorPos(1,1)
- break
- end
- end
- lg.exit()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement