Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- os.loadAPI("lg/lg")
- os.loadAPI("tos/tos")
- os.loadAPI("uap")
- uap.terminate()
- lg.setup("term")
- screen = 1
- lg.fillScreen(colors.black)
- img3 = {"\x9f|0|0|lightBlue|white","\x8f|1|0|lightBlue|white","\x8f|2|0|lightBlue|white","\x90|3|0|white|orange",
- "\x95|0|1|lightBlue|white","\space|1|1|lightBlue|white","\space|2|1|lightBlue|white","\x95|3|1|white|lightBlue",
- "\x8a|0|2|white|green","\x8f|1|2|white|green","\x8f|2|2|white|green","\x85|3|2|white|green"}
- img = {"\x83|0|0|yellow|orange","\x83|1|0|yellow|orange","\x83|2|0|yellow|black","\x83|3|0|yellow|black",
- "\space|0|1|yellow|yellow","\space|1|1|yellow|yellow","\space|2|1|yellow|yellow","\space|3|1|yellow|yellow"}
- img2 = {"\x83|0|0|white|lightBlue","\x83|1|0|white|lightBlue","\x83|2|0|white|lightBlue","\x83|3|0|white|lightBlue",
- "\x8c|1|1|blue|white","\x9d|0|1|blue|white","\x9c|2|1|blue|white","\x91|3|1|white|blue",
- "\x88|0|2|white|blue","\x8c|1|2|white|blue","\x8c|2|2|white|blue","\space|3|2|white|yellow"}
- --lg.drawAdvancedImage(2,2,img)
- --lg.drawAdvancedImage(2,10,img2)
- local folderTable = {}
- local fileTable = {}
- local currentPath = "/"
- local function scanDirectory(path)
- folderTable = {}
- fileTable = {}
- local items = fs.list(path)
- for _, item in ipairs(items) do
- local itemPath = fs.combine(path, item)
- if fs.isDir(itemPath) then
- if itemPath ~= ".cbuffer" and itemPath ~= ".variables" then
- table.insert(folderTable, itemPath)
- end
- else
- table.insert(fileTable, itemPath)
- end
- end
- end
- scanDirectory(currentPath)
- yoffset = 0
- -- Print the folder and file paths
- function drawFiles(offset,currentPath,highlight)
- lg.fillScreen(colors.black)
- fx = 2
- fy = 5 - offset
- maxOffset = 0
- lg.clearBTNS()
- if highlight ~= nil then lg.drawBT("rename",lg.getSize().x-8,lg.getSize().x-8,2,2,colors.white,colors.orange,"R") end
- if highlight ~= nil then lg.drawBT("copy",lg.getSize().x-6,lg.getSize().x-6,2,2,colors.white,colors.orange,"C") end
- if highlight ~= nil then lg.drawBT("remove",lg.getSize().x-10,lg.getSize().x-10,2,2,colors.white,colors.orange,"D") end
- lg.drawBT("paste",lg.getSize().x-6,lg.getSize().x-4,2,2,colors.white,colors.orange,"P")
- for _, folder in ipairs(folderTable) do
- maxOffset = maxOffset + 1
- if maxOffset and folder == highlight then colr = colors.lime else colr = colors.white end
- lg.drawBT(folder,fx,fx+3,fy,fy+4,colors.black,colors.black," ")
- lg.drawAdvancedImage(fx,fy,img)
- folder = folder:gsub(currentPath, "")
- lg.drawText(fx,fy+3,colr,colors.black,folder:sub(1, 4))
- if string.len(folder) > 8 then
- lg.drawText(fx,fy+4,colr,colors.black,folder:sub(-4, -1))
- end
- fx = fx + 5
- if (fx > 20) then fx = 2 fy = fy + 6 end
- end
- for _, folder in ipairs(fileTable) do
- maxOffset = maxOffset + 1
- if maxOffset and folder == highlight then colr = colors.lime else colr = colors.white end
- lg.drawBT("f|"..folder,fx,fx+3,fy,fy+4,colors.black,colors.black," ")
- if string.find(folder,".nfp") then lg.drawAdvancedImage(fx,fy,img3) else
- lg.drawAdvancedImage(fx,fy,img2)
- end
- if not string.find(folder,currentPath) then
- folder = folder:gsub(currentPath, "")
- end
- lg.drawText(fx,fy+3,colr,colors.black,folder:sub(1, 4))
- if string.len(folder) > 8 then
- lg.drawText(fx,fy+4,colr,colors.black,folder:sub(-4, -1))
- end
- fx = fx + 5
- if (fx > 20) then fx = 2 fy = fy + 6 end
- end
- local percentage = 0
- local rp = 0
- if (#fileTable + #folderTable > 12) then
- if offset == 0 then
- lg.drawBT("up",lg.getSize().x,lg.getSize().x,17,17,colors.white,colors.gray,"\30")
- else
- lg.drawBT("up",lg.getSize().x,lg.getSize().x,17,17,colors.white,colors.yellow,"\30")
- end
- lg.drawBT("down",lg.getSize().x,lg.getSize().x,19,19,colors.white,colors.yellow,"\31")
- lg.fill(lg.getSize().x,lg.getSize().x,5,15,colors.gray)
- percentage = (offset / 70) * #fileTable + #folderTable
- rp = (((math.floor(percentage) / 10) - 1) * 2) - 1
- lg.drawText(lg.getSize().x,5+rp,colors.lightGray,colors.gray,"\8")
- end
- lg.fill(1,lg.getSize().x-1,1,1,colors.orange)
- lg.drawBT("close",lg.getSize().x,lg.getSize().x,1,1,colors.white,colors.red,"x")
- lg.drawText(2,1,colors.white,colors.orange,"File manager")
- lg.drawBT("create",15,22,1,1,colors.orange,colors.white," Create")
- lg.fill(1,lg.getSize().x-1,2,2,colors.yellow)
- lg.drawText(2,2,colors.white,colors.orange,currentPath)
- lg.drawBT("back",lg.getSize().x-2,lg.getSize().x,2,2,colors.orange,colors.white,"/..")
- if tos.getPersistentVariable("copied") ~= "false" and tos.getPersistentVariable("copied") ~= nil then
- lg.drawText(lg.getSize().x-4,2,colors.white,colors.orange,"P")
- end
- --lg.drawText(1,1,colors.white,colors.black,tos.getPersistentVariable("copied"))
- end
- drawFiles(yoffset,currentPath)
- for _, file in ipairs(fileTable) do
- end
- function debug(txt)
- lg.drawText(1,1,colors.white,colors.black,txt)
- end
- local bt = nil
- local selectedFolder = nil
- while true do
- local event, button, x, y = os.pullEvent( "mouse_click" )
- --debug(lg.isButton(x,y ))
- if screen == 1 and lg.isButton(x,y) == "down" then
- yoffset = yoffset + 6
- drawFiles(yoffset,currentPath)
- elseif screen == 1 and lg.isButton(x,y) == "up" then
- if yoffset > 0 then
- yoffset = yoffset - 6
- drawFiles(yoffset,currentPath)
- end
- elseif screen == 1 and lg.isButton(x,y) == "close" then os.reboot()
- elseif screen == 1 and lg.isButton(x,y) == "create" then
- createDialog = lg.createWindow(5,8,18,6,true)
- screen =2
- createDialog:fillScreen(colors.white)
- createDialog:drawText(2,2,colors.black,colors.white,"Name")
- createDialog:drawInput("name",2,15,3,3,15)
- createDialog:drawBT("createItem",2,7,5,5,colors.white,colors.orange," File")
- createDialog:drawBT("createFolder",9,15,5,5,colors.white,colors.orange," Folder")
- createDialog:drawBT("close",18,18,1,1,colors.white,colors.red,"X")
- local nm = 1
- local function generateRandomFileName()
- -- Generate a random file name
- local randomName = "newFile"..nm
- nm = nm + 1
- return randomName
- end
- local function fileExists(fileName)
- -- Check if the file exists
- return fs.exists(fileName)
- end
- local randomName = generateRandomFileName()
- while fileExists(randomName) do
- randomName = generateRandomFileName()
- end
- name = randomName
- while true do
- local event, button, x, y = os.pullEvent( "mouse_click" )
- x = x - 4
- y = y - 7
- btc = createDialog:isButton(x,y)
- if createDialog:isInput(x,y) then
- name = createDialog:getInput(x,y)
- end
- if createDialog:isButton(x,y) == "close" then break
- elseif btc == "createFolder" then
- os.sleep(0.5)
- createDialog:fillScreen(colors.white)
- createDialog:drawText(2,2,colors.black,colors.white,"Folder created!")
- createDialog:drawText(2,3,colors.black,colors.white,currentPath..name)
- os.sleep(1)
- createDialog:hide()
- local directoryName = currentPath..name
- shell.run("mkdir",directoryName)
- break
- elseif btc == "createItem" then
- os.sleep(0.5)
- createDialog:fillScreen(colors.white)
- createDialog:drawText(2,2,colors.black,colors.white,"File created!")
- createDialog:drawText(2,3,colors.black,colors.white,currentPath..name)
- os.sleep(1)
- createDialog:hide()
- if string.find(name,".nfp") then shell.run("paint",currentPath..name) else shell.run("edit",currentPath..name) end
- break
- end
- end
- createDialog:hide()
- screen = 1
- scanDirectory(currentPath)
- yoffset = 0
- selectedFolder = nil
- drawFiles(yoffset,currentPath,selectedFolder)
- elseif screen == 1 and lg.isButton(x,y) == "copy" then
- if fs.exists("/.cbuffer/") then shell.run("delete","/.cbuffer/") end
- shell.run("copy",selectedFolder ,"/.cbuffer/"..selectedFolder:match("/([^/]+)$"))
- lg.drawText(2,1,colors.white,colors.orange,"Copied succesfully! ")
- os.sleep(0.5)
- tos.writePersistentVariable("copied",selectedFolder:match("/([^/]+)$"))
- screen = 1
- scanDirectory(currentPath)
- selectedFolder = nil
- drawFiles(yoffset,currentPath,selectedFolder)
- elseif screen == 1 and lg.isButton(x,y) == "paste" then
- shell.run("copy","/.cbuffer/"..tos.getPersistentVariable("copied"),currentPath..tos.getPersistentVariable("copied") )
- tos.writePersistentVariable("copied","false")
- lg.drawText(2,1,colors.white,colors.orange,"Pasted succesfully! ")
- os.sleep(1)
- screen = 1
- scanDirectory(currentPath)
- selectedFolder = nil
- drawFiles(yoffset,currentPath,selectedFolder)
- elseif screen == 1 and lg.isButton(x,y) == "remove" then
- shell.run("delete",selectedFolder)
- lg.drawText(2,1,colors.white,colors.orange,"Deleted succesfully!")
- os.sleep(1)
- screen = 1
- scanDirectory(currentPath)
- selectedFolder = nil
- drawFiles(yoffset,currentPath,selectedFolder)
- elseif screen == 1 and lg.isButton(x,y) == "rename" then
- renameDialog = lg.createWindow(5,8,18,6,true)
- screen = 3
- renameDialog:fillScreen(colors.white)
- renameDialog:drawText(2,2,colors.black,colors.white,"New name")
- renameDialog:drawInput("name",2,15,3,3,15)
- renameDialog:drawBT("rename",2,7,5,5,colors.white,colors.orange," Done ")
- renameDialog:drawBT("close",18,18,1,1,colors.white,colors.red,"X")
- while true do
- local event, button, x, y = os.pullEvent( "mouse_click" )
- x = x - 4
- y = y - 7
- btr = renameDialog:isButton(x,y)
- if renameDialog:isInput(x,y) then
- name = renameDialog:getInput(x,y)
- end
- if renameDialog:isButton(x,y) == "close" then break
- elseif btr == "rename" then
- os.sleep(0.5)
- renameDialog:fillScreen(colors.white)
- renameDialog:drawText(2,2,colors.black,colors.white,"Renamed!")
- renameDialog:drawText(2,3,colors.black,colors.white,bt.." | "..name)
- os.sleep(1)
- renameDialog:hide()
- shell.run("rename",selectedFolder,currentPath..name)
- break
- end
- end
- renameDialog:hide()
- screen = 1
- scanDirectory(currentPath)
- yoffset = 0
- selectedFolder = nil
- drawFiles(yoffset,currentPath,selectedFolder)
- elseif screen == 1 and lg.isButton(x,y) == "back" then
- currentPath = currentPath:match("(.-)[^/]+/$")
- if not currentPath then
- currentPath = "/"
- end
- scanDirectory(currentPath)
- yoffset = 0
- selectedFolder = nil
- if currentPath == "" or currentPath == " " or not currentPath then
- currentPath = "/"
- end
- drawFiles(yoffset,currentPath,selectedFolder)
- elseif screen == 1 and y > 4 and x < lg.getSize().x then
- -- local id = ((math.floor(y / 5) * 5)/5)
- -- id = id + ((math.floor(x / 6) * 6)/6)
- -- id = (id + 3 * (((math.floor(y / 6) * 6)/6))) - 3
- -- if id == 0 then id = 1 end
- -- if yoffset > 0 then id = id + (yoffset/6)*4 end
- -- if #folderTable >= id then
- -- if id == selectedFolder then
- -- currentPath = "/"..folderTable[id]
- -- yoffset = 0
- -- scanDirectory(currentPath)
- -- drawFiles(yoffset,currentPath)
- -- else
- -- lg.fill(1,lg.getSize().x-4,2,2,colors.yellow)
- -- --lg.drawText(2,2,colors.white,colors.black,id)
- -- lg.drawText(2,2,colors.white,colors.yellow,"SEL_F: /"..folderTable[id])
- -- selectedFolder = id
- -- end
- -- end
- if lg.isButton(x,y) ~= false then
- if not string.find(lg.isButton(x,y),"f|") then
- if lg.isButton(x,y) == selectedFolder then
- currentPath = selectedFolder.."/"
- yoffset = 0
- scanDirectory(currentPath)
- drawFiles(yoffset,currentPath)
- else
- selectedFolder = lg.isButton(x,y)
- drawFiles(yoffset,currentPath,selectedFolder)
- lg.fill(1,lg.getSize().x-4,2,2,colors.yellow)
- -- DEBUG lg.drawText(2,3,colors.white,colors.black,selectedFolder)
- bt = lg.isButton(x,y)
- if #bt > 12 then
- bt = "..." .. string.sub(bt, -9)
- end
- lg.drawText(2,2,colors.white,colors.yellow,"F: /"..bt)
- lg.drawText(lg.getSize().x-8,2,colors.white,colors.orange,"R")
- lg.drawText(lg.getSize().x-6,2,colors.white,colors.orange,"C")
- lg.drawText(lg.getSize().x-10,2,colors.white,colors.orange,"D")
- if tos.getPersistentVariable("copied") ~= "false" and tos.getPersistentVariable("copied") ~= nil then lg.drawText(lg.getSize().x-4,2,colors.white,colors.orange,"P") end
- end
- else
- bt = lg.isButton(x,y):gsub("f|", "")
- if bt == selectedFolder then
- if string.find(bt,".nfp") then shell.run("paint",bt) else
- shell.run("edit",bt)
- end
- selectedFolder = nil
- drawFiles(yoffset,currentPath,selectedFolder)
- else
- selectedFolder = bt
- drawFiles(yoffset,currentPath,selectedFolder)
- lg.fill(1,lg.getSize().x-4,2,2,colors.yellow)
- lg.drawText(2,2,colors.white,colors.black,id)
- if #bt > 12 then
- bt = "..." .. string.sub(bt, -9)
- end
- lg.drawText(2,2,colors.white,colors.yellow,bt)
- lg.drawText(lg.getSize().x-8,2,colors.white,colors.orange,"R")
- lg.drawText(lg.getSize().x-6,2,colors.white,colors.orange,"C")
- lg.drawText(lg.getSize().x-10,2,colors.white,colors.orange,"D")
- if tos.getPersistentVariable("copied") ~= "false" and tos.getPersistentVariable("copied") ~= nil then lg.drawText(lg.getSize().x-4,2,colors.white,colors.orange,"P") end
- end
- end
- end
- end
- end
- lg.exit()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement