Advertisement
Gamergirl1995

Computer

May 1st, 2015
305
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 3.00 KB | None | 0 0
  1. mon = peripheral.wrap("right")
  2. rednet.open("bottom")
  3. turtleId = 11
  4. buttons = {}
  5.  
  6. function createButton(mon,text,mob)
  7.   bxmin,bymin = mon.getCursorPos()
  8.   bxmax = bxmin + #text
  9.   bymax = bymin
  10.   buttons[mob.slot] = {["mob"] = mob, ["text"] = text, ["slot"] = mob.slot, ["name"] = mob.name, ["xmin"] = bxmin, ["ymin"] = bymin, ["xmax"] = bxmax, ["ymax"] = bymax}
  11.   mon.setBackgroundColor(colors.blue)
  12.   println (mon, text)
  13.   mon.setBackgroundColor(colors.black)
  14. end
  15.  
  16. function command(cname,args)
  17.   if (args) then
  18.     cmd = {["cname"] = cname, ["args"] = args}
  19.   else
  20.     cmd = {["cname"] = cname}
  21.   end
  22.   rednet.send(turtleId, cmd)
  23.   senderId, message, distance = rednet.receive(5)
  24.   return message
  25. end
  26.  
  27. function println(mon,text)
  28.   cx,cy = mon.getCursorPos()
  29.   mon.write(text)
  30.   mon.setCursorPos(cx,cy+1)
  31. end
  32.  
  33. function essenseStats()
  34.   tankInfo = command("getTankInfo",nil)
  35.   mon.setCursorPos(42,1)
  36.   println(mon,"Stats")
  37.   println(mon,"Essense:")
  38.   if (tankInfo.amount) then
  39.     am = tankInfo.amount
  40.   else
  41.     am = 0
  42.   end
  43.   println(mon,tostring(am))
  44.   if (command("getSpawnExact",nil)) then
  45.     div = 500
  46.   else
  47.     div = 150
  48.   end
  49.   println(mon,"~"..math.floor(am/div).." mobs")
  50.   createButton(mon,"Exact:",{slot = 100,command = "swapExact"})
  51.   isExact = command("getSpawnExact",nil)
  52.   println(mon,tostring(isExact))
  53. end
  54.  
  55. function init(mon,mobs,currentMob)
  56.   mon.clear()
  57.   mon.setCursorPos(1,1)
  58.   sx,sy = mon.getSize()
  59.   println(mon,"All Available Mobs:")
  60.   numnom = 1
  61.   for i,mob in pairs(mobs) do
  62.     if (i ~= 0) then
  63.       if (numnom == 8) then
  64.         mon.setCursorPos(21,2)
  65.       end
  66.       createButton(mon,i..": "..mob.name, mob)
  67.       numnom = numnom + 1
  68.     end
  69.   end
  70.   mon.setCursorPos(1,9)
  71.   createButton(mon,"EMPTY",mobs[0])
  72.   mon.setCursorPos(1,10)
  73.   println(mon,"Currently selected mob:")
  74.   println(mon,currentMob.slot..": "..currentMob.name)
  75.   mon.setBackgroundColor(colors.blue)
  76.   println(mon, "REFRESH")
  77.   mon.setBackgroundColor(colors.black)
  78.   essenseStats()
  79. end
  80.  
  81. function checkButtons(x,y)
  82.   for i,button in pairs(buttons) do
  83.     if (x>=button.xmin and x<=button.xmax and y>=button.ymin and y<=button.ymax) then
  84.       return button.mob
  85.     end
  86.   end
  87.   return false
  88. end
  89.  
  90. while true do
  91.   mobs = command("getAllMobs",nil)
  92.   currentMob = command("getCurrentMob",nil)
  93.   init(mon,mobs,currentMob)
  94.   event,side,posX,posY = os.pullEvent("monitor_touch")
  95.   selectedMob = checkButtons(posX,posY)
  96.   if (selectedMob ~= false) then
  97.     --println(mon,"You clicked on "..selectedMob.name)
  98.     if (selectedMob.command) then
  99.       if (selectedMob.command == "swapExact") then
  100.         currentExact = command("getSpawnExact",nil)
  101.         command("setSpawnExact", {[1] = not(currentExact)})
  102.       end
  103.     else
  104.       command("fromSpawnerToChest",nil)
  105.       command("fromChestToSpawner",{[1] = selectedMob})
  106.     end
  107.   else
  108.    -- println(mon,"You clicked on non button area ("..posX..","..posY..")")
  109.   end
  110. --  sleep(5)
  111. end
  112.  
  113. --print(command("selectMob", {[1] = mob}))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement