Advertisement
Guest User

quadPipe

a guest
Dec 9th, 2015
124
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 7.07 KB | None | 0 0
  1. --default values for command line arguments
  2. --users can change these values if they wish, just keep in mind that command line arguments override these at run time
  3. local defaults = {
  4.   quadProgram = {"east","suck","north","west 3","up 54","east","drop","west","down 54", "east 2", "south"},
  5.   numOfQuads = 3,
  6.   delayMult = 1, --without a delay, all of the quads leave at the same time
  7.   ignoreRedstone = false, --quadracopters will run all the time
  8.   anyKeyTerminate = false, --if false then use ctrl-t
  9.   bSide = "left", --side of quadracopter base
  10.   rSide = "back", --side of redstone input
  11. }
  12. --user editables end here
  13.  
  14. local usage = {
  15.   "multiple different args are accepted",
  16.   "if multiple of the same arg are given then the last one will be used - this is redundent don't do it",
  17.   "we will tell you that arg number which causes any errors",
  18.   "  -h | print this usage information",
  19.   "  -f <filePath> | where filePath points to a file which contains the quadProgram",
  20.   "  -n <interger/number> | numOfQuads",
  21.   "  -d <float/number> | delayMult",
  22.   "  -r <side/'ignore'> | redstoneSide or ignoreRedstone = true",
  23.   "  -b <side> | baseSide",
  24.   "  -t <bool> | anyKeyTerminate",
  25. }
  26.  
  27. local function printUsage()
  28.   print(table.concat(usage, "\n"))
  29. end
  30.  
  31. local function myError(msg, lvl)
  32.   printUsage()
  33.   error(msg, lvl+1)
  34. end
  35.  
  36. local arg = {...}
  37. --set vaiables to default, we will overide these with the arg later
  38. local quadProgram = defaults.quadProgram
  39. local numOfQuads = defaults.numOfQuads
  40. local delayMult = defaults.delayMult
  41. local ignoreRedstone = defaults.ignoreRedstone
  42. local anyKeyTerminate = defaults.anyKeyTerminate
  43. local bSide = defaults.bSide
  44. local rSide = defaults.rSide
  45.  
  46. if #arg > 0 then
  47.   --[[]]--removed for debug
  48.   --lower case everything
  49.   for i = 1, #arg do
  50.     if not tonumber(arg[i]) then
  51.       arg[i] = string.lower(arg[i])
  52.     end
  53.   end--]]
  54.   --process arg
  55.   local i = 1
  56.   while i <= #arg do
  57.     local doubleInc = false
  58.     if arg[i] == "-h" then
  59.       printUsage()
  60.     elseif arg[i] == "-f" then --quadProgram
  61.       do --make my editor look clearer
  62.       if not (fs.exists(tostring(
  63.       args[i+1]))
  64.       and fs.isDir(tostring(
  65.       args[i+1]))) then
  66.         myError("arg "..i.." Can't load file, either doesn't exist or is a directory", 2)
  67.       else
  68.         local f = fs.open(args[i+1], "r")
  69.         local p = f.readAll()
  70.         f.close()
  71.         quadProgram = p
  72.       end
  73.       doubleInc = true
  74.       end --make my editor look clearer
  75.     elseif arg[i] == "-n" then --numOfQuads
  76.       do --make my editor look clearer
  77.       local n = tonumber(arg[i+1])
  78.       if n == nil or n < 1 then
  79.         myError("arg "..i.." -n arg must be followed by a whole number greater than 0 (1 or greater are valid)", 2)
  80.       else
  81.         local a,b = math.modf(n)
  82.         if b ~= 0 then
  83.           myError("arg "..i.." -n arg must be followed by a whole number greater than 0 (1 or greater are valid)", 2)
  84.         end
  85.       end
  86.       if n > 64 then
  87.         print("arg "..i.." Warning: numOfQuads is larger than one stack(64). Did the max per base change or are you piping them in?")
  88.       end
  89.       numOfQuads = n
  90.       doubleInc = true
  91.       end --make my editor look clearer
  92.     elseif arg[i] == "-d" then --delayMult
  93.       do --make my editor look clearer
  94.       local d = tonumber(arg[i+1])
  95.       if d == nil then
  96.         myError("arg "..i.." -d arg must be followed by a number", 2)
  97.       end
  98.       delayMult = d
  99.       doubleInc = true
  100.       end --make my editor look clearer
  101.     elseif arg[i] == "-r" then --redstoneSide
  102.       do --make my editor look clearer
  103.       local r = tostring(arg[i+1])
  104.       if r == nil then
  105.        myError("arg "..i.." -r arg must be followed by a string representing a side or equal to 'ignore'", 2)
  106.       end
  107.       if r == "ignore" then
  108.         ignoreRedstone = true
  109.       elseif r == "left" or r == "right" or r == "front" or r == "back" then
  110.         rSide = r
  111.         ignoreRedstone  = false
  112.       else
  113.         myError("arg "..i.." -r arg must be followed by a string representing a side or equal to 'ignore'", 2)
  114.       end
  115.       doubleInc = true
  116.       end --make my editor look clearer
  117.     elseif arg[i] == "-b" then --baseSide
  118.       do --make my editor look clearer
  119.       local b = tostring(arg[i+1])
  120.       if b == nil then
  121.         myError("arg "..i.." -b arg must be followed by a string representing a side", 2)
  122.       end
  123.       if b == "left" or b == "right" or b == "front" or b == "back" then
  124.         bSide = b
  125.       else
  126.         myError("arg "..i.." -b arg must be followed by a string representing a side", 2)
  127.       end
  128.       doubleInc = true
  129.       end --make my editor look clearer
  130.     elseif arg[i] == "-t" then --anyKeyTerminate
  131.       do --make my editor look clearer
  132.       local t = tostring(arg[i+1])
  133.       if t == nil then
  134.         myError("arg "..i.." -t arg must be followed by a string equal to 'true' or 'false'", 2)
  135.       end
  136.       if t == "true" then
  137.         anyKeyTerminate = true
  138.       elseif t == "false" then
  139.         anyKeyTerminate = false
  140.       else
  141.         myError("arg "..i.." -t arg must be followed by a string equal to 'true' or 'false'", 2)
  142.       end
  143.       doubleInc = true
  144.       end --make my editor look clearer
  145.     else
  146.       myError("arg "..i.." unprocessed arg",2)
  147.     end
  148.     if doubleInc then
  149.       i = i +2
  150.     else
  151.       i = i +1
  152.     end
  153.   end
  154. end
  155.  
  156. --main program
  157. local base = peripheral.wrap(bSide)
  158.  
  159.  
  160. print("Lupus590's Quadracopter Program\nLicenced under MIT") --http://opensource.org/licenses/mit-license.php
  161. if anyKeyTerminate then
  162.   print("Press any key to terminate.")
  163. else
  164.   print("Press ctrl-t to terminate.")
  165. end
  166.  
  167. local event
  168. if ignoreRedstone then
  169.   --launch all drones
  170.   local i = 1
  171.   for i = 1, numOfQuads do
  172.     base.flyQuad(quadProgram)
  173.     sleep(delayMult*#quadProgram/numOfQuads)--don't want them all to go at the same time, we want roughly even spacing
  174.   end
  175.   while true do
  176.     event = os.pullEvent()
  177.     --no rest till we are done
  178.     if event == "quad_landed" then
  179.       base.flyQuad(quadProgram)
  180.     elseif anyKeyTerminate and event == "key" then
  181.       return
  182.     end    
  183.   end--while true
  184. else
  185.   if redstone.getInput(rSide) then os.queueEvent("redstone") end --if redstone is already on then we need to simulate an update to do our stuff
  186.   while true do
  187.     event = os.pullEvent()
  188.     if event == "redstone" then
  189.       --launch all drones
  190.       local i = 1
  191.       for i = 1, numOfQuads do
  192.         base.flyQuad(quadProgram)
  193.         sleep(delayMult*#quadProgram/numOfQuads)--don't want them all to go at the same time, we want roughly even spacing
  194.       end
  195.       while redstone.getInput(rSide) do
  196.         event = os.pullEvent()
  197.         --no rest till we are done
  198.         if event == "quad_landed" and redstone.getInput(rSide) then
  199.           base.flyQuad(quadProgram)
  200.         elseif anyKeyTerminate and event == "key" then
  201.           return
  202.         end  
  203.       end --while redstone
  204.    
  205.     elseif anyKeyTerminate and event == "key" then
  206.       return
  207.     end --if event == redstone
  208.   end --while true
  209. end--if ignoreRedstone
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement