Advertisement
Enderbane

Explorer

Apr 7th, 2014
125
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.66 KB | None | 0 0
  1. local tArgs = {...};
  2. local path = tArgs[1] or "/";
  3. local canViewHidden = tArgs[2] or false;
  4.  
  5. local col = term.setTextColor;
  6. local bgc = term.setBackgroundColor;
  7. local cpos = term.setCursorPos;
  8.  
  9.  
  10.  
  11.  
  12. local function drawWindow()
  13.     draw.rectFill(1,1,51,18,colors.white);
  14.     draw.rect(1,1,51,18,colors.lightBlue);
  15.     col(colors.white);
  16.     draw.centerText("Explorer", 1);
  17.     draw.line(2,2,50,2,colors.yellow);
  18.     cpos(2,2);
  19.     write(path);
  20.    
  21.     local list = fs.list(path);
  22.     local dirList = {};
  23.     local fileList = {};
  24.     local hDirList = {};
  25.     local hFileList = {};
  26.     for _, temp in ipairs(list) do
  27.         if fs.isDir(path.."/"..temp) and string.sub(temp,1,1) == "." then
  28.             hDirList[#hDirList + 1] = temp;
  29.         elseif fs.isDir(path.."/"..temp) then
  30.             dirList[#dirList + 1] = temp;
  31.         elseif string.sub(temp,1,1) == "." then
  32.             hFileList[#hFileList + 1] = temp;
  33.         else
  34.             fileList[#fileList + 1] = temp;
  35.         end
  36.     end
  37.     bgc(colors.white);
  38.     col(colors.green);
  39.     cpos(2,3);
  40.    
  41.     local lastY = 0;
  42.     for i, hFolderName in ipairs(hDirList) do
  43.         bgc(colors.cyan);
  44.         write(" ");
  45.         bgc(colors.white);
  46.         write(hFolderName);
  47.         cpos(2,i+3);
  48.         lastY = i;
  49.     end
  50.     for i, folderName in ipairs(dirList) do
  51.         bgc(colors.yellow);
  52.         write(" ");
  53.         bgc(colors.white);
  54.         write(folderName);
  55.         cpos(2,i+3);
  56.         lastY = lastY + i;
  57.     end
  58.     for i, hFileName in ipairs(hFileList) do
  59.         bgc(colors.red);
  60.         write(" ");
  61.         bgc(colors.white);
  62.         write(hFileName);
  63.         cpos(2,i+3);
  64.         lastY = lastY + i;
  65.     end
  66.    
  67.     col(colors.gray);
  68.     for i, fileName in ipairs(fileList) do
  69.         bgc(colors.lime);
  70.         write(" ");
  71.         bgc(colors.white);
  72.         write(fileName);
  73.         cpos(2,i+lastY+3);
  74.     end
  75. end
  76.  
  77. drawWindow();
  78. term.setCursorPos(1,19);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement