Advertisement
gezepi

termInterface

Dec 19th, 2013
208
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 2.14 KB | None | 0 0
  1. local bolDebug = true
  2.  
  3. --[[    termInterface
  4.     Displays a menu to the user that contains all item types in the inventory system
  5.     The user chooses a type and how many are needed
  6.     The program then sends a rednet message to the queue computer
  7.         which gets passed to the retriever turtle
  8.        
  9.     --gezepi
  10. ]]
  11.  
  12. local _w, _h = term.getSize()
  13. local tblNames, tblLocations --Names has a list of strings, Locations has the name and X Y coords.  borwnies are ready
  14.  
  15. os.loadAPI(files["tools"])
  16. tools.init(files)
  17. local names = tools.names()
  18. tools.network()
  19. local bug = tools.bug(bolDebug)
  20. local freqDestination
  21. if settings.freqDropOff then
  22.     freqDestination = tools.freqs(settings.freqDropOff)
  23. elseif tonumber(settings.freq) then
  24.     freqDestination = settings.freq
  25. end
  26. tools.unload()
  27.  
  28. local function getItems()
  29.     --[[    Makes a new table containing only the names of the items    ]]
  30.     function convertTable(t)
  31.         local newTable = {}
  32.         local i = 1
  33.         for k, v in pairs(t) do
  34.             newTable[i] = k
  35.             i = i+1
  36.         end
  37.         return newTable
  38.     end--]]
  39.     os.loadAPI(files["tools"])
  40.     tools.init(files)
  41.     tblLocations = tools.loadTable(files["items"])
  42.     tblNames = convertTable(tblLocations)
  43.     tools.unload()
  44. end
  45. --[[    Sends an item request to Queue  ]]
  46. local function fetch(name, count, dest, loc )
  47.     local msg = {name,count,dest,loc}
  48.     msg.from = idMe
  49.     msg.to = names.queue
  50.     bug("Requesting "..name)
  51.     rednet.send(names.queue, msg)
  52. end
  53. --[[    Builds a menu from a table  ]]
  54. function buildMenu(name, tbl, nameFromValue)
  55.     if nameFromValue==nil then nameFromValue=false end
  56.     m = {}
  57.     m.name = name
  58.     m.selections = {}
  59.     local i = 1
  60.     for k,v in pairs(tbl) do
  61.         if nameFromValue then m.selections[i] = {name=v, data=v} else m.selections[i] = {name=k, data=v} end
  62.         i = i+1
  63.     end
  64.     return m
  65. end
  66.  
  67.  
  68. print("Starting up")
  69. sleep(.2)
  70. os.loadAPI(files.termMenu)
  71. termMenu.new(1,1,_w, _h-1, term)
  72. getItems()
  73. while 1 do
  74.     local item = termMenu.dispMenu(2,1,buildMenu("Items", tblNames, true))
  75.     if item~=nil then
  76.         local count = termMenu.getInputNum(item.name, 0, nil)
  77.         bug(item)
  78.         if count~=nil then fetch(item.name, count, freqDestination, tblLocations[item.name]) end
  79.         term.clear()
  80.     end
  81. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement