OpenInv/src/main/java/com/lishid/openinv/OpenInv.java

193 lines
7.6 KiB
Java
Raw Normal View History

2012-02-20 20:09:44 +00:00
/*
2013-12-07 09:49:15 +00:00
* Copyright (C) 2011-2014 lishid. All rights reserved.
2012-02-20 20:09:44 +00:00
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, version 3.
*
* 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 General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
2011-06-03 14:32:54 +00:00
package com.lishid.openinv;
2011-06-03 14:32:54 +00:00
import java.util.HashMap;
import java.util.Map;
2015-06-22 02:03:03 +00:00
import java.util.UUID;
import java.util.logging.Logger;
2012-01-12 19:23:53 +00:00
import org.bukkit.ChatColor;
2013-07-06 04:58:42 +00:00
import org.bukkit.configuration.file.FileConfiguration;
2012-01-12 19:23:53 +00:00
import org.bukkit.entity.Player;
2013-12-06 07:31:14 +00:00
import org.bukkit.permissions.Permissible;
2011-06-03 14:32:54 +00:00
import org.bukkit.plugin.PluginManager;
import org.bukkit.plugin.java.JavaPlugin;
import com.lishid.openinv.commands.*;
2015-06-22 02:03:03 +00:00
import com.lishid.openinv.internal.AnySilentChest;
import com.lishid.openinv.internal.InventoryAccess;
import com.lishid.openinv.internal.PlayerDataManager;
import com.lishid.openinv.internal.SpecialEnderChest;
import com.lishid.openinv.internal.SpecialPlayerInventory;
import com.lishid.openinv.listeners.OpenInvEntityListener;
import com.lishid.openinv.listeners.OpenInvInventoryListener;
import com.lishid.openinv.listeners.OpenInvPlayerListener;
2011-06-03 14:32:54 +00:00
/**
* Open other player's inventory
*
2011-06-03 14:32:54 +00:00
* @author lishid
*/
2013-12-07 09:44:40 +00:00
public class OpenInv extends JavaPlugin {
public static final Logger logger = Logger.getLogger("Minecraft.OpenInv");
2013-12-07 09:44:40 +00:00
2015-06-22 02:03:03 +00:00
public static final Map<UUID, SpecialPlayerInventory> inventories = new HashMap<UUID, SpecialPlayerInventory>();
public static final Map<UUID, SpecialEnderChest> enderChests = new HashMap<UUID, SpecialEnderChest>();
2013-12-07 09:44:40 +00:00
public static OpenInv mainPlugin;
2015-06-22 02:03:03 +00:00
public static PlayerDataManager playerLoader;
public static InventoryAccess inventoryAccess;
public static AnySilentChest anySilentChest;
2013-12-07 09:44:40 +00:00
2015-06-22 02:03:03 +00:00
@Override
2013-12-07 09:44:40 +00:00
public void onEnable() {
// Get plugin manager
PluginManager pm = getServer().getPluginManager();
2013-12-07 09:44:40 +00:00
2015-06-22 02:03:03 +00:00
playerLoader = new PlayerDataManager();
inventoryAccess = new InventoryAccess();
anySilentChest = new AnySilentChest();
2013-12-07 09:44:40 +00:00
mainPlugin = this;
2013-07-06 04:58:42 +00:00
FileConfiguration config = getConfig();
config.set("CheckForUpdates", config.getBoolean("CheckForUpdates", true));
2015-06-22 10:15:28 +00:00
config.set("notifySilentChest", config.getBoolean("notifySilentChest", true));
config.set("notifyAnyChest", config.getBoolean("notifyAnyChest", true));
2013-07-06 04:58:42 +00:00
config.set("ItemOpenInvItemID", config.getInt("ItemOpenInvItemID", 280));
config.addDefault("ItemOpenInvItemID", 280);
config.addDefault("CheckForUpdates", true);
2015-06-22 10:15:28 +00:00
config.addDefault("notifySilentChest", true);
config.addDefault("notifyAnyChest", true);
2013-07-06 04:58:42 +00:00
config.options().copyDefaults(true);
saveConfig();
2013-12-07 09:44:40 +00:00
pm.registerEvents(new OpenInvPlayerListener(), this);
pm.registerEvents(new OpenInvEntityListener(), this);
pm.registerEvents(new OpenInvInventoryListener(), this);
2013-12-07 09:44:40 +00:00
2011-06-03 14:32:54 +00:00
getCommand("openinv").setExecutor(new OpenInvPluginCommand(this));
2012-11-16 03:45:53 +00:00
getCommand("searchinv").setExecutor(new SearchInvPluginCommand());
2012-01-12 19:23:53 +00:00
getCommand("toggleopeninv").setExecutor(new ToggleOpenInvPluginCommand());
2015-06-22 02:03:03 +00:00
getCommand("silentchest").setExecutor(new SilentChestPluginCommand());
getCommand("anychest").setExecutor(new AnyChestPluginCommand());
getCommand("openender").setExecutor(new OpenEnderPluginCommand(this));
}
2013-12-07 09:44:40 +00:00
2015-06-22 10:15:28 +00:00
public static boolean notifySilentChest() {
return mainPlugin.getConfig().getBoolean("notifySilentChest", true);
2013-07-06 04:58:42 +00:00
}
2013-12-07 09:44:40 +00:00
2015-06-22 10:15:28 +00:00
public static boolean notifyAnyChest() {
return mainPlugin.getConfig().getBoolean("notifyAnyChest", true);
2013-07-06 04:58:42 +00:00
}
2013-12-07 09:44:40 +00:00
2015-06-22 10:15:28 +00:00
public static boolean getPlayerItemOpenInvStatus(String name) {
return mainPlugin.getConfig().getBoolean("ItemOpenInv." + name.toLowerCase() + ".toggle", false);
}
2013-12-07 09:44:40 +00:00
2015-06-22 10:15:28 +00:00
public static void setPlayerItemOpenInvStatus(String name, boolean status) {
mainPlugin.getConfig().set("ItemOpenInv." + name.toLowerCase() + ".toggle", status);
mainPlugin.saveConfig();
}
2013-12-07 09:44:40 +00:00
2015-06-22 10:15:28 +00:00
public static boolean getPlayerSilentChestStatus(String name) {
return mainPlugin.getConfig().getBoolean("SilentChest." + name.toLowerCase() + ".toggle", false);
2011-12-16 10:30:28 +00:00
}
2013-12-07 09:44:40 +00:00
2015-06-22 10:15:28 +00:00
public static void setPlayerSilentChestStatus(String name, boolean status) {
mainPlugin.getConfig().set("SilentChest." + name.toLowerCase() + ".toggle", status);
mainPlugin.saveConfig();
2011-12-16 10:30:28 +00:00
}
2013-12-07 09:44:40 +00:00
2015-06-22 10:15:28 +00:00
public static boolean getPlayerAnyChestStatus(String name) {
return mainPlugin.getConfig().getBoolean("AnyChest." + name.toLowerCase() + ".toggle", true);
2012-01-12 19:23:53 +00:00
}
2013-12-07 09:44:40 +00:00
2015-06-22 10:15:28 +00:00
public static void setPlayerAnyChestStatus(String name, boolean status) {
mainPlugin.getConfig().set("AnyChest." + name.toLowerCase() + ".toggle", status);
mainPlugin.saveConfig();
2012-01-12 19:23:53 +00:00
}
2013-12-07 09:44:40 +00:00
2015-06-22 10:15:28 +00:00
public static int getItemOpenInvItem() {
2013-12-07 09:44:40 +00:00
if (mainPlugin.getConfig().get("ItemOpenInvItemID") == null) {
2015-06-22 10:15:28 +00:00
saveToConfig("ItemOpenInvItemID", 280);
}
return mainPlugin.getConfig().getInt("ItemOpenInvItemID", 280);
}
2013-12-07 09:44:40 +00:00
2015-06-22 10:15:28 +00:00
public static Object getFromConfig(String data, Object defaultValue) {
Object val = mainPlugin.getConfig().get(data);
2013-12-07 09:44:40 +00:00
if (val == null) {
mainPlugin.getConfig().set(data, defaultValue);
2011-09-18 23:34:06 +00:00
return defaultValue;
}
2013-12-07 09:44:40 +00:00
else {
return val;
2011-09-18 23:34:06 +00:00
}
}
2013-12-07 09:44:40 +00:00
2015-06-22 10:15:28 +00:00
public static void saveToConfig(String data, Object value) {
mainPlugin.getConfig().set(data, value);
mainPlugin.saveConfig();
2011-09-18 23:34:06 +00:00
}
2013-12-07 09:44:40 +00:00
/**
* Log an information
*/
2013-12-07 09:44:40 +00:00
public static void log(String text) {
logger.info("[OpenInv] " + text);
}
2013-12-07 09:44:40 +00:00
/**
* Log an error
*/
2013-12-07 09:44:40 +00:00
public static void log(Throwable e) {
logger.severe("[OpenInv] " + e.toString());
e.printStackTrace();
}
2013-12-07 09:44:40 +00:00
2015-06-22 10:15:28 +00:00
public static void showHelp(Player player) {
player.sendMessage(ChatColor.GREEN + "/openinv <Player> - Open a player's inventory");
player.sendMessage(ChatColor.GREEN + " (aliases: oi, inv, open)");
player.sendMessage(ChatColor.GREEN + "/openender <Player> - Open a player's enderchest");
player.sendMessage(ChatColor.GREEN + " (aliases: oe, enderchest)");
player.sendMessage(ChatColor.GREEN + "/toggleopeninv - Toggle item openinv function");
player.sendMessage(ChatColor.GREEN + " (aliases: toi, toggleoi, toggleinv)");
player.sendMessage(ChatColor.GREEN + "/searchinv <Item> [MinAmount] - ");
player.sendMessage(ChatColor.GREEN + " Search and list players having a specific item.");
player.sendMessage(ChatColor.GREEN + " (aliases: si, search)");
player.sendMessage(ChatColor.GREEN + "/anychest - Toggle anychest function");
player.sendMessage(ChatColor.GREEN + " (aliases: ac)");
player.sendMessage(ChatColor.GREEN + "/silentchest - Toggle silent chest function");
player.sendMessage(ChatColor.GREEN + " (aliases: sc, silent)");
2012-01-12 19:23:53 +00:00
}
2013-12-07 09:44:40 +00:00
2013-12-06 07:31:14 +00:00
public static boolean hasPermission(Permissible player, String permission) {
String[] parts = permission.split("\\.");
String perm = "";
2013-12-07 09:44:40 +00:00
for (int i = 0; i < parts.length; i++) {
if (player.hasPermission(perm + "*")) {
2013-12-06 07:31:14 +00:00
return true;
}
perm += parts[i] + ".";
}
return player.hasPermission(permission);
}
2015-06-22 02:03:03 +00:00
}