Advertisement
TIMAS_Bro

filesMGR

Oct 28th, 2023 (edited)
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 13.94 KB | None | 0 0
  1. os.loadAPI("lg/lg")
  2. os.loadAPI("tos/tos")
  3. os.loadAPI("uap")
  4. uap.terminate()
  5. lg.setup("term")
  6. screen = 1
  7. lg.fillScreen(colors.black)
  8. img3 = {"\x9f|0|0|lightBlue|white","\x8f|1|0|lightBlue|white","\x8f|2|0|lightBlue|white","\x90|3|0|white|orange",
  9. "\x95|0|1|lightBlue|white","\space|1|1|lightBlue|white","\space|2|1|lightBlue|white","\x95|3|1|white|lightBlue",
  10. "\x8a|0|2|white|green","\x8f|1|2|white|green","\x8f|2|2|white|green","\x85|3|2|white|green"}
  11. img = {"\x83|0|0|yellow|orange","\x83|1|0|yellow|orange","\x83|2|0|yellow|black","\x83|3|0|yellow|black",
  12. "\space|0|1|yellow|yellow","\space|1|1|yellow|yellow","\space|2|1|yellow|yellow","\space|3|1|yellow|yellow"}
  13. img2 = {"\x83|0|0|white|lightBlue","\x83|1|0|white|lightBlue","\x83|2|0|white|lightBlue","\x83|3|0|white|lightBlue",
  14. "\x8c|1|1|blue|white","\x9d|0|1|blue|white","\x9c|2|1|blue|white","\x91|3|1|white|blue",
  15. "\x88|0|2|white|blue","\x8c|1|2|white|blue","\x8c|2|2|white|blue","\space|3|2|white|yellow"}
  16. --lg.drawAdvancedImage(2,2,img)
  17. --lg.drawAdvancedImage(2,10,img2)
  18. local folderTable = {}
  19. local fileTable = {}
  20. local currentPath = "/"
  21. local function scanDirectory(path)
  22. folderTable = {}
  23. fileTable = {}
  24. local items = fs.list(path)
  25. for _, item in ipairs(items) do
  26. local itemPath = fs.combine(path, item)
  27. if fs.isDir(itemPath) then
  28. if itemPath ~= ".cbuffer" and itemPath ~= ".variables" then
  29. table.insert(folderTable, itemPath)
  30. end
  31. else
  32. table.insert(fileTable, itemPath)
  33. end
  34. end
  35. end
  36. scanDirectory(currentPath)
  37. yoffset = 0
  38. -- Print the folder and file paths
  39. function drawFiles(offset,currentPath,highlight)
  40. lg.fillScreen(colors.black)
  41. fx = 2
  42. fy = 5 - offset
  43. maxOffset = 0
  44. lg.clearBTNS()
  45. if highlight ~= nil then lg.drawBT("rename",lg.getSize().x-8,lg.getSize().x-8,2,2,colors.white,colors.orange,"R") end
  46. if highlight ~= nil then lg.drawBT("copy",lg.getSize().x-6,lg.getSize().x-6,2,2,colors.white,colors.orange,"C") end
  47. if highlight ~= nil then lg.drawBT("remove",lg.getSize().x-10,lg.getSize().x-10,2,2,colors.white,colors.orange,"D") end
  48. lg.drawBT("paste",lg.getSize().x-6,lg.getSize().x-4,2,2,colors.white,colors.orange,"P")
  49.  
  50. for _, folder in ipairs(folderTable) do
  51. maxOffset = maxOffset + 1
  52. if maxOffset and folder == highlight then colr = colors.lime else colr = colors.white end
  53. lg.drawBT(folder,fx,fx+3,fy,fy+4,colors.black,colors.black," ")
  54. lg.drawAdvancedImage(fx,fy,img)
  55. folder = folder:gsub(currentPath, "")
  56. lg.drawText(fx,fy+3,colr,colors.black,folder:sub(1, 4))
  57. if string.len(folder) > 8 then
  58. lg.drawText(fx,fy+4,colr,colors.black,folder:sub(-4, -1))
  59. end
  60. fx = fx + 5
  61. if (fx > 20) then fx = 2 fy = fy + 6 end
  62. end
  63. for _, folder in ipairs(fileTable) do
  64. maxOffset = maxOffset + 1
  65. if maxOffset and folder == highlight then colr = colors.lime else colr = colors.white end
  66. lg.drawBT("f|"..folder,fx,fx+3,fy,fy+4,colors.black,colors.black," ")
  67. if string.find(folder,".nfp") then lg.drawAdvancedImage(fx,fy,img3) else
  68. lg.drawAdvancedImage(fx,fy,img2)
  69. end
  70. if not string.find(folder,currentPath) then
  71. folder = folder:gsub(currentPath, "")
  72. end
  73. lg.drawText(fx,fy+3,colr,colors.black,folder:sub(1, 4))
  74. if string.len(folder) > 8 then
  75. lg.drawText(fx,fy+4,colr,colors.black,folder:sub(-4, -1))
  76. end
  77. fx = fx + 5
  78. if (fx > 20) then fx = 2 fy = fy + 6 end
  79. end
  80. local percentage = 0
  81. local rp = 0
  82. if (#fileTable + #folderTable > 12) then
  83. if offset == 0 then
  84. lg.drawBT("up",lg.getSize().x,lg.getSize().x,17,17,colors.white,colors.gray,"\30")
  85. else
  86. lg.drawBT("up",lg.getSize().x,lg.getSize().x,17,17,colors.white,colors.yellow,"\30")
  87. end
  88. lg.drawBT("down",lg.getSize().x,lg.getSize().x,19,19,colors.white,colors.yellow,"\31")
  89. lg.fill(lg.getSize().x,lg.getSize().x,5,15,colors.gray)
  90. percentage = (offset / 70) * #fileTable + #folderTable
  91. rp = (((math.floor(percentage) / 10) - 1) * 2) - 1
  92. lg.drawText(lg.getSize().x,5+rp,colors.lightGray,colors.gray,"\8")
  93. end
  94. lg.fill(1,lg.getSize().x-1,1,1,colors.orange)
  95. lg.drawBT("close",lg.getSize().x,lg.getSize().x,1,1,colors.white,colors.red,"x")
  96. lg.drawText(2,1,colors.white,colors.orange,"File manager")
  97. lg.drawBT("create",15,22,1,1,colors.orange,colors.white," Create")
  98. lg.fill(1,lg.getSize().x-1,2,2,colors.yellow)
  99. lg.drawText(2,2,colors.white,colors.orange,currentPath)
  100. lg.drawBT("back",lg.getSize().x-2,lg.getSize().x,2,2,colors.orange,colors.white,"/..")
  101. if tos.getPersistentVariable("copied") ~= "false" and tos.getPersistentVariable("copied") ~= nil then
  102. lg.drawText(lg.getSize().x-4,2,colors.white,colors.orange,"P")
  103. end
  104. --lg.drawText(1,1,colors.white,colors.black,tos.getPersistentVariable("copied"))
  105. end
  106.  
  107. drawFiles(yoffset,currentPath)
  108.  
  109.  
  110. for _, file in ipairs(fileTable) do
  111.  
  112. end
  113. function debug(txt)
  114. lg.drawText(1,1,colors.white,colors.black,txt)
  115. end
  116. local bt = nil
  117. local selectedFolder = nil
  118. while true do
  119. local event, button, x, y = os.pullEvent( "mouse_click" )
  120. --debug(lg.isButton(x,y ))
  121. if screen == 1 and lg.isButton(x,y) == "down" then
  122. yoffset = yoffset + 6
  123. drawFiles(yoffset,currentPath)
  124. elseif screen == 1 and lg.isButton(x,y) == "up" then
  125. if yoffset > 0 then
  126. yoffset = yoffset - 6
  127. drawFiles(yoffset,currentPath)
  128. end
  129. elseif screen == 1 and lg.isButton(x,y) == "close" then os.reboot()
  130. elseif screen == 1 and lg.isButton(x,y) == "create" then
  131. createDialog = lg.createWindow(5,8,18,6,true)
  132. screen =2
  133. createDialog:fillScreen(colors.white)
  134. createDialog:drawText(2,2,colors.black,colors.white,"Name")
  135. createDialog:drawInput("name",2,15,3,3,15)
  136. createDialog:drawBT("createItem",2,7,5,5,colors.white,colors.orange," File")
  137. createDialog:drawBT("createFolder",9,15,5,5,colors.white,colors.orange," Folder")
  138. createDialog:drawBT("close",18,18,1,1,colors.white,colors.red,"X")
  139. local nm = 1
  140. local function generateRandomFileName()
  141. -- Generate a random file name
  142. local randomName = "newFile"..nm
  143. nm = nm + 1
  144. return randomName
  145. end
  146.  
  147. local function fileExists(fileName)
  148. -- Check if the file exists
  149. return fs.exists(fileName)
  150. end
  151.  
  152. local randomName = generateRandomFileName()
  153.  
  154. while fileExists(randomName) do
  155. randomName = generateRandomFileName()
  156. end
  157. name = randomName
  158. while true do
  159. local event, button, x, y = os.pullEvent( "mouse_click" )
  160. x = x - 4
  161. y = y - 7
  162. btc = createDialog:isButton(x,y)
  163. if createDialog:isInput(x,y) then
  164. name = createDialog:getInput(x,y)
  165. end
  166. if createDialog:isButton(x,y) == "close" then break
  167. elseif btc == "createFolder" then
  168. os.sleep(0.5)
  169. createDialog:fillScreen(colors.white)
  170. createDialog:drawText(2,2,colors.black,colors.white,"Folder created!")
  171. createDialog:drawText(2,3,colors.black,colors.white,currentPath..name)
  172. os.sleep(1)
  173. createDialog:hide()
  174. local directoryName = currentPath..name
  175. shell.run("mkdir",directoryName)
  176. break
  177. elseif btc == "createItem" then
  178. os.sleep(0.5)
  179. createDialog:fillScreen(colors.white)
  180. createDialog:drawText(2,2,colors.black,colors.white,"File created!")
  181. createDialog:drawText(2,3,colors.black,colors.white,currentPath..name)
  182. os.sleep(1)
  183. createDialog:hide()
  184. if string.find(name,".nfp") then shell.run("paint",currentPath..name) else shell.run("edit",currentPath..name) end
  185. break
  186. end
  187. end
  188. createDialog:hide()
  189. screen = 1
  190. scanDirectory(currentPath)
  191. yoffset = 0
  192. selectedFolder = nil
  193. drawFiles(yoffset,currentPath,selectedFolder)
  194. elseif screen == 1 and lg.isButton(x,y) == "copy" then
  195. if fs.exists("/.cbuffer/") then shell.run("delete","/.cbuffer/") end
  196. shell.run("copy",selectedFolder ,"/.cbuffer/"..selectedFolder:match("/([^/]+)$"))
  197. lg.drawText(2,1,colors.white,colors.orange,"Copied succesfully! ")
  198. os.sleep(0.5)
  199. tos.writePersistentVariable("copied",selectedFolder:match("/([^/]+)$"))
  200. screen = 1
  201. scanDirectory(currentPath)
  202. selectedFolder = nil
  203. drawFiles(yoffset,currentPath,selectedFolder)
  204. elseif screen == 1 and lg.isButton(x,y) == "paste" then
  205. shell.run("copy","/.cbuffer/"..tos.getPersistentVariable("copied"),currentPath..tos.getPersistentVariable("copied") )
  206. tos.writePersistentVariable("copied","false")
  207. lg.drawText(2,1,colors.white,colors.orange,"Pasted succesfully! ")
  208. os.sleep(1)
  209. screen = 1
  210. scanDirectory(currentPath)
  211. selectedFolder = nil
  212. drawFiles(yoffset,currentPath,selectedFolder)
  213. elseif screen == 1 and lg.isButton(x,y) == "remove" then
  214. shell.run("delete",selectedFolder)
  215. lg.drawText(2,1,colors.white,colors.orange,"Deleted succesfully!")
  216. os.sleep(1)
  217. screen = 1
  218. scanDirectory(currentPath)
  219. selectedFolder = nil
  220. drawFiles(yoffset,currentPath,selectedFolder)
  221. elseif screen == 1 and lg.isButton(x,y) == "rename" then
  222. renameDialog = lg.createWindow(5,8,18,6,true)
  223. screen = 3
  224. renameDialog:fillScreen(colors.white)
  225. renameDialog:drawText(2,2,colors.black,colors.white,"New name")
  226. renameDialog:drawInput("name",2,15,3,3,15)
  227. renameDialog:drawBT("rename",2,7,5,5,colors.white,colors.orange," Done ")
  228. renameDialog:drawBT("close",18,18,1,1,colors.white,colors.red,"X")
  229. while true do
  230. local event, button, x, y = os.pullEvent( "mouse_click" )
  231. x = x - 4
  232. y = y - 7
  233. btr = renameDialog:isButton(x,y)
  234. if renameDialog:isInput(x,y) then
  235. name = renameDialog:getInput(x,y)
  236. end
  237. if renameDialog:isButton(x,y) == "close" then break
  238. elseif btr == "rename" then
  239. os.sleep(0.5)
  240. renameDialog:fillScreen(colors.white)
  241. renameDialog:drawText(2,2,colors.black,colors.white,"Renamed!")
  242. renameDialog:drawText(2,3,colors.black,colors.white,bt.." | "..name)
  243. os.sleep(1)
  244. renameDialog:hide()
  245. shell.run("rename",selectedFolder,currentPath..name)
  246. break
  247. end
  248. end
  249. renameDialog:hide()
  250. screen = 1
  251. scanDirectory(currentPath)
  252. yoffset = 0
  253. selectedFolder = nil
  254. drawFiles(yoffset,currentPath,selectedFolder)
  255. elseif screen == 1 and lg.isButton(x,y) == "back" then
  256. currentPath = currentPath:match("(.-)[^/]+/$")
  257. if not currentPath then
  258. currentPath = "/"
  259. end
  260. scanDirectory(currentPath)
  261. yoffset = 0
  262. selectedFolder = nil
  263. if currentPath == "" or currentPath == " " or not currentPath then
  264. currentPath = "/"
  265. end
  266. drawFiles(yoffset,currentPath,selectedFolder)
  267. elseif screen == 1 and y > 4 and x < lg.getSize().x then
  268. -- local id = ((math.floor(y / 5) * 5)/5)
  269. -- id = id + ((math.floor(x / 6) * 6)/6)
  270. -- id = (id + 3 * (((math.floor(y / 6) * 6)/6))) - 3
  271. -- if id == 0 then id = 1 end
  272. -- if yoffset > 0 then id = id + (yoffset/6)*4 end
  273. -- if #folderTable >= id then
  274. -- if id == selectedFolder then
  275. -- currentPath = "/"..folderTable[id]
  276. -- yoffset = 0
  277. -- scanDirectory(currentPath)
  278. -- drawFiles(yoffset,currentPath)
  279.  
  280. -- else
  281. -- lg.fill(1,lg.getSize().x-4,2,2,colors.yellow)
  282. -- --lg.drawText(2,2,colors.white,colors.black,id)
  283. -- lg.drawText(2,2,colors.white,colors.yellow,"SEL_F: /"..folderTable[id])
  284. -- selectedFolder = id
  285. -- end
  286. -- end
  287. if lg.isButton(x,y) ~= false then
  288. if not string.find(lg.isButton(x,y),"f|") then
  289. if lg.isButton(x,y) == selectedFolder then
  290. currentPath = selectedFolder.."/"
  291. yoffset = 0
  292. scanDirectory(currentPath)
  293. drawFiles(yoffset,currentPath)
  294. else
  295. selectedFolder = lg.isButton(x,y)
  296. drawFiles(yoffset,currentPath,selectedFolder)
  297. lg.fill(1,lg.getSize().x-4,2,2,colors.yellow)
  298. -- DEBUG lg.drawText(2,3,colors.white,colors.black,selectedFolder)
  299. bt = lg.isButton(x,y)
  300. if #bt > 12 then
  301. bt = "..." .. string.sub(bt, -9)
  302. end
  303. lg.drawText(2,2,colors.white,colors.yellow,"F: /"..bt)
  304. lg.drawText(lg.getSize().x-8,2,colors.white,colors.orange,"R")
  305. lg.drawText(lg.getSize().x-6,2,colors.white,colors.orange,"C")
  306. lg.drawText(lg.getSize().x-10,2,colors.white,colors.orange,"D")
  307. if tos.getPersistentVariable("copied") ~= "false" and tos.getPersistentVariable("copied") ~= nil then lg.drawText(lg.getSize().x-4,2,colors.white,colors.orange,"P") end
  308. end
  309. else
  310. bt = lg.isButton(x,y):gsub("f|", "")
  311. if bt == selectedFolder then
  312. if string.find(bt,".nfp") then shell.run("paint",bt) else
  313. shell.run("edit",bt)
  314. end
  315. selectedFolder = nil
  316. drawFiles(yoffset,currentPath,selectedFolder)
  317. else
  318. selectedFolder = bt
  319. drawFiles(yoffset,currentPath,selectedFolder)
  320. lg.fill(1,lg.getSize().x-4,2,2,colors.yellow)
  321. lg.drawText(2,2,colors.white,colors.black,id)
  322. if #bt > 12 then
  323. bt = "..." .. string.sub(bt, -9)
  324. end
  325. lg.drawText(2,2,colors.white,colors.yellow,bt)
  326. lg.drawText(lg.getSize().x-8,2,colors.white,colors.orange,"R")
  327. lg.drawText(lg.getSize().x-6,2,colors.white,colors.orange,"C")
  328. lg.drawText(lg.getSize().x-10,2,colors.white,colors.orange,"D")
  329. if tos.getPersistentVariable("copied") ~= "false" and tos.getPersistentVariable("copied") ~= nil then lg.drawText(lg.getSize().x-4,2,colors.white,colors.orange,"P") end
  330. end
  331. end
  332.  
  333. end
  334. end
  335. end
  336. lg.exit()
  337.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement