Advertisement
Guest User

Untitled

a guest
Aug 17th, 2014
299
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1.    
  2.         --Essentia Value
  3.         --Function retrieveData by GamerNebulae from
  4.         --Computed Magic v2.1.3: TT[kami] update, unified version
  5.         --Special thanks to flaghacker for helping me with updating the code
  6.          
  7.         --Declaring variables: All local variables cannot be used in other programs!
  8.         local jarData = {}
  9.         local jarDataIndex
  10.         local peripheralData = {}
  11.          
  12.         --Functions:
  13.          
  14.          
  15.          
  16.          
  17.         --Retrieve data from the jars
  18.         local function retrieveData()
  19.                 --Retrieving which aspects you have and how much is in those jars and getting information from storage system
  20.               peripheralData["jar"] = {}
  21.         for index, peripheralName in pairs(peripheral.getNames()) do
  22.                 if (peripheralName:find("tt_aspectContainer") or peripheralName:find("tilejar")) then
  23.                         if (type(peripheral.call(peripheralName, "getAspects")) == "table") then
  24.                                 if (not peripheralData["jar"][string.lower(peripheral.call(peripheralName, "getAspects")[1]["name"])]) then
  25.                                         peripheralData["jar"][string.lower(peripheral.call(peripheralName, "getAspects")[1]["name"])] = {}
  26.                                 end
  27.                                 peripheralData["jar"][string.lower(peripheral.call(peripheralName, "getAspects")[1]["name"])][#peripheralData["jar"][string.lower(peripheral.call(peripheralName, "getAspects")[1]["name"])] + 1] = peripheralName
  28.                         else
  29.                                 if (not peripheralData["jar"][string.lower(peripheral.call(peripheralName, "getAspects"))]) then
  30.                                         peripheralData["jar"][string.lower(peripheral.call(peripheralName, "getAspects"))] = {}
  31.                                 end
  32.                                 peripheralData["jar"][string.lower(peripheral.call(peripheralName, "getAspects"))][#peripheralData["jar"][string.lower(peripheral.call(peripheralName, "getAspects"))] + 1] = peripheralName
  33.                         end
  34.                 end
  35.         end
  36. end
  37.          
  38.         function onMonitor()
  39.           m = peripheral.wrap("left")
  40.           m.clear()
  41.           local currentJarNum = 0
  42.           local currentX
  43.           local currentY
  44.           local quantity
  45.          
  46.          
  47.          
  48.           for k,v in pairs(peripheralData) do
  49.          
  50.               --Setting the x position on monitor
  51.               if currentJarNum<17 then
  52.                 currentX = 1
  53.               elseif currentJarNum<34 then
  54.                 currentX = 16
  55.               else
  56.                 currentX = 31
  57.               end
  58.              
  59.               --Setting the y position on monitor
  60.               currentY = currentJarNum%17 + 1
  61.              
  62.               quantity = math.floor(peripheralData[k][1])
  63.              
  64.               --Setting write color based on the quantity of essentia
  65.               if quantity < 20 then
  66.                 m.setTextColor(colors.red)
  67.               elseif quantity > 40 then
  68.                 m.setTextColor(colors.green)
  69.               else
  70.                 m.setTextColor(colors.yellow)
  71.               end
  72.              
  73.              
  74.               m.setCursorPos(currentX, currentY)
  75.               m.write(k)
  76.               if quantity < 10 then
  77.                 currentX = currentX + 1
  78.               end
  79.               m.setCursorPos(currentX + 12, currentY)
  80.               m.write(tostring(quantity))
  81.               currentJarNum = currentJarNum + 1
  82.              
  83.            
  84.           end
  85.         end
  86.         --Start
  87.          
  88.         retrieveData()
  89.         onMonitor()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement