Advertisement
alexzapl_0318

MemoryChecker

Apr 2nd, 2025 (edited)
276
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.83 KB | Gaming | 0 0
  1. --With big love by AZ
  2.  
  3. function drawProgressBar(x, y, width, percent, color)
  4.     local fill = math.floor(width * percent)
  5.     term.setCursorPos(x, y)
  6.     term.setBackgroundColor(color)
  7.     term.write(string.rep(" ", fill))
  8.     term.setBackgroundColor(colors.gray)
  9.     term.write(string.rep(" ", width - fill))
  10.     term.setBackgroundColor(colors.black)
  11. end
  12.  
  13. local function checkStorage()
  14.     local totalSize, usedSize = 0, 0
  15.     local disk, diskStr = 1, "disk"
  16.     for _, side in ipairs(peripheral.getNames()) do
  17.         if peripheral.hasType(side, "drive") or fs.exists(side) then
  18.             if disk ~= 1 then
  19.                 diskStr = "disk"..disk
  20.                 disk = disk + 1
  21.             end
  22.             local free = fs.getFreeSpace("/"..diskStr) / 1024
  23.             local total = free + fs.getSize("/"..diskStr) / 1024
  24.             totalSize = totalSize + total
  25.             usedSize = usedSize + (total - free)
  26.         end
  27.     end
  28.     return totalSize, usedSize
  29. end
  30.  
  31. local function checkMemory()
  32.     return math.floor(fs.getCapacity("/") / 1024), math.floor(fs.getFreeSpace("/") / 1024)
  33. end
  34.  
  35. term.clear()
  36. while true do
  37.     local totalMem, freeMem = checkMemory() -- pc
  38.     local totalSize, usedSize = checkStorage() -- disks
  39.     term.setCursorPos(1, 1)
  40.     term.setTextColor(colors.white)
  41.     print("Space: " .. math.floor(freeMem * 10000 + 0.5) / 10000 .. "KB/" .. math.floor(totalMem * 10000 + 0.5) / 10000 .. "KB")
  42.     drawProgressBar(2, 3, 20, (totalMem - freeMem) / totalMem, colors.red)
  43.     print("Used: " .. totalMem-freeMem .. "KB \n\n")
  44.  
  45.     print("Disk space: " .. math.floor((totalSize-usedSize) * 10000 + 0.5) / 10000 .. "KB/" .. math.floor(totalSize * 10000 + 0.5) / 10000 .. "KB")
  46.     drawProgressBar(2, 8, 20, usedSize / totalSize, colors.red)
  47.     print("Used: " .. usedSize .. "KB \n\n")
  48.  
  49.     sleep(1)
  50. end
  51.  
Tags: Memory
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement