Advertisement
Guest User

init-scripts 1.0

a guest
Jul 29th, 2012
499
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 4.40 KB | None | 0 0
  1. --[[
  2.     init-scripts 1.0
  3.     Written by Forairan
  4.    
  5.     init-scripts is a startup program that allows execution of several startup
  6.     programs in different files, all without them interfering with each other.
  7.    
  8.     To write an init-script, just write a standard ComputerCraft Lua program,
  9.     and stick it in /init-scripts/. Please follow the standard naming convention
  10.     of "00_script", where "00" is the priority (lower numbered scripts get loaded
  11.     earlier in the boot process), and "script" is the purpose/name of your script.
  12.     Once put in the /init-scripts/ directory, the script will automatically run
  13.     on any computer with init-scripts installed.
  14.    
  15.     To disable an init-script, you don't need to completely delete it - just append
  16.     a ".disabled" suffix to it. For example, "00_script" will be executed, while
  17.     "00_script.disabled" will not. The disabling functionality can be enabled/disabled
  18.     using the configuration section below.
  19.    
  20.     Another security option is verbose mode, which prints the name of each
  21.     script as it is being executed. You can also do an "interactive boot"
  22.     by pressing ALT within 1 second of starting the computer. This allows you to select
  23.     exactly what will be loaded and what will not be loaded.
  24.     The interactive boot feature can be disabled via a configuration option below.
  25. ]]--
  26.  
  27. -- Configuration Section
  28. --[[
  29.     Allows or disallows script disabling.
  30.    
  31.     true: Allow script disabling
  32.     false: Disallow script disabling
  33. ]]--
  34. local allowScriptDisabling = true
  35.  
  36. --[[
  37.     Enables or disables verbose mode, where init-scripts prints the name of each
  38.     scripts as it is being executed.
  39.  
  40.     true: Enable verbose mode
  41.     false: Disable verbose mode
  42. ]]--
  43. local verboseMode = true
  44.  
  45. --[[
  46.     Enables or disables the ability to boot interactively - as in, choose which scripts
  47.     will execute and which will not.
  48.     If this option is enabled, you can press "ALT" within 1 second while the computer boots
  49.     to enter interactive mode.
  50.    
  51.     true: Allow entering interactive mode
  52.     false: Disallow entering interactive mode
  53. ]]--
  54. local allowInteractiveMode = true
  55.  
  56. -- END OF USER-MODIFIABLE CODE
  57.  
  58. os.pullEvent = os.pullEventRaw
  59. local usingInteractiveMode = false
  60.  
  61. -- Check to see if /init-scripts/ exists first.
  62. if fs.isDir("/init-scripts") ~= true then
  63.     fs.makeDir("/init-scripts")
  64. end
  65.  
  66. -- Get a listing of all the scripts
  67. local oldDir = shell.dir()
  68. shell.setDir("/init-scripts")
  69. local scriptList = fs.list("/init-scripts")
  70. local oldShellEnv = getfenv(shell.run)
  71.  
  72. -- Interactive mode prompt
  73. if allowInteractiveMode then
  74.     print("Press ALT now to enter interactive mode.")
  75.     os.startTimer(1)
  76.     local event, p1, p2, p3 = os.pullEvent()
  77.     if event == "key" and p1 == 56 then
  78.         print("Performing interactive boot.")
  79.         usingInteractiveMode = true
  80.     end
  81. end
  82.  
  83. -- Iterate through the listing and execute the scripts
  84. for _,file in ipairs(scriptList) do
  85.     skipped = false
  86.     if allowScriptDisabling and not usingInteractiveMode then
  87.         if string.sub(file, -9) == ".disabled" then
  88.             if verboseMode then
  89.                 print("Not executing ".. file .." because it is disabled.")
  90.             end
  91.             skipped = true
  92.         end
  93.     end
  94.    
  95.     if usingInteractiveMode then
  96.         -- Ask the user if we want to execute it
  97.         local function promptUser()
  98.             write("Execute '" .. file .. "'? (y/n) ")
  99.             input = read()
  100.            
  101.             if input == "Y" or input == "y" then
  102.                 skipped = false
  103.             elseif input == "N" or input == "n" then
  104.                 skipped = true
  105.                 print("Skipping.")
  106.             else
  107.                 print("Invalid response.")
  108.                 promptUser()
  109.             end
  110.         end
  111.         promptUser()
  112.     end
  113.    
  114.     if skipped ~= true then
  115.         -- Actually execute it
  116.         if verboseMode or usingInteractiveMode then
  117.             print("Executing ".. file)
  118.         end
  119.        
  120.         -- Set the environment so nothing nasty happens
  121.         local tEnv = {}
  122.         setmetatable(tEnv, {__index = _G})
  123.         setfenv(shell.run, tEnv)
  124.         shell.run(file)
  125.     end
  126. end
  127.  
  128. -- Reset the shell.run environment
  129. setfenv(shell.run, oldShellEnv)
  130.  
  131. -- We're done!
  132. if verboseMode then
  133.     print("init-scripts execution complete.")
  134. end
  135. shell.setDir(oldDir)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement