/src/net/milkbowl/vault/chat/plugins/Chat_mChatSuite.java
Java | 284 lines | 228 code | 40 blank | 16 comment | 43 complexity | 9501b5a8ae31ee5b24ef46abe4e19736 MD5 | raw file
- /* This file is part of Vault.
-
- Vault is free software: you can redistribute it and/or modify
- it under the terms of the GNU Lesser General Public License as published by
- the Free Software Foundation, either version 3 of the License, or
- (at your option) any later version.
-
- Vault 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 Lesser General Public License for more details.
-
- You should have received a copy of the GNU Lesser General Public License
- along with Vault. If not, see <http://www.gnu.org/licenses/>.
- */
- package net.milkbowl.vault.chat.plugins;
-
- import com.miraclem4n.mchat.api.Reader;
- import com.miraclem4n.mchat.api.Writer;
- import com.miraclem4n.mchat.types.InfoType;
- import in.mDev.MiracleM4n.mChatSuite.mChatSuite;
-
- import java.util.logging.Logger;
-
- import net.milkbowl.vault.chat.Chat;
- import net.milkbowl.vault.permission.Permission;
-
- import org.bukkit.Bukkit;
- import org.bukkit.event.EventHandler;
- import org.bukkit.event.EventPriority;
- import org.bukkit.event.Listener;
- import org.bukkit.event.server.PluginDisableEvent;
- import org.bukkit.event.server.PluginEnableEvent;
- import org.bukkit.plugin.Plugin;
-
- public class Chat_mChatSuite extends Chat {
- private static final Logger log = Logger.getLogger("Minecraft");
- private final String name = "mChatSuite";
- private Plugin plugin = null;
- private mChatSuite mChat = null;
-
- public Chat_mChatSuite(Plugin plugin, Permission perms) {
- super(perms);
- this.plugin = plugin;
-
- Bukkit.getServer().getPluginManager().registerEvents(new PermissionServerListener(), plugin);
-
- // Load Plugin in case it was loaded before
- if (mChat == null) {
- Plugin chat = plugin.getServer().getPluginManager().getPlugin("mChatSuite");
- if (chat != null && chat.isEnabled()) {
- mChat = (mChatSuite) chat;
- log.info(String.format("[%s][Chat] %s hooked.", plugin.getDescription().getName(), "mChatSuite"));
- }
- }
- }
-
- public class PermissionServerListener implements Listener {
-
- @EventHandler(priority = EventPriority.MONITOR)
- public void onPluginEnable(PluginEnableEvent event) {
- if (mChat == null) {
- Plugin chat = event.getPlugin();
- if (chat.getDescription().getName().equals("mChatSuite")) {
- mChat = (mChatSuite) chat;
- log.info(String.format("[%s][Chat] %s hooked.", plugin.getDescription().getName(), "mChatSuite"));
- }
- }
- }
-
- @EventHandler(priority = EventPriority.MONITOR)
- public void onPluginDisable(PluginDisableEvent event) {
- if (mChat != null) {
- if (event.getPlugin().getDescription().getName().equals("mChatSuite")) {
- mChat = null;
- log.info(String.format("[%s][Chat] %s un-hooked.", plugin.getDescription().getName(), "mChatSuite"));
- }
- }
- }
- }
-
- @Override
- public String getName() {
- return name;
- }
-
- @Override
- public boolean isEnabled() {
- return mChat != null && mChat.isEnabled();
- }
-
- @Override
- public String getPlayerPrefix(String world, String player) {
- return Reader.getPrefix(player, InfoType.USER, world);
- }
-
- @Override
- public void setPlayerPrefix(String world, String player, String prefix) {
- setPlayerInfoValue(world, player, "prefix", prefix);
- }
-
- @Override
- public String getPlayerSuffix(String world, String player) {
- return Reader.getSuffix(player, InfoType.USER, world);
- }
-
- @Override
- public void setPlayerSuffix(String world, String player, String suffix) {
- setPlayerInfoValue(world, player, "suffix", suffix);
- }
-
- @Override
- public String getGroupPrefix(String world, String group) {
- return Reader.getPrefix(group, InfoType.GROUP, world);
- }
-
- @Override
- public void setGroupPrefix(String world, String group, String prefix) {
- setGroupInfoValue(world, group, "prefix", prefix);
- }
-
- @Override
- public String getGroupSuffix(String world, String group) {
- return Reader.getSuffix(group, InfoType.GROUP, world);
- }
-
- @Override
- public void setGroupSuffix(String world, String group, String suffix) {
- setGroupInfoValue(world, group, "suffix", suffix);
- }
-
- @Override
- public int getPlayerInfoInteger(String world, String player, String node, int defaultValue) {
- String val = getPlayerInfoValue(world, player, node);
- if (val == null || val.equals("")) {
- return defaultValue;
- }
- try {
- return Integer.parseInt(val);
- } catch (NumberFormatException e) {
- return defaultValue;
- }
- }
-
- @Override
- public void setPlayerInfoInteger(String world, String player, String node, int value) {
- setPlayerInfoValue(world, player, node, value);
- }
-
- @Override
- public int getGroupInfoInteger(String world, String group, String node, int defaultValue) {
- String val = getGroupInfoValue(world, group, node);
- if (val == null || val.equals("")) {
- return defaultValue;
- }
- try {
- return Integer.parseInt(val);
- } catch (NumberFormatException e) {
- return defaultValue;
- }
- }
-
- @Override
- public void setGroupInfoInteger(String world, String group, String node, int value) {
- setGroupInfoValue(world, group, node, value);
- }
-
- @Override
- public double getPlayerInfoDouble(String world, String player, String node, double defaultValue) {
- String val = getPlayerInfoValue(world, player, node);
- if (val == null || val.equals("")) {
- return defaultValue;
- }
- try {
- return Double.parseDouble(val);
- } catch (NumberFormatException e) {
- return defaultValue;
- }
- }
-
- @Override
- public void setPlayerInfoDouble(String world, String player, String node, double value) {
- setPlayerInfoValue(world, player, node, value);
- }
-
- @Override
- public double getGroupInfoDouble(String world, String group, String node,double defaultValue) {
- String val = getGroupInfoValue(world, group, node);
- if (val == null || val.equals("")) {
- return defaultValue;
- }
- try {
- return Double.parseDouble(val);
- } catch (NumberFormatException e) {
- return defaultValue;
- }
- }
-
- @Override
- public void setGroupInfoDouble(String world, String group, String node, double value) {
- setGroupInfoValue(world, group, node, value);
- }
-
- @Override
- public boolean getPlayerInfoBoolean(String world, String player, String node, boolean defaultValue) {
- String val = getPlayerInfoValue(world, player, node);
- if (val == null || val.equals("")) {
- return defaultValue;
- }
- return Boolean.parseBoolean(val);
- }
-
- @Override
- public void setPlayerInfoBoolean(String world, String player, String node, boolean value) {
- setPlayerInfoValue(world, player, node, value);
- }
-
- @Override
- public boolean getGroupInfoBoolean(String world, String group, String node, boolean defaultValue) {
- String val = getGroupInfoValue(world, group, node);
- if (val == null || val.equals("")) {
- return defaultValue;
- }
- return Boolean.valueOf(val);
- }
-
- @Override
- public void setGroupInfoBoolean(String world, String group, String node, boolean value) {
- setGroupInfoValue(world, group, node, value);
- }
-
- @Override
- public String getPlayerInfoString(String world, String player, String node, String defaultValue) {
- String val = getPlayerInfoValue(world, player, node);
- if (val == null) {
- return defaultValue;
- } else {
- return val;
- }
- }
-
- @Override
- public void setPlayerInfoString(String world, String player, String node, String value) {
- setPlayerInfoValue(world, player, node, value);
- }
-
- @Override
- public String getGroupInfoString(String world, String group, String node, String defaultValue) {
- String val = getGroupInfoValue(world, group, node);
- if (val == null) {
- return defaultValue;
- } else {
- return val;
- }
- }
-
- @Override
- public void setGroupInfoString(String world, String group, String node, String value) {
- setGroupInfoValue(world, group, node, value);
- }
-
- private void setPlayerInfoValue(String world, String player, String node, Object value) {
- if (world != null) {
- Writer.setWorldVar(player, InfoType.USER, world, node, value.toString());
- } else {
- Writer.setInfoVar(player, InfoType.USER, node, value.toString());
- }
- }
-
- private void setGroupInfoValue(String world, String group, String node, Object value) {
- if (world != null) {
- Writer.setWorldVar(group, InfoType.GROUP, world, node, value);
- } else {
- Writer.setInfoVar(group, InfoType.GROUP, node, value);
- }
- }
- private String getPlayerInfoValue(String world, String player, String node) {
- return Reader.getInfo(player, InfoType.USER, world, node);
- }
-
- private String getGroupInfoValue(String world, String group, String node) {
- return Reader.getInfo(group, InfoType.GROUP, world, node);
- }
- }