2019-06-11 07:05:05 +02:00
|
|
|
package de.steamwar.bausystem;
|
|
|
|
|
|
|
|
import de.steamwar.bausystem.commands.*;
|
2019-06-13 10:22:07 +02:00
|
|
|
import de.steamwar.bausystem.sql.Bauwelt;
|
|
|
|
import de.steamwar.bausystem.world.ArenaSection;
|
|
|
|
import de.steamwar.bausystem.world.RegionListener;
|
2019-09-03 19:56:41 +02:00
|
|
|
import de.steamwar.bausystem.world.TNTListener;
|
2019-06-13 10:22:07 +02:00
|
|
|
import de.warking.hunjy.MySQL.WarkingUser;
|
2019-06-11 07:05:05 +02:00
|
|
|
import org.bukkit.Bukkit;
|
2019-06-13 10:22:07 +02:00
|
|
|
import org.bukkit.configuration.InvalidConfigurationException;
|
2019-06-11 07:05:05 +02:00
|
|
|
import org.bukkit.entity.Player;
|
|
|
|
import org.bukkit.event.EventHandler;
|
|
|
|
import org.bukkit.event.Listener;
|
|
|
|
import org.bukkit.event.entity.PlayerDeathEvent;
|
2019-09-18 19:19:54 +02:00
|
|
|
import org.bukkit.event.player.PlayerLoginEvent;
|
2019-06-13 10:22:07 +02:00
|
|
|
import org.bukkit.event.player.PlayerQuitEvent;
|
2019-06-11 07:05:05 +02:00
|
|
|
import org.bukkit.permissions.PermissionAttachment;
|
|
|
|
import org.bukkit.plugin.java.JavaPlugin;
|
|
|
|
|
2019-06-13 10:22:07 +02:00
|
|
|
import java.io.File;
|
|
|
|
import java.io.IOException;
|
|
|
|
import java.util.List;
|
2019-06-11 07:05:05 +02:00
|
|
|
import java.util.UUID;
|
2019-09-03 19:56:41 +02:00
|
|
|
import java.util.logging.Level;
|
2019-06-11 07:05:05 +02:00
|
|
|
|
|
|
|
public class BauSystem extends JavaPlugin implements Listener {
|
|
|
|
private static BauSystem plugin;
|
|
|
|
private static UUID owner;
|
|
|
|
private static Bauwelt welt;
|
2019-06-13 10:22:07 +02:00
|
|
|
private static List<ArenaSection> sections;
|
2019-06-11 07:05:05 +02:00
|
|
|
public static final String PREFIX = "§eBauSystem§8» §7";
|
2019-06-20 12:13:30 +02:00
|
|
|
public static final String SECTION_PATH = "/home/minecraft/backbone/server/UserBau/";
|
2019-06-11 07:05:05 +02:00
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onEnable() {
|
|
|
|
plugin = this;
|
|
|
|
|
|
|
|
try{
|
|
|
|
owner = UUID.fromString(Bukkit.getWorlds().get(0).getName());
|
|
|
|
}catch(IllegalArgumentException e){
|
2019-09-03 19:56:41 +02:00
|
|
|
getLogger().log(Level.SEVERE, "owner is no UUID", e);
|
2019-06-11 07:05:05 +02:00
|
|
|
Bukkit.shutdown();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
welt = Bauwelt.getBauwelt(owner);
|
|
|
|
|
|
|
|
try {
|
|
|
|
CommandRemover.removeCommand("tp");
|
|
|
|
CommandRemover.injectCommand(new CommandTeleport());
|
|
|
|
CommandRemover.removeCommand("gamemode");
|
|
|
|
CommandRemover.injectCommand(new CommandGamemode());
|
|
|
|
CommandRemover.removeCommand("time");
|
|
|
|
CommandRemover.injectCommand(new CommandTime());
|
|
|
|
} catch (Exception e) {
|
2019-09-03 19:56:41 +02:00
|
|
|
getLogger().log(Level.SEVERE, "Failed to replace commands", e);
|
2019-06-11 07:05:05 +02:00
|
|
|
Bukkit.shutdown();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2019-06-13 10:22:07 +02:00
|
|
|
try {
|
|
|
|
sections = ArenaSection.loadFromFile(new File(Bukkit.getWorldContainer().getPath() + '/' + owner.toString() + "/sections.yml"));
|
|
|
|
} catch (IOException | InvalidConfigurationException e) {
|
2019-09-03 19:56:41 +02:00
|
|
|
getLogger().log(Level.SEVERE, "Failed to load sections.yml", e);
|
2019-06-13 10:22:07 +02:00
|
|
|
Bukkit.shutdown();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2019-06-11 07:05:05 +02:00
|
|
|
getCommand("trace").setExecutor(new CommandTrace());
|
|
|
|
getCommand("nightvision").setExecutor(new CommandNV());
|
|
|
|
getCommand("reset").setExecutor(new CommandReset());
|
|
|
|
getCommand("speed").setExecutor(new CommandSpeed());
|
|
|
|
getCommand("tnt").setExecutor(new CommandTNT());
|
|
|
|
getCommand("fire").setExecutor(new CommandFire());
|
|
|
|
getCommand("testblock").setExecutor(new CommandTestblock());
|
2019-06-13 10:22:07 +02:00
|
|
|
getCommand("bau").setExecutor(new CommandBau());
|
2019-06-14 08:43:40 +02:00
|
|
|
getCommand("bauinfo").setExecutor(new CommandInfo());
|
2019-07-11 18:27:46 +02:00
|
|
|
getCommand("protect").setExecutor(new CommandProtect());
|
2019-07-14 20:07:46 +02:00
|
|
|
getCommand("skull").setExecutor(new CommandSkull());
|
2019-08-06 20:26:04 +02:00
|
|
|
getCommand("freeze").setExecutor(new CommandFreeze());
|
2019-09-03 19:56:41 +02:00
|
|
|
getCommand("loader").setExecutor(new CommandLoader());
|
2019-06-11 07:05:05 +02:00
|
|
|
|
|
|
|
Bukkit.getPluginManager().registerEvents(this, this);
|
|
|
|
Bukkit.getPluginManager().registerEvents(new RegionListener(), this);
|
2019-09-03 19:56:41 +02:00
|
|
|
Bukkit.getPluginManager().registerEvents(new TNTListener(), this);
|
2019-06-11 07:05:05 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
public static BauSystem getPlugin(){
|
|
|
|
return plugin;
|
|
|
|
}
|
|
|
|
public static UUID getOwner(){
|
|
|
|
return owner;
|
|
|
|
}
|
|
|
|
public static Bauwelt getWelt(){
|
|
|
|
return welt;
|
|
|
|
}
|
2019-06-13 10:22:07 +02:00
|
|
|
public static List<ArenaSection> getSections(){
|
|
|
|
return sections;
|
|
|
|
}
|
|
|
|
public static int getOwnerID(){
|
|
|
|
return WarkingUser.get(owner).getId();
|
|
|
|
}
|
2019-06-11 07:05:05 +02:00
|
|
|
|
|
|
|
@EventHandler
|
|
|
|
public void onDeath(PlayerDeathEvent e) {
|
|
|
|
e.setDeathMessage(null);
|
|
|
|
}
|
|
|
|
|
|
|
|
@EventHandler
|
2019-09-18 19:19:54 +02:00
|
|
|
public void onJoin(PlayerLoginEvent e) {
|
2019-06-11 07:05:05 +02:00
|
|
|
Player p = e.getPlayer();
|
|
|
|
PermissionAttachment attachment = p.addAttachment(this);
|
|
|
|
attachment.setPermission("F3NPerm.use", true);
|
|
|
|
attachment.setPermission("fawe.permpack.basic", true);
|
|
|
|
attachment.setPermission("worldedit.navigation.jumpto.tool", true);
|
|
|
|
attachment.setPermission("worldedit.navigation.thru.tool", true);
|
|
|
|
}
|
2019-06-13 10:22:07 +02:00
|
|
|
|
|
|
|
@EventHandler
|
|
|
|
public void onLeave(PlayerQuitEvent e){
|
2019-06-13 21:06:59 +02:00
|
|
|
if(Bukkit.getOnlinePlayers().isEmpty() || (Bukkit.getOnlinePlayers().size() == 1 && Bukkit.getOnlinePlayers().contains(e.getPlayer())))
|
2019-06-13 10:22:07 +02:00
|
|
|
Bukkit.shutdown();
|
|
|
|
}
|
2019-06-11 07:05:05 +02:00
|
|
|
}
|