Advertisement
HydrantHunter

MiscPeriphs/CC Fireworks Show 1.4

Jul 25th, 2013
126
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 13.76 KB | None | 0 0
  1. -- Fireworks Show 1.4.0
  2. -- by Dog
  3. --
  4. -- Requires:  Minecraft 1.6.4 (possibly 1.5.2), Misc. Peripherals Fireworks Launcher, ComputerCraft Computer, this script
  5. -- Optional:  Monitor
  6. --
  7. -- Place your computer next to (touching) the launcher (I usually put the launcher on top of the computer) or connect via wired modems & network cable - connecting side will be autodetected
  8. --
  9. -- Place your monitor next to (touching) the computer or connect via wired modems and network cable - connecting side will be autodetected
  10. --
  11. -- Into your Fireworks Launcher, place the following:
  12. -- gun powder (I use slots 1-9 - edit the values below if you do it differently)
  13. -- colors (non-ceramic/non-molten dyes (also not indigo), squid ink sacks, lapis, rose red, dandelion yellow, cactus green)
  14. -- effects (bone-meal, feather, glowstone dust, gold nugget, fire charge, diamond, skeleton skull, wither skeleton skull - assign an empty space or two for random, 'standard' fireworks without special effects)
  15. --
  16. -- Don't forget to edit the slot assignments below so this script tells the launcher to combine the right stuff
  17.    -- Slots are counted by row, left to right, starting at the top left
  18. --
  19. -- Run this script and answer the two questions it asks (how many fireworks to launch and how long to wait before starting the show)
  20. --
  21. -- Fireworks Show does the following:
  22. -- Mixes up to (3) gun powders, (3) colors, (3) effects, and adds a 30% chance for a fade effect/bonus color (at 20% it's a bit too rare for my liking)
  23. -- Launches the firework
  24. -- Repeats the process for the number of fireworks you selected
  25. --
  26. -- Edit these . . .
  27. --
  28. local powderFirst = 1                -- First gunpowder slot
  29. local powderLast = 9                 -- Last gunpowder slot
  30. local colorFirst = powderLast + 1    -- First color slot - I don't leave space between groups, so the immediately following slot is my first color slot - that way I don't have to edit the value when I move things around so long as colors begin immediately after gun powder
  31. local colorLast = 24                 -- Last color slot
  32. local effectFirst = colorLast + 1    -- First effect slot - for me, the slot immediately following colorLast
  33. local effectLast = 35                -- Last effect slot
  34. --
  35. -- Don't edit these . . .
  36. --
  37. local allSlots                       -- array holding ALL slot values (gunpowder, color, effect)
  38. local slotList                       -- comma separated list of generated slot values
  39. local fwl = "none"                   -- variable that will be used for wrapping the fireworks launcher
  40. local mon = "none"                   -- variable that will be used for wrapping the monitor, if there is one
  41. local boomCount = 0                  -- number of fireworks to launch - don't change this value, it will be set by the program
  42. local pA                             -- string holding Powder values for display
  43. local pB                             -- string holding Color values for display
  44. local pC                             -- string holding Effect values for display
  45. local pD                             -- string holding Fade Effect value for display
  46. local a,b,c,d,e,f                    -- strings for parsing tables/arrays
  47. --
  48. -- Program Begins
  49. --
  50. local function makeFireworks()
  51.   local iCounter = 0                 -- tracks slot values in fireworks() loops to ensure allSlots is properly fed
  52.   local slotA                        -- first slot for item being processed
  53.   local slotB                        -- last slot for item being processed
  54.   local fadeEffect                   -- fade effect
  55.   local i,j                          -- counters
  56.   allSlots = { }                     -- array holding ALL slot values (gunpowder, color, effect)
  57.   slotList = ""                      -- comma separated list of generated slot values
  58.   pA = ""                            -- string holding Powder values for display
  59.   pB = ""                            -- string holding Color values for display
  60.   pC = ""                            -- string holding Effect values for display
  61.   pD = ""                            -- string holding Fade Effect value for display
  62.   local fadeEffectChance = math.random(1,10)       -- fade effect chance
  63.   if fadeEffectChance >= 7 then                    -- if fadeEffectChance is 7+ then fadeEffect is set to a color slot value and subsequently added to the allSlots array - see comment 3 lines below
  64.     iCounter = iCounter + 1                        -- increment iCounter outside of normal loop to account for Fade Effect and feed allSlots properly
  65.     fadeEffect = math.random(colorFirst,colorLast) -- grab fade effect from random color slot
  66.     allSlots[iCounter] = fadeEffect                -- assign value to allSlots array for fade effect - this probably only adds an additional color since the launcher doesn't 'make' stars as far as I know
  67.   end
  68.   for j = 1,3,1 do                   -- start loop once for each set of items
  69.     if j == 1 then                   -- first iteration is for gun powder
  70.       slotA = powderFirst            -- assign first slot for gun powder
  71.       slotB = powderLast             -- assign last slot for gun powder
  72.     elseif
  73.       j == 2 then                    -- second iteration is for color
  74.       slotA = colorFirst             -- assign first slot for color
  75.       slotB = colorLast              -- assign last slot for color
  76.     elseif
  77.       j == 3 then                    -- third iteration is for effect
  78.       slotA = effectFirst            -- assign first slot for effect
  79.       slotB = effectLast             -- assign last slot for effect
  80.     end
  81.     local numItems = math.random(1,3)-- how many of the current item (gun powder, color, effect)
  82.     for i = 1,numItems,1 do
  83.       iCounter = iCounter + 1
  84.       allSlots[iCounter] = math.random(slotA,slotB)-- assign item from random slot in item slot range
  85.       if j == 1 then                               -- start building display string for gun powder
  86.         if pA == "" then                           -- if pA has no values yet, set the first gun powder slot, otherwise set the remaining slots
  87.           pA = allSlots[iCounter]                  -- first slot is always gun powder ( could use allSlots[1] )
  88.         else
  89.           pA = pA .. ',' .. allSlots[iCounter]     -- remaining gun powder slots
  90.         end
  91.       elseif j == 2 then                           -- start building display string for color
  92.         if pB == "" then                           -- if pB has no values yet, set the first color slot, otherwise set the remaining slots
  93.           pB = allSlots[iCounter]                  -- first color slot
  94.         else
  95.           pB = pB .. ',' .. allSlots[iCounter]     -- remaining color slots
  96.         end
  97.       elseif j == 3 then                           -- start building display string for effect
  98.         if pC == "" then                           -- if pC has no values yet, set the first effect slot, otherwise set the remaining slots
  99.           pC = allSlots[iCounter]                  -- first effect slot
  100.         else
  101.           pC = pC .. ',' .. allSlots[iCounter]     -- remaining effect slots
  102.         end
  103.       end
  104.     end
  105.   end
  106.   if fadeEffectChance >= 7 then                    -- if fadeEffectChance is 7+ then fadeEffect is set to a color slot value and subsequently added to the allSlots array - see comment 3 lines below
  107.     pD = fadeEffect                                -- add effect to string
  108.     slotList = pD .. ',' .. pA .. ',' .. pB .. ',' .. pC -- concatenate all arrays (w/fade effect) into a human-readable CSV string for display
  109.   else
  110.     fadeEffect = 0
  111.     slotList = pA .. ',' .. pB .. ',' .. pC        -- concatenate all arrays (no fade effect) into a human-readable CSV string for display
  112.   end
  113.   --iCounter = 0
  114. end
  115.  
  116. local function displayIt()           -- mon.* = external monitor, term/term.* & print = console
  117.   if mon ~= "none" then
  118.     mon.clear()
  119.     mon.setCursorPos(4,1)
  120.     mon.write("Fireworks")           -- Monitor display 'header'
  121.     mon.setCursorPos(5,2)
  122.     mon.write("Status")
  123.     mon.setCursorPos(2,4)
  124.     mon.write("Po: " .. pA)          -- Display Powder values on monitor
  125.     mon.setCursorPos(2,5)
  126.     mon.write("Co: " .. pB)          -- Display Color values on monitor
  127.     mon.setCursorPos(2,6)
  128.     mon.write("Fx: " .. pC)          -- Display Effect values on monitor
  129.     mon.setCursorPos(2,7)
  130.     mon.write("Fe: " .. pD)          -- Display Fade value on monitor
  131.   end
  132.   term.clear()
  133.   term.setCursorPos(2,2)
  134.   term.write("Powder:  " .. pA)      -- Display Powder values on terminal
  135.   term.setCursorPos(2,4)
  136.   term.write("Colors:  " .. pB)      -- Display Color values on terminal
  137.   term.setCursorPos(2,6)
  138.   term.write("Effects: " .. pC)      -- Display Effect values on terminal
  139.   term.setCursorPos(2,8)
  140.   term.write("Fade:    " .. pD)      -- Display Fade value on terminal
  141.   term.setCursorPos(2,12)
  142.   term.write("csv: " .. slotList)    -- Display comma separated, single-line list of values generated on terminal
  143.   term.setCursorPos(2,14)
  144.   term.write("raw:")
  145.   term.setCursorPos(7,14)
  146.   term.write(tostring(unpack(allSlots))) -- Display 'unpack' on terminal - as the machine sees it - don't ask me, I just try to make the machine do what I want it to do
  147.   term.write("")
  148. end
  149.  
  150. local function launchIt()
  151.   fwl.launch(unpack(allSlots))       -- launch firework
  152.   sleep(math.random(0.5,2))          -- random break time (1/2 second to 2 seconds) before repeating the process
  153. end
  154.  
  155. local function initShow()
  156.   if mon ~= "none" then              -- While we answer the questions, show idle message on monitor
  157.     mon.clear()
  158.     mon.setCursorPos(4,1)
  159.     mon.write("Fireworks")
  160.     mon.setCursorPos(5,2)
  161.     mon.write("Status")
  162.     mon.setCursorPos(6,6)
  163.     mon.write("IDLE")
  164.   end
  165.   term.clear()
  166.   term.setCursorPos(2,1)
  167.   term.write("How many fireworks would you like to see?")
  168.   term.setCursorPos(2,2)
  169.   term.write("(0 = exit / 999 = infinite)")
  170.   term.setCursorPos(2,4)
  171.   boomCount = tonumber(read())
  172.   if boomCount == nil or boomCount < 1 then boomCount = 0 return end
  173.   if boomCount > 998 then boomCount = 999 end
  174.   term.setCursorPos(2,6)
  175.   term.write("How long before starting the show?")
  176.   term.setCursorPos(2,7)
  177.   term.write("(enter number of seconds to delay start of show)")
  178.   term.setCursorPos(2,8)
  179.   term.write("(0 = no delay)")
  180.   term.setCursorPos(2,10)
  181.   local delayTime = tonumber(read())
  182.   if delayTime == nil or delayTime < 1 then delayTime = 0 end
  183.   sleep(delayTime)
  184. end
  185.  
  186. local function initMe(a,b,c,d,e,f)   -- This will localize these variables within the scope of the function, whether information is passed or not
  187.   for a,b in pairs(rs.getSides()) do -- Auto-detect launcher
  188.     if peripheral.getType(b) == 'launcher' or peripheral.getType(b) == 'fireworks' then
  189.       fwl = peripheral.wrap(b)       -- this will 'wrap' the fireworks launcher, allowing API calls via 'fwl'
  190.       break                          -- we've found the launcher - exit the loop
  191.     elseif peripheral.getType(b) == 'modem' then          -- The launcher is not directly attached - looking for modems
  192.       if not peripheral.call(b,"isWireless") then         -- but not wireless modems
  193.         local mdm = peripheral.wrap(b)
  194.         for e,f in pairs(mdm.getNamesRemote()) do         -- look for a network attached launcher
  195.           if string.sub(f,1,9) == 'fireworks' then        -- if we find one
  196.             fwl = peripheral.wrap(f)                      -- wrap it
  197.             break                                         -- and exit the loop
  198.           end
  199.         end
  200.       end
  201.     end
  202.     if fwl == "none" then                                 -- We didn't find a launcher
  203.       term.clear()
  204.       term.setCursorPos(1,1)
  205.       term.write("Unable to identify fireworks launcher") -- Notify user
  206.       term.setCursorPos(1,3)
  207.       return
  208.     end
  209.   end
  210.   for c,d in pairs(rs.getSides()) do -- Auto-detect monitor
  211.     if peripheral.getType(d) == 'monitor' then
  212.       mon = peripheral.wrap(d)       -- this will 'wrap' the monitor, allowing API calls via 'mon'
  213.       break
  214.     end
  215.     local mon = "none"
  216.   end
  217.   if mon ~= "none" then
  218.     mon.setTextScale(0.5)            -- getSize() reports the size of the monitor based on the TextScale (default is 1) - setTextScale() before doing a getSize() - valid TextScales are 0.5 through 5
  219.     --monW,monH = mon.getSize()      -- gets monitor size - not necessary - this script is formatted for a single screen at TextScale(0.5) - monSize *can* help you determine how many monitors are connected if you know your current textScale
  220.     mon.setBackgroundColor(colors.black)
  221.     mon.setTextColor(colors.white)
  222.     mon.clear()
  223.     mon.setCursorPos(1,1)
  224.   end
  225. end
  226.  
  227. initMe()
  228. if fwl == "none" then                 -- When the launcher isn't detected
  229.   term.clear()
  230.   term.setCursorPos(2,2)
  231.   term.write("Fireworks Control Station")
  232.   term.setCursorPos(1,5)
  233.   if mon ~= "none" then
  234.     mon.clear()                        -- Clear the monitor
  235.     mon.setCursorPos(4,1)
  236.     mon.write("Fireworks")
  237.     mon.setCursorPos(5,2)
  238.     mon.write("Status")
  239.     mon.setCursorPos(6,6)
  240.     mon.write("IDLE")
  241.   end
  242.   return
  243. end
  244.  
  245. while true do
  246.   initShow()
  247.   if boomCount > 0 then
  248.     if boomCount == 999 then
  249.       while true do                    -- this will generate an 'infinite' number of fireworks (limited by supplies)
  250.         makeFireworks()                -- generate a firework
  251.         displayIt()                    -- display the info
  252.         launchIt()                     -- fire that sucker!
  253.       end
  254.     else
  255.       local z
  256.       for z = 1,boomCount,1 do         -- this will generate and fire a fixed number of fireworks
  257.         makeFireworks()                -- generate a firework
  258.         displayIt()                    -- display the info
  259.         launchIt()                     -- fire that sucker!
  260.       end
  261.     end
  262.   end
  263.   sleep(2)
  264. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement