Advertisement
DragonFromSpace

InventoryManager

Apr 2nd, 2025
276
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 2.43 KB | None | 0 0
  1. local InputInventoriesFileLocation = "InventoryManager/InputInventories"
  2. local IsInitialized = false
  3. local StorageSystem
  4.  
  5. function GetInputInventories()
  6.     inventoriesFile = fs.open(InputInventoriesFileLocation, "r")
  7.     local inventories = {}
  8.  
  9.     while true do
  10.         local line = inventoriesFile.readLine()
  11.         if not line then break end --end loop when eof
  12.         inventories[#inventories + 1] = line
  13.     end
  14.  
  15.     inventoriesFile.close()
  16.     return inventories
  17. end
  18.  
  19. function DoesInputInventoryExist(inventoryName)
  20.     local inventories = GetInputInventories()
  21.     for k,v in pairs(inventories) do
  22.         if(v == inventoryName) then
  23.             return true
  24.         end
  25.     end
  26.  
  27.     return false
  28. end
  29.  
  30. function indexOfTable(table, key)
  31.     for k,v in ipairs(table) do
  32.         if key == v then
  33.             return k
  34.         end
  35.     end
  36. end
  37.  
  38. function AddInputInventory(inventoryName)
  39.     if(DoesInputInventoryExist()) then
  40.         return "Inventory with name: " .. inventoryName .. " Already added! Failed to add it."
  41.     end
  42.  
  43.     inventoriesFile = fs.open(InputInventoriesFileLocation, fs.exists(InputInventoriesFileLocation) and "a" or "w")
  44.     inventoriesFile.write(inventoryName .. "\n")
  45.     inventoriesFile.close()
  46.     return "Succesfully added inventory " .. inventoryName
  47. end
  48.  
  49. function RemoveInputInventory(inventoryName)
  50.     if(not DoesInputInventoryExist()) then
  51.         return "Inventory with name: " .. inventoryName .. " doesn't exist. Failed to remove it."
  52.     end
  53.  
  54.     local inputInvs = GetInputInventories()
  55.     local index = indexOfTable(inputInvs, inventoryName)
  56.  
  57.     --open file in r/w mode
  58.     local file = fs.open(InputInventoriesFileLocation, "r")
  59.     local fileContent = file.readAll()
  60.     file.close()
  61.  
  62.     --rewrite entire file without specific line
  63.     file = fs.open(InputInventoriesFileLocation, "w")
  64.     for i=1,#fileContent do
  65.         if(i ~= index) then
  66.             file.write(fileContent[i])
  67.         end
  68.     end
  69.     file.close()
  70. end
  71.  
  72. function Initialize()
  73.     StorageSystem = peripheral.find("inventory", function(name,peripheral) return string.find(name, "sophisticatedstorage") end)
  74.     IsInitialized = true
  75. end
  76.  
  77. function Update()
  78.     --pull all items from InputInventories into storage system
  79.     --local allInputInventories = GetInputInventories()
  80.     --local inputInv
  81.     --for k,v in pairs(allInputInventories) do
  82.     --    inputInv = peripheral.wrap()
  83.     --end
  84. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement