mirror of
https://github.com/songoda/FabledSkyBlock.git
synced 2024-11-23 10:45:54 +01:00
Removed unused classes
This commit is contained in:
parent
debd41caf4
commit
edc101ee77
@ -27,7 +27,6 @@ import com.songoda.skyblock.levelling.rework.IslandLevelManager;
|
||||
import com.songoda.skyblock.limit.LimitationInstanceHandler;
|
||||
import com.songoda.skyblock.listeners.*;
|
||||
import com.songoda.skyblock.localization.LocalizationManager;
|
||||
import com.songoda.skyblock.menus.Rollback;
|
||||
import com.songoda.skyblock.menus.admin.Creator;
|
||||
import com.songoda.skyblock.menus.admin.Generator;
|
||||
import com.songoda.skyblock.menus.admin.Levelling;
|
||||
@ -190,8 +189,7 @@ public class SkyBlock extends SongodaPlugin {
|
||||
if (pluginManager.isPluginEnabled("EpicSpawners")) pluginManager.registerEvents(new EpicSpawners(this), this);
|
||||
if (pluginManager.isPluginEnabled("UltimateStacker"))
|
||||
pluginManager.registerEvents(new UltimateStacker(this), this);
|
||||
|
||||
pluginManager.registerEvents(new Rollback(), this);
|
||||
|
||||
pluginManager.registerEvents(new Levelling(), this);
|
||||
pluginManager.registerEvents(new Generator(), this);
|
||||
pluginManager.registerEvents(new Creator(), this);
|
||||
|
@ -1,67 +0,0 @@
|
||||
package com.songoda.skyblock.command.commands.island.disabled;
|
||||
|
||||
import com.songoda.core.compatibility.CompatibleSound;
|
||||
import com.songoda.skyblock.command.SubCommand;
|
||||
import com.songoda.skyblock.config.FileManager.Config;
|
||||
import com.songoda.skyblock.island.Island;
|
||||
import com.songoda.skyblock.island.IslandManager;
|
||||
import com.songoda.skyblock.island.IslandRole;
|
||||
import com.songoda.skyblock.menus.Rollback;
|
||||
import com.songoda.skyblock.message.MessageManager;
|
||||
import com.songoda.skyblock.sound.SoundManager;
|
||||
import org.bukkit.command.ConsoleCommandSender;
|
||||
import org.bukkit.configuration.file.FileConfiguration;
|
||||
import org.bukkit.entity.Player;
|
||||
|
||||
import java.io.File;
|
||||
|
||||
public class RollbackCommand extends SubCommand {
|
||||
|
||||
@Override
|
||||
public void onCommandByPlayer(Player player, String[] args) {
|
||||
MessageManager messageManager = skyblock.getMessageManager();
|
||||
IslandManager islandManager = skyblock.getIslandManager();
|
||||
SoundManager soundManager = skyblock.getSoundManager();
|
||||
|
||||
Config config = skyblock.getFileManager().getConfig(new File(skyblock.getDataFolder(), "language.yml"));
|
||||
FileConfiguration configLoad = config.getFileConfiguration();
|
||||
|
||||
Island island = islandManager.getIsland(player);
|
||||
|
||||
if (island == null) {
|
||||
messageManager.sendMessage(player, configLoad.getString("Command.Island.Rollback.Owner.Message"));
|
||||
soundManager.playSound(player, CompatibleSound.BLOCK_ANVIL_LAND.getSound(), 1.0F, 1.0F);
|
||||
} else if (island.hasRole(IslandRole.Owner, player.getUniqueId())) {
|
||||
Rollback.getInstance().open(player);
|
||||
soundManager.playSound(player, CompatibleSound.BLOCK_CHEST_OPEN.getSound(), 1.0F, 1.0F);
|
||||
} else {
|
||||
messageManager.sendMessage(player, configLoad.getString("Command.Island.Rollback.Role.Message"));
|
||||
soundManager.playSound(player, CompatibleSound.BLOCK_ANVIL_LAND.getSound(), 1.0F, 1.0F);
|
||||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onCommandByConsole(ConsoleCommandSender sender, String[] args) {
|
||||
sender.sendMessage("SkyBlock | Error: You must be a player to perform that command.");
|
||||
}
|
||||
|
||||
@Override
|
||||
public String getName() {
|
||||
return "rollback";
|
||||
}
|
||||
|
||||
@Override
|
||||
public String getInfoMessagePath() {
|
||||
return "Command.Island.Rollback.Info.Message";
|
||||
}
|
||||
|
||||
@Override
|
||||
public String[] getAliases() {
|
||||
return new String[0];
|
||||
}
|
||||
|
||||
@Override
|
||||
public String[] getArguments() {
|
||||
return new String[0];
|
||||
}
|
||||
}
|
@ -1,206 +0,0 @@
|
||||
package com.songoda.skyblock.menus;
|
||||
|
||||
import com.songoda.core.compatibility.CompatibleMaterial;
|
||||
import com.songoda.core.compatibility.CompatibleSound;
|
||||
import com.songoda.skyblock.SkyBlock;
|
||||
import com.songoda.skyblock.config.FileManager.Config;
|
||||
import com.songoda.skyblock.island.Island;
|
||||
import com.songoda.skyblock.island.IslandManager;
|
||||
import com.songoda.skyblock.island.IslandRole;
|
||||
import com.songoda.skyblock.message.MessageManager;
|
||||
import com.songoda.skyblock.sound.SoundManager;
|
||||
|
||||
import com.songoda.skyblock.utils.version.NMSUtil;
|
||||
import org.bukkit.Bukkit;
|
||||
import org.bukkit.ChatColor;
|
||||
import org.bukkit.Material;
|
||||
import org.bukkit.configuration.file.FileConfiguration;
|
||||
import org.bukkit.entity.Player;
|
||||
import org.bukkit.event.EventHandler;
|
||||
import org.bukkit.event.Listener;
|
||||
import org.bukkit.event.inventory.InventoryClickEvent;
|
||||
import org.bukkit.event.inventory.InventoryType;
|
||||
import org.bukkit.inventory.Inventory;
|
||||
import org.bukkit.inventory.ItemStack;
|
||||
import org.bukkit.inventory.meta.ItemMeta;
|
||||
|
||||
import java.io.File;
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
|
||||
public class Rollback implements Listener {
|
||||
|
||||
private static Rollback instance;
|
||||
|
||||
public static Rollback getInstance() {
|
||||
if (instance == null) {
|
||||
instance = new Rollback();
|
||||
}
|
||||
|
||||
return instance;
|
||||
}
|
||||
|
||||
public void open(Player player) {
|
||||
SkyBlock skyblock = SkyBlock.getInstance();
|
||||
|
||||
Config languageConfig = skyblock.getFileManager().getConfig(new File(skyblock.getDataFolder(), "language.yml"));
|
||||
FileConfiguration configLoad = languageConfig.getFileConfiguration();
|
||||
|
||||
Inventory inv = Bukkit.createInventory(null, InventoryType.HOPPER,
|
||||
ChatColor.translateAlternateColorCodes('&', configLoad.getString("Menu.Rollback.Title")));
|
||||
|
||||
ItemStack is;
|
||||
ItemMeta im;
|
||||
|
||||
List<String> itemLore = new ArrayList<>();
|
||||
|
||||
is = CompatibleMaterial.BLACK_STAINED_GLASS_PANE.getItem();
|
||||
im = is.getItemMeta();
|
||||
im.setDisplayName(ChatColor.translateAlternateColorCodes('&',
|
||||
configLoad.getString("Menu.Rollback.Item.Barrier.Displayname")));
|
||||
is.setItemMeta(im);
|
||||
inv.setItem(1, is);
|
||||
|
||||
is = new ItemStack(CompatibleMaterial.WRITABLE_BOOK.getMaterial());
|
||||
im = is.getItemMeta();
|
||||
im.setDisplayName(ChatColor.translateAlternateColorCodes('&',
|
||||
configLoad.getString("Menu.Rollback.Item.Save.Displayname")));
|
||||
|
||||
for (String itemLoreList : configLoad.getStringList("Menu.Rollback.Item.Save.Lore")) {
|
||||
itemLore.add(ChatColor.translateAlternateColorCodes('&', itemLoreList));
|
||||
}
|
||||
|
||||
im.setLore(itemLore);
|
||||
is.setItemMeta(im);
|
||||
inv.setItem(2, is);
|
||||
itemLore.clear();
|
||||
|
||||
is = new ItemStack(Material.ENCHANTED_BOOK);
|
||||
im = is.getItemMeta();
|
||||
im.setDisplayName(ChatColor.translateAlternateColorCodes('&',
|
||||
configLoad.getString("Menu.Rollback.Item.Load.Displayname")));
|
||||
|
||||
for (String itemLoreList : configLoad.getStringList("Menu.Rollback.Item.Load.Lore")) {
|
||||
itemLore.add(ChatColor.translateAlternateColorCodes('&', itemLoreList));
|
||||
}
|
||||
|
||||
im.setLore(itemLore);
|
||||
is.setItemMeta(im);
|
||||
inv.setItem(3, is);
|
||||
itemLore.clear();
|
||||
|
||||
is = new ItemStack(Material.HOPPER);
|
||||
im = is.getItemMeta();
|
||||
im.setDisplayName(ChatColor.translateAlternateColorCodes('&',
|
||||
configLoad.getString("Menu.Rollback.Item.Reset.Displayname")));
|
||||
|
||||
for (String itemLoreList : configLoad.getStringList("Menu.Rollback.Item.Reset.Lore")) {
|
||||
itemLore.add(ChatColor.translateAlternateColorCodes('&', itemLoreList));
|
||||
}
|
||||
|
||||
im.setLore(itemLore);
|
||||
is.setItemMeta(im);
|
||||
inv.setItem(4, is);
|
||||
itemLore.clear();
|
||||
|
||||
player.openInventory(inv);
|
||||
}
|
||||
|
||||
@EventHandler
|
||||
public void onInventoryClick(InventoryClickEvent event) {
|
||||
Player player = (Player) event.getWhoClicked();
|
||||
ItemStack is = event.getCurrentItem();
|
||||
|
||||
if (event.getCurrentItem() != null && event.getCurrentItem().getType() != Material.AIR) {
|
||||
SkyBlock skyblock = SkyBlock.getInstance();
|
||||
|
||||
MessageManager messageManager = skyblock.getMessageManager();
|
||||
IslandManager islandManager = skyblock.getIslandManager();
|
||||
SoundManager soundManager = skyblock.getSoundManager();
|
||||
|
||||
Config config = skyblock.getFileManager().getConfig(new File(skyblock.getDataFolder(), "language.yml"));
|
||||
FileConfiguration configLoad = config.getFileConfiguration();
|
||||
|
||||
String inventoryName = "";
|
||||
if (NMSUtil.getVersionNumber() > 13) {
|
||||
inventoryName = event.getView().getTitle();
|
||||
} else {
|
||||
try {
|
||||
inventoryName = (String) Inventory.class.getMethod("getName").invoke(event.getInventory());
|
||||
} catch (Exception ex) {
|
||||
ex.printStackTrace();
|
||||
}
|
||||
}
|
||||
|
||||
if (inventoryName.equals(ChatColor.translateAlternateColorCodes('&', configLoad.getString("Menu.Rollback.Title")))) {
|
||||
event.setCancelled(true);
|
||||
|
||||
Island island = islandManager.getIsland(player);
|
||||
|
||||
if (island == null) {
|
||||
messageManager.sendMessage(player,
|
||||
config.getFileConfiguration().getString("Command.Island.Rollback.Owner.Message"));
|
||||
soundManager.playSound(player, CompatibleSound.BLOCK_ANVIL_LAND.getSound(), 1.0F, 1.0F);
|
||||
player.closeInventory();
|
||||
|
||||
return;
|
||||
} else if (!island.hasRole(IslandRole.Owner, player.getUniqueId())) {
|
||||
messageManager.sendMessage(player,
|
||||
config.getFileConfiguration().getString("Command.Island.Rollback.Role.Message"));
|
||||
soundManager.playSound(player, CompatibleSound.BLOCK_ANVIL_LAND.getSound(), 1.0F, 1.0F);
|
||||
player.closeInventory();
|
||||
|
||||
return;
|
||||
}
|
||||
|
||||
if ((event.getCurrentItem().getType() == Material.NAME_TAG) && (is.hasItemMeta())
|
||||
&& (is.getItemMeta().getDisplayName().equals(ChatColor.translateAlternateColorCodes('&',
|
||||
configLoad.getString("Menu.Rollback.Item.Info.Displayname"))))) {
|
||||
soundManager.playSound(player, CompatibleSound.ENTITY_CHICKEN_EGG.getSound(), 1.0F, 1.0F);
|
||||
} else if ((event.getCurrentItem().getType() == CompatibleMaterial.BLACK_STAINED_GLASS_PANE.getMaterial())
|
||||
&& (is.hasItemMeta())
|
||||
&& (is.getItemMeta().getDisplayName().equals(ChatColor.translateAlternateColorCodes('&',
|
||||
configLoad.getString("Menu.Rollback.Item.Barrier.Displayname"))))) {
|
||||
soundManager.playSound(player, CompatibleSound.BLOCK_GLASS_BREAK.getSound(), 1.0F, 1.0F);
|
||||
} else if ((event.getCurrentItem().getType() == CompatibleMaterial.WRITABLE_BOOK.getMaterial())
|
||||
&& (is.hasItemMeta())
|
||||
&& (is.getItemMeta().getDisplayName().equals(ChatColor.translateAlternateColorCodes('&',
|
||||
configLoad.getString("Menu.Rollback.Item.Save.Displayname"))))) {
|
||||
/*
|
||||
* new BukkitRunnable() { public void run() { for (Location.World worldList :
|
||||
* Location.World.values()) { Location islandLocation =
|
||||
* island.getLocation(worldList, Location.Environment.Island);
|
||||
*
|
||||
* try { Schematic.getInstance().save(new File(new
|
||||
* File(skyblock.getDataFolder().toString() + "/rollback-data/" +
|
||||
* island.getOwnerUUID().toString()), worldList.name() + ".schematic"), new
|
||||
* Location(islandLocation.getWorld(), islandLocation.getBlockX() + 85,
|
||||
* islandLocation.getBlockY(), islandLocation.getBlockZ() + 85), new
|
||||
* Location(islandLocation.getWorld(), islandLocation.getBlockX() - 85,
|
||||
* islandLocation.getBlockY(), islandLocation.getBlockZ() - 85)); } catch
|
||||
* (Exception e) { e.printStackTrace(); } } } }.runTaskAsynchronously(skyblock);
|
||||
*/
|
||||
|
||||
soundManager.playSound(player, CompatibleSound.BLOCK_ANVIL_USE.getSound(), 1.0F, 1.0F);
|
||||
} else if ((event.getCurrentItem().getType() == Material.ENCHANTED_BOOK) && (is.hasItemMeta())
|
||||
&& (is.getItemMeta().getDisplayName().equals(ChatColor.translateAlternateColorCodes('&',
|
||||
configLoad.getString("Menu.Rollback.Item.Load.Displayname"))))) {
|
||||
/*
|
||||
* new BukkitRunnable() { public void run() { for (Location.World worldList :
|
||||
* Location.World.values()) { Location islandLocation =
|
||||
* island.getLocation(worldList, Location.Environment.Island);
|
||||
*
|
||||
* try { Schematic.getInstance().paste(new File(new
|
||||
* File(skyblock.getDataFolder().toString() + "/rollback-data/" +
|
||||
* island.getOwnerUUID().toString()), "Normal.schematic"), new
|
||||
* Location(islandLocation.getWorld(), islandLocation.getBlockX() - 85, 0,
|
||||
* islandLocation.getBlockZ() - 85), true); } catch (Exception e) {
|
||||
* e.printStackTrace(); } } } }.runTaskAsynchronously(skyblock);
|
||||
*/
|
||||
|
||||
soundManager.playSound(player, CompatibleSound.BLOCK_PISTON_EXTEND.getSound(), 1.0F, 1.0F);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
@ -1,96 +0,0 @@
|
||||
package com.songoda.skyblock.menus;
|
||||
|
||||
import com.songoda.core.compatibility.CompatibleMaterial;
|
||||
import com.songoda.skyblock.SkyBlock;
|
||||
import com.songoda.skyblock.config.FileManager;
|
||||
import com.songoda.skyblock.utils.item.MenuClickRegistry;
|
||||
import com.songoda.skyblock.utils.item.nInventoryUtil;
|
||||
import org.bukkit.Bukkit;
|
||||
import org.bukkit.configuration.file.FileConfiguration;
|
||||
import org.bukkit.entity.Player;
|
||||
|
||||
import java.io.File;
|
||||
import java.util.HashMap;
|
||||
import java.util.UUID;
|
||||
|
||||
/**
|
||||
* Used to select an input method using a gui.
|
||||
*/
|
||||
public class SelectInputMethod {
|
||||
|
||||
private static SelectInputMethod instance;
|
||||
|
||||
public static SelectInputMethod getInstance() {return instance == null ? instance = new SelectInputMethod() : instance;}
|
||||
|
||||
private HashMap<UUID,InputMethodSelectlistener> listeners;
|
||||
|
||||
public SelectInputMethod() {
|
||||
listeners = new HashMap<>();
|
||||
MenuClickRegistry.getInstance().register((executors -> {
|
||||
executors.put(MenuClickRegistry.RegistryKey.fromLanguageFile("Menu.Input.Item.All.Displayname", CompatibleMaterial.IRON_BLOCK), (ints,player,e) -> {
|
||||
listeners.get(player.getUniqueId()).choose(InputMethodSelectlistener.InputMethod.ALL);
|
||||
Bukkit.getScheduler().runTask(SkyBlock.getInstance(), () -> {
|
||||
listeners.remove(player);
|
||||
});
|
||||
e.setWillClose(true);
|
||||
e.setWillDestroy(true);
|
||||
});
|
||||
}));
|
||||
|
||||
MenuClickRegistry.getInstance().register((executors -> {
|
||||
executors.put(MenuClickRegistry.RegistryKey.fromLanguageFile("Menu.Input.Item.Custom.Displayname", CompatibleMaterial.OAK_SIGN), (ints,player,e) -> {
|
||||
listeners.get(player.getUniqueId()).choose(InputMethodSelectlistener.InputMethod.CUSTOM);
|
||||
Bukkit.getScheduler().runTask(SkyBlock.getInstance(), () -> {
|
||||
listeners.remove(player);
|
||||
});
|
||||
e.setWillClose(true);
|
||||
e.setWillDestroy(true);
|
||||
});
|
||||
}));
|
||||
|
||||
MenuClickRegistry.getInstance().register((executors -> {
|
||||
executors.put(MenuClickRegistry.RegistryKey.fromLanguageFile("Menu.Input.Item.Exit.Displayname", CompatibleMaterial.OAK_FENCE_GATE), (ints,player,e) -> {
|
||||
listeners.get(player.getUniqueId()).choose(InputMethodSelectlistener.InputMethod.CANCELED);
|
||||
Bukkit.getScheduler().runTask(SkyBlock.getInstance(), () -> {
|
||||
listeners.remove(player);
|
||||
});
|
||||
e.setWillClose(true);
|
||||
e.setWillDestroy(true);
|
||||
});
|
||||
}));
|
||||
|
||||
MenuClickRegistry.getInstance().register((executors -> {
|
||||
executors.put(MenuClickRegistry.RegistryKey.fromLanguageFile("Menu.Input.Item.Barrier.Displayname", CompatibleMaterial.BLACK_STAINED_GLASS_PANE), (ints,player,e) -> {
|
||||
e.setWillClose(false);
|
||||
e.setWillDestroy(false);
|
||||
});
|
||||
}));
|
||||
}
|
||||
|
||||
public void open(Player player, String action, InputMethodSelectlistener listener) {
|
||||
SkyBlock skyblock = SkyBlock.getInstance();
|
||||
FileManager.Config config = skyblock.getFileManager().getConfig(new File(skyblock.getDataFolder(), "language.yml"));
|
||||
FileConfiguration configLoad = config.getFileConfiguration();
|
||||
nInventoryUtil nInv = new nInventoryUtil(player, event -> MenuClickRegistry.getInstance().dispatch(player, event));
|
||||
|
||||
listeners.put(player.getUniqueId(), listener);
|
||||
|
||||
nInv.addItem(nInv.createItem(CompatibleMaterial.BLACK_STAINED_GLASS_PANE.getItem(), configLoad.getString("Menu.Input.Item.Barrier.Displayname"),
|
||||
configLoad.getStringList("Menu.Input.Item.Barrier.Lore"), null, null, null), 0,1,3,5,7,8);
|
||||
|
||||
nInv.addItem(nInv.createItem(CompatibleMaterial.IRON_BLOCK.getItem(), configLoad.getString("Menu.Input.Item.All.Displayname"),
|
||||
configLoad.getStringList("Menu.Input.Item.All.Lore"), null, null, null), 2);
|
||||
|
||||
nInv.addItem(nInv.createItem(CompatibleMaterial.OAK_FENCE_GATE.getItem(), configLoad.getString("Menu.Input.Item.Exit.Displayname"),
|
||||
configLoad.getStringList("Menu.Input.Item.Exit.Lore"), null, null, null), 4);
|
||||
|
||||
nInv.addItem(nInv.createItem(CompatibleMaterial.OAK_SIGN.getItem(), configLoad.getString("Menu.Input.Item.Custom.Displayname"),
|
||||
configLoad.getStringList("Menu.Input.Item.Custom.Lore"), null, null, null), 6);
|
||||
|
||||
nInv.setRows(1);
|
||||
|
||||
nInv.setTitle(configLoad.getString("Menu.Input.Title"));
|
||||
|
||||
Bukkit.getScheduler().runTask(skyblock,nInv::open);
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user