mirror of
https://github.com/SunNetservers/MiniGames.git
synced 2025-04-03 10:16:26 +02:00
120 lines
4.5 KiB
Java
120 lines
4.5 KiB
Java
package net.knarcraft.dropper;
|
|
|
|
import net.knarcraft.dropper.arena.DropperArenaHandler;
|
|
import net.knarcraft.dropper.arena.DropperArenaPlayerRegistry;
|
|
import net.knarcraft.dropper.command.CreateArenaCommand;
|
|
import net.knarcraft.dropper.command.EditArenaCommand;
|
|
import net.knarcraft.dropper.command.EditArenaTabCompleter;
|
|
import net.knarcraft.dropper.command.JoinArenaCommand;
|
|
import net.knarcraft.dropper.command.JoinArenaTabCompleter;
|
|
import net.knarcraft.dropper.command.LeaveArenaCommand;
|
|
import net.knarcraft.dropper.command.ListArenaCommand;
|
|
import net.knarcraft.dropper.command.RemoveArenaCommand;
|
|
import net.knarcraft.dropper.listener.DamageListener;
|
|
import net.knarcraft.dropper.listener.MoveListener;
|
|
import net.knarcraft.dropper.listener.PlayerLeaveListener;
|
|
import org.bukkit.command.CommandExecutor;
|
|
import org.bukkit.command.PluginCommand;
|
|
import org.bukkit.command.TabCompleter;
|
|
import org.bukkit.plugin.PluginManager;
|
|
import org.bukkit.plugin.java.JavaPlugin;
|
|
import org.jetbrains.annotations.NotNull;
|
|
import org.jetbrains.annotations.Nullable;
|
|
|
|
import java.util.logging.Level;
|
|
|
|
/**
|
|
* The dropper plugin's main class
|
|
*/
|
|
@SuppressWarnings("unused")
|
|
public final class Dropper extends JavaPlugin {
|
|
|
|
private static Dropper instance;
|
|
private DropperArenaHandler arenaHandler;
|
|
private DropperArenaPlayerRegistry playerRegistry;
|
|
|
|
/**
|
|
* Gets an instance of this plugin
|
|
*
|
|
* @return <p>An instance of this plugin, or null if not initialized yet.</p>
|
|
*/
|
|
public static Dropper getInstance() {
|
|
return instance;
|
|
}
|
|
|
|
/**
|
|
* Gets the arena handler for this instance
|
|
*
|
|
* @return <p>A dropper arena handler</p>
|
|
*/
|
|
public DropperArenaHandler getArenaHandler() {
|
|
return this.arenaHandler;
|
|
}
|
|
|
|
/**
|
|
* Gets the arena player registry for this instance
|
|
*
|
|
* @return <p>A dropper arena player registry</p>
|
|
*/
|
|
public DropperArenaPlayerRegistry getPlayerRegistry() {
|
|
return this.playerRegistry;
|
|
}
|
|
|
|
@Override
|
|
public void onEnable() {
|
|
// Plugin startup logic
|
|
instance = this;
|
|
this.playerRegistry = new DropperArenaPlayerRegistry();
|
|
this.arenaHandler = new DropperArenaHandler();
|
|
this.arenaHandler.loadArenas();
|
|
|
|
//TODO: Add a command for joining a specific arena. Only teleport if the stage check succeeds (The server can
|
|
// use something like https://www.spigotmc.org/resources/commandblocks.62720/ for immersion)
|
|
//TODO: Store various information about players' performance, and hook into PlaceholderAPI
|
|
|
|
//TODO: Possibly implement an optional queue mode, which only allows one player inside one dropper arena at any
|
|
// time (to prevent players from pushing each-other)?
|
|
|
|
//TODO: Store which players have cleared which arenas to keep track of whether the trial game-modes should be
|
|
// available
|
|
|
|
PluginManager pluginManager = getServer().getPluginManager();
|
|
pluginManager.registerEvents(new DamageListener(), this);
|
|
pluginManager.registerEvents(new MoveListener(), this);
|
|
pluginManager.registerEvents(new PlayerLeaveListener(), this);
|
|
|
|
registerCommand("droppercreate", new CreateArenaCommand(), null);
|
|
registerCommand("dropperlist", new ListArenaCommand(), null);
|
|
registerCommand("dropperjoin", new JoinArenaCommand(), new JoinArenaTabCompleter());
|
|
registerCommand("dropperleave", new LeaveArenaCommand(), null);
|
|
registerCommand("dropperedit", new EditArenaCommand(), new EditArenaTabCompleter());
|
|
registerCommand("dropperremove", new RemoveArenaCommand(), null);
|
|
}
|
|
|
|
@Override
|
|
public void onDisable() {
|
|
|
|
}
|
|
|
|
/**
|
|
* Registers a command
|
|
*
|
|
* @param commandName <p>The name of the command to register (defined in plugin.yml)</p>
|
|
* @param commandExecutor <p>The executor for the command</p>
|
|
* @param tabCompleter <p>The tab-completer to use, or null</p>
|
|
*/
|
|
private void registerCommand(@NotNull String commandName, @NotNull CommandExecutor commandExecutor,
|
|
@Nullable TabCompleter tabCompleter) {
|
|
PluginCommand command = this.getCommand(commandName);
|
|
if (command != null) {
|
|
command.setExecutor(commandExecutor);
|
|
if (tabCompleter != null) {
|
|
command.setTabCompleter(tabCompleter);
|
|
}
|
|
} else {
|
|
getLogger().log(Level.SEVERE, "Unable to register the command " + commandName);
|
|
}
|
|
}
|
|
|
|
}
|