Class BukkitScriptManager
java.lang.Object
dev.magicmq.pyspigot.manager.script.ScriptManager
dev.magicmq.pyspigot.bukkit.manager.script.BukkitScriptManager
The Bukkit-specific implementation of the script manager.
-
Method Summary
Modifier and TypeMethodDescriptionboolean
callScriptExceptionEvent
(Script script, PyException exception) Calls a ScriptExceptionEvent via a platform-specific implementation.void
callScriptLoadEvent
(Script script) Calls a ScriptLoadEvent via a platform-specific implementation.void
callScriptUnloadEvent
(Script script, boolean error) Calls a ScriptUnloadEvent via a platform-specific implementation.void
Cancels the start script task via a platform-specific implementation.static BukkitScriptManager
get()
Get the singleton instance of this BukkitScriptManager.void
initScriptPermissions
(Script script) Initialize script permissions via a platform-specific implementation.boolean
isPluginDependencyMissing
(String dependency) Checks if a script plugin dependency is missing via a platform-specific implementation.newScript
(Path path, String name, ScriptOptions options) Initialize a new Script via a platform-specific implementation.Initialize a new ScriptOptions with the default values.newScriptOptions
(String scriptName) Initialize a new ScriptOptions using the appropriate values in the script_options.yml file, using the script name to search for the values.void
removeScriptPermissions
(Script script) Remove script permissions from the server via a platform-specific implementation.void
Schedules and starts the start script task for the script load delay via a platform-specific implementation.void
unregisterFromPlatformManagers
(Script script) Unregisters the script from any platform-specific managers.Methods inherited from class dev.magicmq.pyspigot.manager.script.ScriptManager
getAllScriptNames, getAllScriptPaths, getLoadedScriptNames, getLoadedScripts, getScript, getScriptInfo, getScriptOptions, getScriptOptions, getScriptPath, handleScriptException, initJython, isScriptRunning, loadScript, loadScript, loadScript, loadScripts, shutdown, unloadScript, unloadScript, unloadScripts
-
Method Details
-
scheduleStartScriptTask
public void scheduleStartScriptTask()Description copied from class:ScriptManager
Schedules and starts the start script task for the script load delay via a platform-specific implementation.- Specified by:
scheduleStartScriptTask
in classScriptManager
-
cancelStartScriptTask
public void cancelStartScriptTask()Description copied from class:ScriptManager
Cancels the start script task via a platform-specific implementation.- Specified by:
cancelStartScriptTask
in classScriptManager
-
isPluginDependencyMissing
Description copied from class:ScriptManager
Checks if a script plugin dependency is missing via a platform-specific implementation.- Specified by:
isPluginDependencyMissing
in classScriptManager
- Parameters:
dependency
- The name of the dependency to check- Returns:
- True if the dependency is missing, false if it is present
-
callScriptExceptionEvent
Description copied from class:ScriptManager
Calls a ScriptExceptionEvent via a platform-specific implementation.- Specified by:
callScriptExceptionEvent
in classScriptManager
- Parameters:
script
- The script that threw the exceptionexception
- The exception that was thrown- Returns:
- True if the exception should be reported, false if otherwise
-
callScriptLoadEvent
Description copied from class:ScriptManager
Calls a ScriptLoadEvent via a platform-specific implementation.- Specified by:
callScriptLoadEvent
in classScriptManager
- Parameters:
script
- The script that was loaded
-
callScriptUnloadEvent
Description copied from class:ScriptManager
Calls a ScriptUnloadEvent via a platform-specific implementation.- Specified by:
callScriptUnloadEvent
in classScriptManager
- Parameters:
script
- The script that was unloadederror
- True if the unload was due to an error, false if it was not
-
newScriptOptions
Description copied from class:ScriptManager
Initialize a new ScriptOptions with the default values.This is done in a platform-specific implementation, as initializing script options for Bukkit initializes permissions
- Specified by:
newScriptOptions
in classScriptManager
- Returns:
- The new ScriptOptions
-
newScriptOptions
Description copied from class:ScriptManager
Initialize a new ScriptOptions using the appropriate values in the script_options.yml file, using the script name to search for the values.This is done in a platform-specific implementation, as initializing script options for Bukkit initializes permissions
- Specified by:
newScriptOptions
in classScriptManager
- Parameters:
scriptName
- The name of the script whose script options should be initialized- Returns:
- The new ScriptOptions
- Throws:
InvalidConfigurationException
- If
-
newScript
Description copied from class:ScriptManager
Initialize a new Script via a platform-specific implementation.- Specified by:
newScript
in classScriptManager
- Parameters:
path
- The path that corresponds to the file where the script livesname
- The name of this script. Should contain its extension (.py)options
- TheScriptOptions
for this script- Returns:
- The new script
-
initScriptPermissions
Description copied from class:ScriptManager
Initialize script permissions via a platform-specific implementation.- Specified by:
initScriptPermissions
in classScriptManager
- Parameters:
script
- The script whose permissions should be initialized
-
removeScriptPermissions
Description copied from class:ScriptManager
Remove script permissions from the server via a platform-specific implementation.- Specified by:
removeScriptPermissions
in classScriptManager
- Parameters:
script
- The script whose permissions should be removed
-
unregisterFromPlatformManagers
Description copied from class:ScriptManager
Unregisters the script from any platform-specific managers.- Specified by:
unregisterFromPlatformManagers
in classScriptManager
- Parameters:
script
- The script to unregister
-
get
Get the singleton instance of this BukkitScriptManager.- Returns:
- The instance
-