Advertisement
Guest User

Untitled

a guest
Dec 4th, 2013
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.75 KB | None | 0 0
  1. --# a function to find us peripherals connected to a computer, either locally or remotely
  2. local function findPeripheral(_type, gatherAll, callback)
  3.   gatherAll = gatherAll == true --# we want to make sure that its a boolean that's passed, if anything other than a boolean is supplied, false will be assumed
  4.   callback = type(callback) == "function" and callback or function() return true end --# if no callback function is supplied, make one, the callback allows you to specify if its what you actually want, a better example can be found when I use it
  5.   local t = {}
  6.   for _, name in pairs(peripheral.getNames()) do --# loop all the connected peripherals
  7.     if peripheral.getType(name) == _type then --# check if it's what's wanted
  8.       local periph = peripheral.wrap(name)
  9.       if callback(periph) then
  10.         table.insert(t, periph) --# insert it into the table
  11.         if not gatherAll then --# if you didn't want all, meaning only wanted one, exit the loop
  12.           break
  13.         end
  14.       end
  15.     end
  16.   end
  17.   return unpack(t) --# return each of the elements in a table individually, you can gather any you wish from this
  18. end
  19.  
  20. local mfsuLookup = findPeripheral("mfsu", true)
  21. local monitor = findPeripheral("monitor", false, function(p) return p.isColor() end) --# our callback here makes sure its an advanced monitor
  22. term.redirect(monitor) --# send the terminal calls to the monitor
  23.  
  24. term.clear() --# see, now we can use this instead of calling on the monitor
  25.  
  26. --# a better round function. num is the number to round. idp is the number of decimal places to round to
  27. local function round(num, idp)
  28.   local mult = 10^(idp or 0)
  29.   if num >= 0 then
  30.     return math.floor(num * mult + 0.5 ) / mult
  31.   end
  32.   return math.ceil(num * mult - 0.5) / mult
  33. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement