Advertisement
Guest User

Untitled

a guest
Aug 10th, 2015
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 2.80 KB | None | 0 0
  1. local component = require('component')
  2. local sides = require('sides')
  3. local term = require('term')
  4. local event = require('event')
  5.  
  6. local char_up = 200
  7. local char_down = 208
  8. local char_right = 205
  9. local char_left = 203
  10.  
  11. userChest = component.proxy('d6d5b397-6c3f-4291-9f3d-af2a67fcfd92')
  12. redstoneBlock = component.proxy('5f2a5daf-d4d4-42e8-8125-a0a4778a87d7')
  13. selectedItem = 1
  14. currentlySelectedItem = nil
  15. isInItemMenu = false
  16. isInItemDisplayMenu = false
  17.  
  18.  
  19. function unknownEvent()
  20.   -- do nothing if the event wasn't relevant
  21. end
  22.  
  23. -- table that holds all event handlers, and in case no match can be found returns the dummy function unknownEvent
  24. local myEventHandlers = setmetatable({}, { __index = function() return unknownEvent end })
  25.  
  26. function myEventHandlers.key_up(adress, char, code, playerName)
  27.     if (code == char_up) then
  28.         if(isInItemMenu) then
  29.             selectedItem = selectedItem - 1
  30.             displayMenu()
  31.         end
  32.     end
  33.     if (code == char_down) then
  34.         if(isInItemMenu) then
  35.             selectedItem = selectedItem + 1
  36.             displayMenu()
  37.         end
  38.     end
  39.     if(code == char_right) then
  40.         if(isInItemMenu) then
  41.             interactWithItem(currentlySelectedItem)
  42.         end
  43.     end
  44.     if(code == char_left) then
  45.         if(isInItemDisplayMenu) then
  46.             displayMenu()
  47.         end
  48.     end
  49. end
  50.  
  51. function handleEvent(eventID, ...)
  52.   if (eventID) then -- can be nil if no event was pulled for some time
  53.     myEventHandlers[eventID](...) -- call the appropriate event handler with all remaining arguments
  54.   end
  55. end
  56.  
  57. --- Setup our barrels.
  58. allBarrels = {}
  59. --- Loop through all our currently connected components, if the component is a barrel, proxy it and add it to our list.
  60. for key,value in pairs(component.list()) do
  61.     if(value == 'mcp_mobius_betterbarrel') then
  62.         currentBarrel = component.proxy(key)
  63.         allBarrels[currentBarrel.getAllStacks()[2].all().display_name] = component.proxy(key)
  64.     end
  65. end
  66.  
  67. function interactWithItem(item)
  68.     isInItemMenu = false
  69.     isInItemDisplayMenu = true
  70.     for key,value in pairs(allBarrels) do
  71.         if(key == item) then
  72.             myItemName = key
  73.             myItemQty = value.getAllStacks()[2].all().qty
  74.         end
  75.     end
  76.     term.clear()
  77.     print(myItemName, myItemQty)
  78.     print('Amount to withdraw:')
  79.     amount = io.read()
  80.     if(tonumber(amount) < 65) then
  81.         allBarrels[myItemName].pushItemIntoSlot(2,2,amount,1)
  82.     end
  83.     displayMenu()
  84. end
  85.    
  86. function wait(seconds)
  87.     local start = os.time()
  88.     repeat until os.time() > start + seconds
  89. end
  90.  
  91. function displayMenu()
  92.     isInItemMenu = true
  93.     isInItemDisplayMenu = false
  94.     term.clear()
  95.     i = 1
  96.     for key,value in pairs(allBarrels) do
  97.         if(selectedItem == i) then
  98.             print(key,value.getAllStacks()[2].all().qty, 'X')
  99.             currentlySelectedItem = key
  100.         else
  101.             print(key,value.getAllStacks()[2].all().qty)
  102.         end
  103.         i = i+1
  104.     end
  105. end
  106.  
  107. displayMenu()
  108. while true do
  109.     handleEvent(event.pull())
  110. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement