Advertisement
EarthwyrmJim

sort

Apr 23rd, 2013
110
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 3.93 KB | None | 0 0
  1. --[[ search: Opens ID.txt as a file handle to read, then reads each line. Each line is unserialized (ID.txt is a document full of serialized tables), and compared to the parameters passed. This function is used to check if the item being sorted is already listed, in which it determines which box the items will be sorted to. Otherwise, it is temporarily marked as a "Router" item and placed in the miscellaneous chest.
  2. Parameters: item (name of item, acquired from openCCsensors Inventory Sensorcard), itemID (acquired from turtle item analyzer).
  3. Returns: line if found, and nil if not.
  4.  
  5. move: Moves to the location passed to it (an integer value). The current position is always recorded, and the box position is found in the chests table.
  6. Parameters: chest (integer)
  7. Returns: nil
  8.  
  9. takeItems: Backs the turtle up to position 0, then sucks items from the chest above it. If items are sucked, it will continue to suck until inventory is full or if there are no items left in the chest.
  10. Parameters: none.
  11. Returns: nil
  12.  
  13. sortItems: Uses the Inventory sensorcard to gather details about its own inventory. Each slot is selected, the type is identified (via the search function), and the item is placed in the appropriate box. If the item is marked as "Trash", the item is dropped below to void pipes. If the item is not listed, it is placed in the miscellaneous chest.
  14. Parameters: none.
  15. Returns: nil.
  16. ]]--
  17.  
  18. term.clear()
  19. term.setCursorPos(1,1)
  20. os.loadAPI("ocs/apis/sensor")
  21.  
  22. local a=peripheral.wrap("right")
  23. local t=sensor.wrap("left")
  24. local turtleSorter
  25. local chest
  26. local itemsSucked
  27. local itemsInInventory
  28. local currentPosition = 0
  29. local chests = {"Tool","Dust","Thaumcraft","Plants","Mob/Animal","Food"}
  30.  
  31. local function search(item, itemID)
  32.     local line
  33.     local itemList = fs.open("ID.txt","r")
  34.     while true do
  35.         line = itemList.readLine()
  36.         if line == nil then
  37.             line = {type="Router"}
  38.             itemList.close()
  39.             return line
  40.         end
  41.         line = textutils.unserialize(line) -- Search each line in ID.txt until item is found.
  42.         if (line.name == item.Name or line.name == item.RawName) and line.ID == itemID then
  43.             itemList.close()
  44.             return line
  45.         end
  46.     end
  47.     itemList.close()
  48. end
  49.  
  50. local function move(chest)
  51.     while currentPosition ~= chest do
  52.         if currentPosition > chest then
  53.             turtle.back()
  54.             currentPosition = currentPosition - 1
  55.         elseif currentPosition < chest then
  56.             turtle.forward()
  57.             currentPosition  = currentPosition + 1
  58.         end
  59.     end
  60. end
  61.  
  62. local function takeItems()
  63.     itemsInInventory = false
  64.     while turtle.back() do end --Intentionally empty, loop breaks when turtle hits starting position.
  65.     while not itemsInInventory do
  66.         if turtle.suckUp() then
  67.             for n=2,15 do
  68.                 turtle.suckUp()
  69.             end
  70.         end
  71.         for n=1,15 do
  72.             if turtle.getItemCount(n) ~= 0 then
  73.                 itemsInInventory = true
  74.                 break
  75.             end
  76.         end
  77.         if itemsInInventory == false then
  78.             term.clear()
  79.             term.setCursorPos(1,1)
  80.             print("No items to sort.")
  81.         end
  82.     end
  83.     currentPosition = 0
  84. end
  85.  
  86.  
  87. local function sortItems() -- Takes an item and does appropriate work per item type.
  88.     turtleSorter = t.getTargetDetails("0,0,0")
  89.     local turtleInventory = turtleSorter.Slots
  90.     for n=1,15 do
  91.         if turtle.getItemCount(n) ~= 0 then
  92.             turtle.select(n)
  93.             local item = search(turtleSorter.Slots[n], a.getBlockId())
  94.             for index,itemType in ipairs(chests) do
  95.                 if item.type==itemType then
  96.                     move(index)
  97.                     print("Placing "..item.name.." in "..itemType.." Box")
  98.                 turtle.dropUp()
  99.                 end
  100.             end
  101.             if item.type=="Trash" then
  102.                 if currentPosition == 0 then
  103.                     move(1)
  104.                 end
  105.                 turtle.dropDown()
  106.             elseif item.type =="Router" then
  107.                 move(6)
  108.                 print("Placing "..turtleInventory[n].Name.." in Router")
  109.                 turtle.drop()
  110.                 sleep(2)
  111.                 turtle.turnRight()
  112.                 redstone.setOutput("front",true)
  113.                 sleep(.1)
  114.                 redstone.setOutput("front",false)
  115.                 turtle.turnLeft()
  116.             end
  117.         end
  118.     end
  119. end
  120.  
  121. while true do
  122.     takeItems()
  123.     sortItems()
  124.     sleep(3)
  125. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement