Guest User

smelt

a guest
Sep 25th, 2015
160
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 3.08 KB | None | 0 0
  1. -- Place a simple computer between the drains
  2. -- Soon i will edit this for multiple drains (ofcourse with config on top)
  3. -- Program made by Quessith
  4.  
  5. os.loadAPI("ocs/apis/sensor")
  6. local sense = peripheral.wrap("top")
  7. local modem = peripheral.wrap("bottom")
  8. local block = 1296
  9. local ingot = 144
  10. local totalingot = 0
  11. local totalblock = 0
  12.  
  13. rednet.open("bottom")
  14.  
  15. function blockdrain(blocks, name)
  16. term.clear()
  17. term.setCursorPos(1,1)
  18. for i = 1, blocks do
  19. print("Making "..name.." block " ..i.. " of " ..blocks)
  20. rs.setOutput("right", true)
  21. sleep(0.5)
  22. rs.setOutput("right", false)
  23. sleep(16)
  24. end
  25. print(" ")
  26. print("Done making the "..name.." blocks!")
  27. sleep(3)
  28. term.clear()
  29. end
  30.  
  31. function ingotdrain(ingots, name)
  32. term.clear()
  33. term.setCursorPos(1,1)
  34. for i = 1, ingots do
  35. print("Making "..name.." ingot " ..i.. " of " ..ingots)
  36. redstone.setOutput("left", true)
  37. sleep(0.5)
  38. redstone.setOutput("left", false)
  39. sleep(6)
  40. end
  41. print(" ")
  42. print("Done making the "..name.." ingots!")
  43. sleep(3)
  44. term.clear()
  45. end
  46.  
  47. while true do
  48.   term.setCursorPos(1,1)
  49.   term.clear()
  50.   print("Waiting for a message...")
  51.   local senderId, message, protocol = rednet.receive()
  52.  
  53.   if message == "drain" then
  54.     rednet.send(14,"starting") --send message to put pocket in pause
  55.     term.clear()
  56.     term.setCursorPos(1,1)
  57.     print("Starting to drain!")
  58.  
  59.     local details = sense.getTargetDetails("1,-1,-2")
  60.  
  61.     for a,v in ipairs(details.Tanks) do
  62.       if v.Name then
  63.       local st = string.find(v.Name,".molten")
  64.       local name = string.sub(v.Name,1,st-1)
  65.      
  66.       totalblocks = math.floor(v.Amount / block)
  67.       totalingots = math.floor((v.Amount % block) / ingot)
  68.       term.clear()
  69.       term.setCursorPos(1,1)
  70.       print("Total Blocks of "..name.." going to be made: " ..totalblocks)
  71.       print(" ")
  72.       print("Total Ingots of "..name.." going to be made: " ..totalingots)
  73.       print("Starting in 5 seconds...")
  74.       sleep(5)
  75.         if totalblocks >= 1 then
  76.           blockdrain(totalblocks,name)
  77.         end
  78.       sleep(2)
  79.         if totalingots >= 1 then
  80.           ingotdrain(totalingots, name)
  81.         end
  82.       end
  83.     end
  84.     rednet.send(14,"done") -- unpause the pocket computer
  85.   end
  86.  
  87.   if message == "amounts" then
  88.     term.clear()
  89.     term.setCursorPos(1,1)
  90.     print("Sending information to requester!")
  91.     sleep(2)
  92.     local details = sense.getTargetDetails("1,-1,-2")
  93.     local messages = { }
  94.     for a,v in ipairs(details.Tanks) do
  95.       if v.Name then
  96.         local st = string.find(v.Name, ".molten")
  97.         local name = string.sub(v.Name,1,st-1)
  98.         local blocks = math.floor(v.Amount/block)
  99.         local ingots = math.floor((v.Amount % block) / ingot)
  100.         local sending = "Material: "..name.."\nTotal Blocks: "..blocks.."\nTotal Ingots: "..ingots.."\n---------------","amounts"
  101.         table.insert(messages, sending)        
  102.         sleep(2)
  103.       end
  104.     end
  105.     msg = textutils.serialize(messages)
  106.     --print(msg)debugging
  107.     rednet.send(14,msg)    
  108.     sleep(2)
  109.   end  
  110.   senderId, message, protocol = nil
  111.   sleep(2)
  112. end
Add Comment
Please, Sign In to add comment