Advertisement
Guest User

Untitled

a guest
Apr 1st, 2017
141
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.87 KB | None | 0 0
  1. --rednet.open("bottom")
  2. os.loadAPI("button")
  3. local turtleID = 40
  4. local essentia = {}
  5. local jars = peripheral.getNames()
  6. local m = peripheral.wrap("right")
  7. local monCoord = {}
  8. local currEssentia
  9. local fillAmt = 0
  10. local rowsActive = true
  11. function sortEss(t)
  12. local keys = {}
  13. for k in pairs(t) do keys[#keys+1] = k end
  14. table.sort(keys)
  15.  
  16. local i = 0
  17. return function()
  18. i = i+1
  19. if keys[i] then
  20. return keys[i], t[keys[i]]
  21. end
  22. end
  23. end
  24. function scanEssentia()
  25. essentia = {}
  26. for i,j in ipairs(jars) do
  27. if peripheral.getType(j) == "tt_aspectContainer" then
  28. asp = {peripheral.call(j, "getAspects")} --# Take all results, stick them in a table.
  29. if #asp == 1 then --# This may be needed for regular jars?
  30. countasp = peripheral.call(j, "getAmount", asp[1])
  31. if countasp > 0 then
  32. essentia[asp[1]] = math.floor(countasp)
  33. end
  34. else --# As for your provider block thingy:
  35. for k = 0, #asp / 2 - 1 do
  36. essentia[asp[k*2+1]] = asp[k*2+2]
  37. end
  38. end
  39. end
  40. end
  41. end
  42. function printEssentia()
  43. m.setTextColor(colors.white)
  44. local x = 1
  45. local y = 1
  46. monCoord[x] = {}
  47. -- for a = 1,17 do
  48. for i,j in sortEss(essentia) do
  49. if j<=20 then m.setTextColor(colors.red) end
  50. if j<40 and j>20 then m.setTextColor(colors.yellow) end
  51. if j>=40 then m.setTextColor(colors.green) end
  52.  
  53. m.setCursorPos(x,y)
  54. m.write(i)
  55. m.setCursorPos(x+14,y)
  56. m.write(tostring(j))
  57. -- print(j)
  58. monCoord[x][y] = i
  59. if y < 17 then
  60. y = y+1
  61. else
  62. y = 1
  63. x = x+17
  64. monCoord[x] = {}
  65. end
  66. end
  67. -- end
  68. m.setTextColor(colors.white)
  69. end
  70. function getClick()
  71. local event,side,x,y = os.pullEvent()
  72. if event=="monitor_touch" then
  73. if button.checkxy(x,y) then
  74. print("button")
  75. else
  76. if rowsActive then
  77. fillAmt = 0
  78. print(x..":"..x-(x%17)+1)
  79. print(monCoord[x-(x%17)+1][y])
  80. currEssentia = monCoord[x-(x%17)+1][y]
  81. if currEssentia ~= nil then
  82. if essentia[currEssentia] < 64 then
  83. fillTable2()
  84. else
  85. m.clear()
  86. button.label(1,10, currEssentia.." is already full. Please choose another.")
  87. sleep(3)
  88. refresh()
  89. end
  90. end
  91. end
  92. end
  93. end
  94. end
  95. function refresh()
  96. button.flash("Refresh")
  97. m.clear()
  98. scanEssentia()
  99. printEssentia()
  100. print("Refreshed")
  101. button.screen()
  102. end
  103. function fillTable()
  104. rowsActive = true
  105. button.clearTable()
  106. button.setTable("Refresh", refresh, "", 15, 35, 19, 19)
  107. button.screen()
  108. end
  109. function addEss(num)
  110. fillAmt = fillAmt + num
  111. if fillAmt < 0 then fillAmt = 0 end
  112. if fillAmt > 64-essentia[currEssentia] then fillAmt = 64-essentia[currEssentia] end
  113. m.clear()
  114. fillTable2()
  115. end
  116. function fillEss()
  117. local essData = {}
  118. essData[1] = currEssentia
  119. essData[2] = fillAmt
  120. local sendData = ""
  121. sendData = textutils.serialize(essData)
  122. rednet.send(turtleID, sendData)
  123. m.clear()
  124. button.label(7, 10, "Waiting for aspects to finish cooking....")
  125. button.label(7, 12, "Don't forget to refresh the screen after")
  126. button.label(7, 13, "the golem is done moving the essentia.")
  127. rednet.receive()
  128. m.clear()
  129. fillTable()
  130. refresh()
  131. end
  132. function cancel()
  133. m.clear()
  134. fillTable()
  135. refresh()
  136. end
  137. function fillTable2()
  138. rowsActive = false
  139. button.clearTable()
  140. m.clear()
  141. button.label(7, 1, "Essentia: "..currEssentia.." contains "..essentia[currEssentia])
  142. button.setTable("+1", addEss, 1, 8, 18, 6,6)
  143. button.setTable("+5", addEss, 5, 20, 30, 6, 6)
  144. button.setTable("+10", addEss, 10, 32, 42, 6, 6)
  145. button.setTable("-1", addEss, -1, 8, 18, 8, 8)
  146. button.setTable("-5", addEss, -5, 20, 30, 8, 8)
  147. button.setTable("-10", addEss, -10, 32, 42, 8 ,8)
  148. button.setTable("Refill Jar", addEss, 64-essentia[currEssentia], 8, 42, 10, 10)
  149. button.setTable("Execute Fill Request", fillEss, "", 8, 42, 16, 18)
  150. button.setTable("Cancel", cancel, "", 20, 30, 12, 14)
  151. button.label(7, 4, "Currently Adding "..fillAmt.." "..currEssentia.." essentia.")
  152. button.screen()
  153. end
  154. fillTable()
  155. refresh()
  156. while true do getClick() end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement