SteamWar/BauSystem
Archiviert
13
0
Dieses Repository wurde am 2024-08-04 archiviert. Du kannst Dateien ansehen und es klonen, aber nicht pushen oder Issues/Pull-Requests öffnen.
BauSystem/BauSystem_Main/src/de/steamwar/bausystem/BauSystem.java

207 Zeilen
7.7 KiB
Java

2020-08-26 18:48:57 +02:00
/*
This file is a part of the SteamWar software.
Copyright (C) 2020 SteamWar.de-Serverteam
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Affero General Public License for more details.
You should have received a copy of the GNU Affero General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
package de.steamwar.bausystem;
import de.steamwar.bausystem.commands.*;
2020-08-30 07:13:11 +02:00
import de.steamwar.bausystem.tracer.TraceListener;
2020-08-30 02:23:23 +02:00
import de.steamwar.bausystem.tracer.TNTTracer;
import de.steamwar.bausystem.tracer.ShowManager;
2020-09-06 01:52:19 +02:00
import de.steamwar.bausystem.world.*;
2019-11-10 17:29:01 +01:00
import de.steamwar.core.CommandRemover;
2020-04-08 17:06:01 +02:00
import de.steamwar.core.Core;
2020-01-08 23:50:07 +01:00
import de.steamwar.scoreboard.SWScoreboard;
2019-11-10 17:29:01 +01:00
import de.steamwar.sql.SteamwarUser;
import org.bukkit.Bukkit;
2020-07-26 23:00:03 +02:00
import org.bukkit.GameRule;
2020-03-21 20:01:00 +01:00
import org.bukkit.Material;
import org.bukkit.attribute.Attribute;
import org.bukkit.configuration.InvalidConfigurationException;
2020-03-21 20:01:00 +01:00
import org.bukkit.enchantments.Enchantment;
import org.bukkit.entity.Player;
import org.bukkit.event.EventHandler;
import org.bukkit.event.Listener;
import org.bukkit.event.entity.PlayerDeathEvent;
2020-03-21 20:01:00 +01:00
import org.bukkit.event.inventory.InventoryClickEvent;
2019-09-18 19:19:54 +02:00
import org.bukkit.event.player.PlayerLoginEvent;
import org.bukkit.event.player.PlayerQuitEvent;
2020-03-21 20:01:00 +01:00
import org.bukkit.inventory.ItemStack;
import org.bukkit.inventory.meta.ItemMeta;
import org.bukkit.plugin.java.JavaPlugin;
import org.bukkit.scheduler.BukkitTask;
import java.io.File;
import java.io.IOException;
import java.util.List;
import java.util.UUID;
2019-09-03 19:56:41 +02:00
import java.util.logging.Level;
public class BauSystem extends JavaPlugin implements Listener {
private static BauSystem plugin;
private static UUID owner;
private static List<ArenaSection> sections;
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/";
private BukkitTask autoShutdown;
@Override
public void onEnable() {
plugin = this;
2019-12-31 12:58:55 +01:00
String worldName = Bukkit.getWorlds().get(0).getName();
try{
2019-12-31 12:58:55 +01:00
owner = UUID.fromString(worldName);
2019-12-31 13:02:15 +01:00
sections = ArenaSection.loadFromFile(new File(Bukkit.getWorldContainer().getPath() + '/' + owner.toString() + "/sections.yml"));
}catch(IllegalArgumentException e){
2019-12-31 12:58:55 +01:00
try{
2019-12-31 13:02:15 +01:00
int ownerID = Integer.parseInt(worldName);
owner = SteamwarUser.get(ownerID).getUUID();
sections = ArenaSection.loadFromFile(new File(Bukkit.getWorldContainer().getPath() + '/' + ownerID + "/sections.yml"));
}catch(NumberFormatException | IOException | InvalidConfigurationException ex){
getLogger().log(Level.SEVERE, "owner is no UUID / failed to load sections.yml", e);
2019-12-31 12:58:55 +01:00
Bukkit.shutdown();
return;
}
2019-12-31 13:02:15 +01:00
} catch (InvalidConfigurationException | IOException e) {
getLogger().log(Level.SEVERE, "Failed to load sections.yml", e);
Bukkit.shutdown();
return;
}
try {
CommandRemover.removeAll("tp", "gamemode", "time", "clear");
2019-11-10 17:29:01 +01:00
CommandInjector.injectCommand(new CommandTeleport());
CommandInjector.injectCommand(new CommandGamemode());
CommandInjector.injectCommand(new CommandTime());
CommandInjector.injectCommand(new CommandClear());
} catch (Exception e) {
2019-09-03 19:56:41 +02:00
getLogger().log(Level.SEVERE, "Failed to replace commands", e);
Bukkit.shutdown();
return;
}
getCommand("trace").setExecutor(new CommandTrace());
2020-07-18 23:01:50 +02:00
getCommand("trace").setTabCompleter(new CommandTraceTabCompleter());
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("freeze").setExecutor(new CommandFreeze());
getCommand("testblock").setExecutor(new CommandTestblock());
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-09-03 19:56:41 +02:00
getCommand("loader").setExecutor(new CommandLoader());
2019-11-23 21:36:49 +01:00
getCommand("lockschem").setExecutor(new CommandLockschem());
2020-07-04 09:29:04 +02:00
getCommand("debugstick").setExecutor(new CommandDebugStick());
2020-06-30 07:34:19 +02:00
getCommand("watervision").setExecutor(new CommandGills());
2020-09-06 01:52:19 +02:00
getCommand("detonator").setExecutor(new CommandDetonator());
getCommand("detonator").setTabCompleter(new CommandDetonatorTabCompleter());
Bukkit.getPluginManager().registerEvents(this, this);
Bukkit.getPluginManager().registerEvents(new RegionListener(), this);
2020-01-07 23:22:31 +01:00
Bukkit.getPluginManager().registerEvents(new BauScoreboard(), this);
2020-08-30 07:13:11 +02:00
Bukkit.getPluginManager().registerEvents(new TraceListener(), this);
Bukkit.getPluginManager().registerEvents(new ClipboardListener(), this);
2020-01-27 07:04:47 +01:00
new AFKStopper();
2020-08-30 07:13:11 +02:00
TNTTracer.init();
autoShutdown = Bukkit.getScheduler().runTaskLater(this, Bukkit::shutdown, 1200);
}
public static BauSystem getPlugin(){
return plugin;
}
public static UUID getOwner(){
return owner;
}
public static List<ArenaSection> getSections(){
return sections;
}
public static int getOwnerID(){
2019-11-10 17:29:01 +01:00
return SteamwarUser.get(owner).getId();
}
@EventHandler
public void onDeath(PlayerDeathEvent e) {
e.setDeathMessage(null);
}
@EventHandler
2019-09-18 19:19:54 +02:00
public void onJoin(PlayerLoginEvent e) {
if(autoShutdown != null){
autoShutdown.cancel();
autoShutdown = null;
}
Player p = e.getPlayer();
2020-02-25 18:04:38 +01:00
p.setOp(true);
2020-07-07 21:21:00 +02:00
2020-08-30 02:23:23 +02:00
ShowManager.add(p);
2020-08-30 07:13:11 +02:00
if (Core.getVersion() == 15)
2020-07-27 06:53:08 +02:00
Bukkit.getWorlds().get(0).setGameRule(GameRule.REDUCED_DEBUG_INFO, false);
}
@EventHandler
2020-01-07 23:22:31 +01:00
public void onLeave(PlayerQuitEvent e) {
2020-07-26 16:29:16 +02:00
Player p = e.getPlayer();
SWScoreboard.removeScoreboard(p);
if (Bukkit.getOnlinePlayers().isEmpty() || (Bukkit.getOnlinePlayers().size() == 1 && Bukkit.getOnlinePlayers().contains(p))) {
Bukkit.shutdown();
2020-07-07 21:21:00 +02:00
}
}
2020-03-21 20:01:00 +01:00
@EventHandler
public void onInventoryClick(InventoryClickEvent e) {
ItemStack stack = e.getCursor();
2020-08-30 07:13:11 +02:00
if (stack == null || !stack.hasItemMeta())
return;
assert stack.getItemMeta() != null;
2020-03-21 20:01:00 +01:00
if (stack.getItemMeta().hasEnchants()) {
for (Enchantment en : Enchantment.values()) {
if (stack.getEnchantmentLevel(en) > en.getMaxLevel())
stack.removeEnchantment(en);
}
}
2020-04-08 17:06:01 +02:00
Material material = stack.getType();
2020-07-26 16:29:16 +02:00
if (material == Material.POTION || material == Material.SPLASH_POTION || material == Material.LINGERING_POTION) {
2020-04-08 17:06:01 +02:00
stack.setType(Material.MILK_BUCKET);
2020-07-26 16:29:16 +02:00
}
2020-04-08 17:06:01 +02:00
2020-07-26 16:29:16 +02:00
if (Core.getVersion() < 14) {
2020-04-08 17:06:01 +02:00
e.setCurrentItem(stack);
return;
}
2020-03-21 20:01:00 +01:00
if (stack.getItemMeta().hasAttributeModifiers()) {
ItemMeta meta = stack.getItemMeta();
2020-07-26 16:29:16 +02:00
for (Attribute a : Attribute.values()) {
meta.removeAttributeModifier(a);
}
2020-03-21 20:01:00 +01:00
stack.setItemMeta(meta);
}
e.setCurrentItem(stack);
}
}