Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local InputInventoriesFileLocation = "InventoryManager/InputInventories"
- local IsInitialized = false
- local StorageSystem
- function GetInputInventories()
- inventoriesFile = fs.open(InputInventoriesFileLocation, "r")
- local inventories = {}
- while true do
- local line = inventoriesFile.readLine()
- if not line then break end --end loop when eof
- inventories[#inventories + 1] = line
- end
- inventoriesFile.close()
- return inventories
- end
- function DoesInputInventoryExist(inventoryName)
- local inventories = GetInputInventories()
- for k,v in pairs(inventories) do
- if(v == inventoryName) then
- return true
- end
- end
- return false
- end
- function indexOfTable(table, key)
- for k,v in ipairs(table) do
- if key == v then
- return k
- end
- end
- end
- function AddInputInventory(inventoryName)
- if(DoesInputInventoryExist()) then
- return "Inventory with name: " .. inventoryName .. " Already added! Failed to add it."
- end
- inventoriesFile = fs.open(InputInventoriesFileLocation, fs.exists(InputInventoriesFileLocation) and "a" or "w")
- inventoriesFile.write(inventoryName .. "\n")
- inventoriesFile.close()
- return "Succesfully added inventory " .. inventoryName
- end
- function RemoveInputInventory(inventoryName)
- if(not DoesInputInventoryExist()) then
- return "Inventory with name: " .. inventoryName .. " doesn't exist. Failed to remove it."
- end
- local inputInvs = GetInputInventories()
- local index = indexOfTable(inputInvs, inventoryName)
- --open file in r/w mode
- local file = fs.open(InputInventoriesFileLocation, "r")
- local fileContent = file.readAll()
- file.close()
- --rewrite entire file without specific line
- file = fs.open(InputInventoriesFileLocation, "w")
- for i=1,#fileContent do
- if(i ~= index) then
- file.write(fileContent[i])
- end
- end
- file.close()
- end
- function Initialize()
- StorageSystem = peripheral.find("inventory", function(name,peripheral) return string.find(name, "sophisticatedstorage") end)
- IsInitialized = true
- end
- function Update()
- --pull all items from InputInventories into storage system
- --local allInputInventories = GetInputInventories()
- --local inputInv
- --for k,v in pairs(allInputInventories) do
- -- inputInv = peripheral.wrap()
- --end
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement