2014-01-20 18:01:49 +01:00
|
|
|
package me.libraryaddict.disguise;
|
|
|
|
|
|
|
|
import me.libraryaddict.disguise.utilities.PacketsManager;
|
|
|
|
|
|
|
|
public class DisguiseConfig {
|
2014-05-22 22:14:46 +02:00
|
|
|
private static boolean animationEnabled;
|
|
|
|
private static boolean bedEnabled;
|
2014-01-20 18:01:49 +01:00
|
|
|
private static boolean blowDisguisesOnAttack;
|
2014-05-22 22:14:46 +02:00
|
|
|
private static boolean collectEnabled;
|
2014-01-21 02:05:32 +01:00
|
|
|
private static String disguiseBlownMessage;
|
2014-05-22 22:14:46 +02:00
|
|
|
private static boolean enquipmentEnabled;
|
2014-01-20 18:01:49 +01:00
|
|
|
private static boolean entityAnimationsAdded;
|
2014-05-22 22:14:46 +02:00
|
|
|
private static boolean entityStatusEnabled;
|
2014-01-20 18:01:49 +01:00
|
|
|
private static boolean hearSelfDisguise;
|
|
|
|
private static boolean hidingArmor;
|
|
|
|
private static boolean hidingHeldItem;
|
2014-04-02 15:39:52 +02:00
|
|
|
private static boolean keepDisguiseEntityDespawn;
|
|
|
|
private static boolean keepDisguisePlayerDeath;
|
|
|
|
private static boolean keepDisguisePlayerLogout;
|
2014-05-23 04:52:21 +02:00
|
|
|
private static boolean maxHealthIsDisguisedEntity;
|
2014-05-22 22:14:46 +02:00
|
|
|
private static boolean miscDisguisesForLivingEnabled;
|
2014-01-20 18:01:49 +01:00
|
|
|
private static boolean modifyBoundingBox;
|
2014-05-22 22:14:46 +02:00
|
|
|
private static boolean movementEnabled;
|
2014-01-20 18:01:49 +01:00
|
|
|
private static boolean removeUnseenDisguises;
|
2014-05-22 22:14:46 +02:00
|
|
|
private static boolean ridingEnabled;
|
2014-05-23 03:58:21 +02:00
|
|
|
private static boolean sendsEntityMetadata;
|
2014-01-20 18:01:49 +01:00
|
|
|
private static boolean sendVelocity;
|
|
|
|
private static boolean showNameAboveHead;
|
|
|
|
private static boolean showNameAboveHeadAlwaysVisible;
|
|
|
|
private static boolean targetDisguises;
|
2014-05-22 22:14:46 +02:00
|
|
|
private static boolean witherSkullEnabled;
|
2014-01-20 18:01:49 +01:00
|
|
|
|
2014-01-21 02:05:32 +01:00
|
|
|
public static String getDisguiseBlownMessage() {
|
|
|
|
return disguiseBlownMessage;
|
|
|
|
}
|
|
|
|
|
2014-05-22 22:14:46 +02:00
|
|
|
public static boolean isAnimationPacketsEnabled() {
|
|
|
|
return animationEnabled;
|
|
|
|
}
|
|
|
|
|
|
|
|
public static boolean isBedPacketsEnabled() {
|
|
|
|
return bedEnabled;
|
|
|
|
}
|
|
|
|
|
|
|
|
public static boolean isCollectPacketsEnabled() {
|
|
|
|
return collectEnabled;
|
|
|
|
}
|
|
|
|
|
2014-01-20 18:01:49 +01:00
|
|
|
public static boolean isDisguiseBlownOnAttack() {
|
|
|
|
return blowDisguisesOnAttack;
|
|
|
|
}
|
|
|
|
|
2014-05-22 22:14:46 +02:00
|
|
|
public static boolean isEnquipmentPacketsEnabled() {
|
|
|
|
return enquipmentEnabled;
|
|
|
|
}
|
|
|
|
|
2014-01-20 18:01:49 +01:00
|
|
|
public static boolean isEntityAnimationsAdded() {
|
|
|
|
return entityAnimationsAdded;
|
|
|
|
}
|
|
|
|
|
2014-05-22 22:14:46 +02:00
|
|
|
public static boolean isEntityStatusPacketsEnabled() {
|
|
|
|
return entityStatusEnabled;
|
|
|
|
}
|
|
|
|
|
2014-01-20 18:01:49 +01:00
|
|
|
/**
|
|
|
|
* Is the plugin modifying the inventory packets so that players when self disguised, do not see their armor floating around
|
|
|
|
*/
|
|
|
|
public static boolean isHidingArmorFromSelf() {
|
|
|
|
return hidingArmor;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Does the plugin appear to remove the item they are holding, to prevent a floating sword when they are viewing self disguise
|
|
|
|
*/
|
|
|
|
public static boolean isHidingHeldItemFromSelf() {
|
|
|
|
return hidingHeldItem;
|
|
|
|
}
|
|
|
|
|
2014-04-02 15:39:52 +02:00
|
|
|
public static boolean isKeepDisguiseOnEntityDespawn() {
|
|
|
|
return keepDisguiseEntityDespawn;
|
|
|
|
}
|
|
|
|
|
|
|
|
public static boolean isKeepDisguiseOnPlayerDeath() {
|
|
|
|
return keepDisguisePlayerDeath;
|
|
|
|
}
|
|
|
|
|
|
|
|
public static boolean isKeepDisguiseOnPlayerLogout() {
|
|
|
|
return keepDisguisePlayerLogout;
|
|
|
|
}
|
|
|
|
|
2014-05-23 04:52:21 +02:00
|
|
|
public static boolean isMaxHealthDeterminedByDisguisedEntity() {
|
|
|
|
return maxHealthIsDisguisedEntity;
|
|
|
|
}
|
|
|
|
|
2014-05-23 03:58:21 +02:00
|
|
|
public static boolean isMetadataPacketsEnabled() {
|
|
|
|
return sendsEntityMetadata;
|
|
|
|
}
|
|
|
|
|
2014-05-22 22:14:46 +02:00
|
|
|
public static boolean isMiscDisguisesForLivingEnabled() {
|
|
|
|
return miscDisguisesForLivingEnabled;
|
|
|
|
}
|
|
|
|
|
2014-01-20 18:01:49 +01:00
|
|
|
public static boolean isModifyBoundingBox() {
|
|
|
|
return modifyBoundingBox;
|
|
|
|
}
|
|
|
|
|
|
|
|
public static boolean isMonstersIgnoreDisguises() {
|
|
|
|
return targetDisguises;
|
|
|
|
}
|
|
|
|
|
2014-05-22 22:14:46 +02:00
|
|
|
public static boolean isMovementPacketsEnabled() {
|
|
|
|
return movementEnabled;
|
|
|
|
}
|
|
|
|
|
2014-01-20 18:01:49 +01:00
|
|
|
public static boolean isNameAboveHeadAlwaysVisible() {
|
|
|
|
return showNameAboveHeadAlwaysVisible;
|
|
|
|
}
|
|
|
|
|
|
|
|
public static boolean isNameOfPlayerShownAboveDisguise() {
|
|
|
|
return showNameAboveHead;
|
|
|
|
}
|
|
|
|
|
2014-05-22 22:14:46 +02:00
|
|
|
public static boolean isRidingPacketsEnabled() {
|
|
|
|
return ridingEnabled;
|
|
|
|
}
|
|
|
|
|
2014-01-20 18:01:49 +01:00
|
|
|
public static boolean isSelfDisguisesSoundsReplaced() {
|
|
|
|
return hearSelfDisguise;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Is the sound packets caught and modified
|
|
|
|
*/
|
|
|
|
public static boolean isSoundEnabled() {
|
|
|
|
return PacketsManager.isHearDisguisesEnabled();
|
|
|
|
}
|
|
|
|
|
|
|
|
public static boolean isUnusedDisguisesRemoved() {
|
|
|
|
return removeUnseenDisguises;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Is the velocity packets sent
|
|
|
|
*/
|
|
|
|
public static boolean isVelocitySent() {
|
|
|
|
return sendVelocity;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The default value if a player views his own disguise
|
|
|
|
*/
|
|
|
|
public static boolean isViewDisguises() {
|
|
|
|
return PacketsManager.isViewDisguisesListenerEnabled();
|
|
|
|
}
|
|
|
|
|
2014-05-22 22:14:46 +02:00
|
|
|
public static boolean isWitherSkullPacketsEnabled() {
|
|
|
|
return witherSkullEnabled;
|
|
|
|
}
|
|
|
|
|
2014-01-20 18:01:49 +01:00
|
|
|
public static void setAddEntityAnimations(boolean isEntityAnimationsAdded) {
|
|
|
|
entityAnimationsAdded = isEntityAnimationsAdded;
|
|
|
|
}
|
|
|
|
|
2014-05-22 22:14:46 +02:00
|
|
|
public static void setAnimationPacketsEnabled(boolean enabled) {
|
|
|
|
if (enabled != isAnimationPacketsEnabled()) {
|
|
|
|
animationEnabled = enabled;
|
|
|
|
PacketsManager.setupMainPacketsListener();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public static void setBedPacketsEnabled(boolean enabled) {
|
|
|
|
if (enabled != isBedPacketsEnabled()) {
|
|
|
|
bedEnabled = enabled;
|
|
|
|
PacketsManager.setupMainPacketsListener();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public static void setCollectPacketsEnabled(boolean enabled) {
|
|
|
|
if (enabled != isCollectPacketsEnabled()) {
|
|
|
|
collectEnabled = enabled;
|
|
|
|
PacketsManager.setupMainPacketsListener();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-01-21 02:05:32 +01:00
|
|
|
public static void setDisguiseBlownMessage(String newMessage) {
|
|
|
|
disguiseBlownMessage = newMessage;
|
|
|
|
}
|
|
|
|
|
2014-01-20 18:01:49 +01:00
|
|
|
public static void setDisguiseBlownOnAttack(boolean blowDisguise) {
|
|
|
|
blowDisguisesOnAttack = blowDisguise;
|
|
|
|
}
|
|
|
|
|
2014-05-22 22:14:46 +02:00
|
|
|
public static void setEnquipmentPacketsEnabled(boolean enabled) {
|
|
|
|
if (enabled != isEnquipmentPacketsEnabled()) {
|
|
|
|
enquipmentEnabled = enabled;
|
|
|
|
PacketsManager.setupMainPacketsListener();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public static void setEntityStatusPacketsEnabled(boolean enabled) {
|
|
|
|
if (enabled != isEntityStatusPacketsEnabled()) {
|
|
|
|
entityStatusEnabled = enabled;
|
|
|
|
PacketsManager.setupMainPacketsListener();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-01-20 18:01:49 +01:00
|
|
|
/**
|
|
|
|
* Can players hear their own disguises
|
|
|
|
*/
|
|
|
|
public static void setHearSelfDisguise(boolean replaceSound) {
|
|
|
|
if (hearSelfDisguise != replaceSound) {
|
|
|
|
hearSelfDisguise = replaceSound;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Set the plugin to hide self disguises armor from theirselves
|
|
|
|
*/
|
|
|
|
public static void setHideArmorFromSelf(boolean hideArmor) {
|
|
|
|
if (hidingArmor != hideArmor) {
|
|
|
|
hidingArmor = hideArmor;
|
|
|
|
PacketsManager.setInventoryListenerEnabled(isHidingHeldItemFromSelf() || isHidingArmorFromSelf());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Does the plugin appear to remove the item they are holding, to prevent a floating sword when they are viewing self disguise
|
|
|
|
*/
|
|
|
|
public static void setHideHeldItemFromSelf(boolean hideHelditem) {
|
|
|
|
if (hidingHeldItem != hideHelditem) {
|
|
|
|
hidingHeldItem = hideHelditem;
|
|
|
|
PacketsManager.setInventoryListenerEnabled(isHidingHeldItemFromSelf() || isHidingArmorFromSelf());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-04-02 15:39:52 +02:00
|
|
|
public static void setKeepDisguiseOnEntityDespawn(boolean keepDisguise) {
|
|
|
|
keepDisguiseEntityDespawn = keepDisguise;
|
|
|
|
}
|
|
|
|
|
|
|
|
public static void setKeepDisguiseOnPlayerDeath(boolean keepDisguise) {
|
|
|
|
keepDisguisePlayerDeath = keepDisguise;
|
|
|
|
}
|
|
|
|
|
|
|
|
public static void setKeepDisguiseOnPlayerLogout(boolean keepDisguise) {
|
|
|
|
keepDisguisePlayerLogout = keepDisguise;
|
|
|
|
}
|
|
|
|
|
2014-05-23 04:52:21 +02:00
|
|
|
public static void setMaxHealthDeterminedByDisguisedEntity(boolean isDetermined) {
|
|
|
|
maxHealthIsDisguisedEntity = isDetermined;
|
|
|
|
}
|
|
|
|
|
2014-05-23 03:58:21 +02:00
|
|
|
public static void setMetadataPacketsEnabled(boolean enabled) {
|
|
|
|
sendsEntityMetadata = enabled;
|
|
|
|
}
|
|
|
|
|
2014-05-22 22:14:46 +02:00
|
|
|
public static void setMiscDisguisesForLivingEnabled(boolean enabled) {
|
|
|
|
if (enabled != isMiscDisguisesForLivingEnabled()) {
|
|
|
|
miscDisguisesForLivingEnabled = enabled;
|
|
|
|
PacketsManager.setupMainPacketsListener();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-01-20 18:01:49 +01:00
|
|
|
public static void setModifyBoundingBox(boolean modifyBounding) {
|
|
|
|
modifyBoundingBox = modifyBounding;
|
|
|
|
}
|
|
|
|
|
|
|
|
public static void setMonstersIgnoreDisguises(boolean ignore) {
|
|
|
|
targetDisguises = ignore;
|
|
|
|
}
|
|
|
|
|
2014-05-22 22:14:46 +02:00
|
|
|
public static void setMovementPacketsEnabled(boolean enabled) {
|
|
|
|
if (enabled != isMovementPacketsEnabled()) {
|
|
|
|
movementEnabled = enabled;
|
|
|
|
PacketsManager.setupMainPacketsListener();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-01-20 18:01:49 +01:00
|
|
|
public static void setNameAboveHeadAlwaysVisible(boolean alwaysVisible) {
|
|
|
|
showNameAboveHeadAlwaysVisible = alwaysVisible;
|
|
|
|
}
|
|
|
|
|
|
|
|
public static void setNameOfPlayerShownAboveDisguise(boolean showNames) {
|
|
|
|
showNameAboveHead = showNames;
|
|
|
|
}
|
|
|
|
|
2014-05-22 22:14:46 +02:00
|
|
|
public static void setRidingPacketsEnabled(boolean enabled) {
|
|
|
|
if (enabled != isRidingPacketsEnabled()) {
|
|
|
|
ridingEnabled = enabled;
|
|
|
|
PacketsManager.setupMainPacketsListener();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-01-20 18:01:49 +01:00
|
|
|
/**
|
|
|
|
* Set if the disguises play sounds when hurt
|
|
|
|
*/
|
|
|
|
public static void setSoundsEnabled(boolean isSoundsEnabled) {
|
|
|
|
PacketsManager.setHearDisguisesListener(isSoundsEnabled);
|
|
|
|
}
|
|
|
|
|
|
|
|
public static void setUnusedDisguisesRemoved(boolean remove) {
|
|
|
|
removeUnseenDisguises = remove;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Disable velocity packets being sent for w/e reason. Maybe you want every ounce of performance you can get?
|
|
|
|
*/
|
|
|
|
public static void setVelocitySent(boolean sendVelocityPackets) {
|
|
|
|
sendVelocity = sendVelocityPackets;
|
|
|
|
}
|
|
|
|
|
|
|
|
public static void setViewDisguises(boolean seeOwnDisguise) {
|
|
|
|
PacketsManager.setViewDisguisesListener(seeOwnDisguise);
|
|
|
|
}
|
|
|
|
|
2014-05-22 22:14:46 +02:00
|
|
|
public static void setWitherSkullPacketsEnabled(boolean enabled) {
|
|
|
|
witherSkullEnabled = enabled;
|
|
|
|
}
|
|
|
|
|
2014-01-20 18:01:49 +01:00
|
|
|
private DisguiseConfig() {
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|