public abstract class Plugin
extends java.lang.Object
Plugin
is the base class for all plugins. Extend this class to
create your own plugin.Constructor and Description |
---|
Plugin() |
Modifier and Type | Method and Description |
---|---|
void |
enqueue(java.lang.Runnable runnable)
"Enqueues" a task (Runnable).
|
void |
executeDelayed(float delay,
java.lang.Runnable runnable)
Executes a task after a given delay.
|
java.util.Collection<Plugin> |
getAllPlugins()
Returns a collection of all plugins which are currently loaded.
|
java.lang.String |
getDescription(java.lang.String name)
Gets the description for this plugin (which is defined in the plugin.yml
file).
|
java.lang.String |
getGameVersion()
Gets the current version of the game/server.
|
int |
getID()
Gets the internal id of this plugin.
|
Internals |
getInternals() |
Database |
getMySQLConnection(java.lang.String database,
java.lang.String ip,
int port,
java.lang.String username,
java.lang.String password)
Gets a new MySQL database connection.
|
java.lang.String |
getName() |
java.lang.String |
getPath()
Gets the path to the plugin folder (for example: "C:/Server/plugins/MyPlugin").
|
Plugin |
getPluginByID(int pluginID) |
Plugin |
getPluginByName(java.lang.String pluginName)
Finds a plugin with the according name and returns the instance.
|
Server |
getServer()
Gets the server object.
|
Database |
getSQLiteConnection(java.lang.String database)
Gets a new SQLite database connection.
|
World |
getWorld()
Gets the world object.
|
WorldDatabase |
getWorldDatabase()
Gets an interface providing access to the world database.
|
abstract void |
onDisable()
This method is called when the plugin will be disabled and unloaded.
|
abstract void |
onEnable()
This method is called when the plugin will be enabled.
|
void |
onLoad()
This method is called when the plugin will be loaded.
|
void |
registerEventListener(Listener listener)
Registers an event
Listener . |
java.lang.String |
sendHttpRequest(java.lang.String url)
Sends a http request to the target url.
|
java.lang.String |
sendHttpRequest(java.lang.String url,
java.util.HashMap<java.lang.String,java.lang.String> postData)
Sends a http request with POST data to the target url.
|
void |
triggerEvent(Event event)
Calls an event.
|
void |
unregisterEventListener(Listener listener)
Unregisters an event
Listener , i.e. this listener will no
longer be called when an event triggers. |
public void onLoad()
onEnable()
method
for initialization purposes.public abstract void onEnable()
public abstract void onDisable()
public final int getID()
public java.lang.String getName()
public java.lang.String getDescription(java.lang.String name)
name
- the actual property you want to get. Valid names: name,
version, author, team, description, main, license, website, contact, git
public java.lang.String getPath()
public Server getServer()
public World getWorld()
public final java.lang.String getGameVersion()
public final Plugin getPluginByID(int pluginID)
public final Plugin getPluginByName(java.lang.String pluginName)
pluginName
- the name of the plugin you're looking for (which is specified
in the plugin.yml file)public final java.util.Collection<Plugin> getAllPlugins()
public final WorldDatabase getWorldDatabase()
public final Internals getInternals()
public final Database getSQLiteConnection(java.lang.String database)
database
- the path to the database (to get the relative plugin path,
call getPath()
).Database
object which represents this database connection,
or null if an error occurs.public final Database getMySQLConnection(java.lang.String database, java.lang.String ip, int port, java.lang.String username, java.lang.String password)
database
- the database name.ip
- the ip of the MySQL server.port
- the port of the MySQL server (by default 3306)username
- the login username, e.g. "root"password
- the login password.Database
object which represents this database connection,
or null if an error occurs (access denied, wrong ip etc.)public final java.lang.String sendHttpRequest(java.lang.String url)
url
- the target urlpublic final java.lang.String sendHttpRequest(java.lang.String url, java.util.HashMap<java.lang.String,java.lang.String> postData)
url
- the target urlpostData
- the POST data as a hash mappublic final void registerEventListener(Listener listener)
Listener
. The particular methods of this
event will be called when an event was triggered (depending on the
parameter of the method - an event method is supposed to have a single
Event
parameter). Also make sure to use the
@EventMethod
annotation for these methods.listener
- the event listener you want to register.public final void unregisterEventListener(Listener listener)
Listener
, i.e. this listener will no
longer be called when an event triggers.listener
- the event listener you want to unregister.public final void triggerEvent(Event event)
event
- the event you want to trigger.public final void enqueue(java.lang.Runnable runnable)
runnable
- the Runnable that will be processed in the next tick.public final void executeDelayed(float delay, java.lang.Runnable runnable)
enqueue(java.lang.Runnable)
.delay
- the delay in seconds.runnable
- the task you want to execute delayed.