2011-04-08 15:51:07 +02:00
|
|
|
package org.mcteam.factions;
|
2011-02-06 13:36:11 +01:00
|
|
|
|
2011-03-18 17:33:23 +01:00
|
|
|
import java.io.File;
|
2011-02-06 13:36:11 +01:00
|
|
|
import java.util.*;
|
|
|
|
import org.bukkit.*;
|
2011-03-23 17:39:56 +01:00
|
|
|
import org.bukkit.entity.CreatureType;
|
2011-04-08 15:51:07 +02:00
|
|
|
import org.mcteam.factions.util.DiscUtil;
|
2011-02-06 13:36:11 +01:00
|
|
|
|
2011-03-18 17:33:23 +01:00
|
|
|
|
2011-02-06 13:36:11 +01:00
|
|
|
public class Conf {
|
2011-03-18 17:33:23 +01:00
|
|
|
public static transient File file = new File(Factions.instance.getDataFolder(), "conf.json");
|
|
|
|
|
2011-02-12 18:05:05 +01:00
|
|
|
// Colors
|
|
|
|
public static ChatColor colorMember = ChatColor.GREEN;
|
|
|
|
public static ChatColor colorAlly = ChatColor.LIGHT_PURPLE;
|
|
|
|
public static ChatColor colorNeutral = ChatColor.WHITE;
|
|
|
|
public static ChatColor colorEnemy = ChatColor.RED;
|
|
|
|
|
|
|
|
public static ChatColor colorSystem = ChatColor.YELLOW;
|
|
|
|
public static ChatColor colorChrome = ChatColor.GOLD;
|
|
|
|
public static ChatColor colorCommand = ChatColor.AQUA;
|
|
|
|
public static ChatColor colorParameter = ChatColor.DARK_AQUA;
|
2011-02-06 13:36:11 +01:00
|
|
|
|
2011-02-12 18:05:05 +01:00
|
|
|
// Power
|
|
|
|
public static double powerPlayerMax = 10;
|
|
|
|
public static double powerPlayerMin = -10;
|
|
|
|
public static double powerPerMinute = 0.2; // Default health rate... it takes 5 min to heal one power
|
2011-06-01 13:54:00 +02:00
|
|
|
public static double powerPerDeath = 4; // A death makes you lose 4 power
|
|
|
|
public static boolean powerRegenOffline = false; // does player power regenerate even while they're offline?
|
2011-02-06 13:36:11 +01:00
|
|
|
|
2011-02-12 18:05:05 +01:00
|
|
|
public static String prefixAdmin = "**";
|
|
|
|
public static String prefixMod = "*";
|
2011-02-06 13:36:11 +01:00
|
|
|
|
2011-02-12 18:05:05 +01:00
|
|
|
public static int factionTagLengthMin = 3;
|
2011-02-13 16:37:21 +01:00
|
|
|
public static int factionTagLengthMax = 10;
|
|
|
|
public static boolean factionTagForceUpperCase = false;
|
2011-02-06 13:36:11 +01:00
|
|
|
|
2011-05-29 23:28:29 +02:00
|
|
|
public static boolean newFactionsDefaultOpen = true;
|
|
|
|
|
|
|
|
public static boolean showMapFactionKey = true;
|
|
|
|
|
2011-05-29 23:41:50 +02:00
|
|
|
// Disallow joining/leaving/kicking while power is negative
|
|
|
|
public static boolean CanLeaveWithNegativePower = true;
|
|
|
|
|
2011-02-12 18:05:05 +01:00
|
|
|
// Configuration on the Faction tag in chat messages.
|
2011-06-01 13:39:25 +02:00
|
|
|
public static boolean preloadChatPlugins = true;
|
2011-02-12 18:05:05 +01:00
|
|
|
public static boolean chatTagEnabled = true;
|
|
|
|
public static boolean chatTagRelationColored = true;
|
2011-06-03 20:06:41 +02:00
|
|
|
public static String chatTagReplaceString = "{FACTION}";
|
|
|
|
public static String chatTagInsertAfterString = "";
|
|
|
|
public static String chatTagInsertBeforeString = "";
|
2011-02-12 18:05:05 +01:00
|
|
|
public static int chatTagInsertIndex = 1;
|
2011-06-03 20:06:41 +02:00
|
|
|
public static boolean chatTagPadBefore = false;
|
|
|
|
public static boolean chatTagPadAfter = true;
|
|
|
|
public static String chatTagFormat = "%s"+ChatColor.WHITE;
|
2011-02-12 18:52:45 +01:00
|
|
|
public static String factionChatFormat = "%s"+ChatColor.WHITE+" %s";
|
2011-02-12 18:05:05 +01:00
|
|
|
|
2011-03-23 17:39:56 +01:00
|
|
|
public static boolean allowNoSlashCommand = true;
|
|
|
|
|
|
|
|
public static double autoLeaveAfterDaysOfInactivity = 14;
|
|
|
|
|
|
|
|
public static boolean homesEnabled = true;
|
|
|
|
public static boolean homesTeleportToOnDeath = true;
|
2011-05-29 23:28:29 +02:00
|
|
|
public static double homesTeleportAllowedEnemyDistance = 32;
|
2011-02-12 18:05:05 +01:00
|
|
|
|
2011-06-02 01:32:09 +02:00
|
|
|
public static double territoryShieldFactor = 0.3;
|
2011-06-02 01:13:56 +02:00
|
|
|
public static boolean territoryDenyBuild = true;
|
|
|
|
public static boolean territoryDenyUseage = true;
|
2011-03-06 21:13:48 +01:00
|
|
|
public static boolean territoryBlockCreepers = false;
|
2011-03-18 00:02:29 +01:00
|
|
|
public static boolean territoryBlockFireballs = false;
|
New boolean config options territoryBlockTNT (default false), safeZoneDenyBuild (default true), safeZoneDenyUseage (default true), safeZoneBlockTNT (default true). territoryBlockTNT prevents TNT explosions inside faction territory, which defaults to false (same as before). It prevents TNT cannons from being a viable tactic, and I think for most people it would be an undesirable option. safeZoneBlockTNT prevents TNT explosions inside safe zone areas, which defaults to true (new behavior). I think most server operators would prefer safe zones to be safe from TNT, from TNT cannons or otherwise. safeZoneDenyBuild prevents players from building inside safe zone areas, which defaults to true (same as before). This option is added for server admins who, for whatever reason, want to let their players build and break inside safe zone areas. safeZoneDenyUseage prevents players from using items in the territoryDenyUseageMaterials list, which defaults to true (new behavior). This will (with the default list) prevent players from dumping/using buckets inside safe zone areas.
2011-04-04 13:31:48 +02:00
|
|
|
public static boolean territoryBlockTNT = false;
|
|
|
|
|
|
|
|
public static boolean safeZoneDenyBuild = true;
|
|
|
|
public static boolean safeZoneDenyUseage = true;
|
|
|
|
public static boolean safeZoneBlockTNT = true;
|
2011-03-18 00:02:29 +01:00
|
|
|
|
2011-06-01 13:39:25 +02:00
|
|
|
public static boolean warZoneDenyBuild = true;
|
|
|
|
public static boolean warZoneDenyUseage = true;
|
2011-05-29 23:28:29 +02:00
|
|
|
public static boolean warZoneBlockCreepers = false;
|
|
|
|
public static boolean warZoneBlockFireballs = false;
|
|
|
|
public static boolean warZoneBlockTNT = true;
|
|
|
|
public static boolean warZonePowerLoss = true;
|
|
|
|
|
2011-06-02 01:32:09 +02:00
|
|
|
public static boolean wildernessDenyBuild = false;
|
|
|
|
public static boolean wildernessDenyUseage = false;
|
|
|
|
public static boolean wildernessBlockCreepers = false;
|
|
|
|
public static boolean wildernessBlockFireballs = false;
|
|
|
|
public static boolean wildernessBlockTNT = false;
|
|
|
|
public static boolean wildernessPowerLoss = true;
|
|
|
|
|
2011-03-23 12:00:38 +01:00
|
|
|
public static Set<Material> territoryProtectedMaterials = new HashSet<Material>();
|
|
|
|
public static Set<Material> territoryDenyUseageMaterials = new HashSet<Material>();
|
2011-03-22 20:36:33 +01:00
|
|
|
|
2011-03-23 17:39:56 +01:00
|
|
|
public static transient Set<CreatureType> safeZoneNerfedCreatureTypes = new HashSet<CreatureType>();
|
|
|
|
|
2011-05-29 23:28:29 +02:00
|
|
|
public static Set<String> worldsNoClaiming = new HashSet<String>();
|
|
|
|
public static Set<String> worldsNoPowerLoss = new HashSet<String>();
|
|
|
|
|
2011-03-23 17:39:56 +01:00
|
|
|
public static transient int mapHeight = 8;
|
2011-04-28 22:45:43 +02:00
|
|
|
public static transient int mapWidth = 39;
|
2011-05-29 23:28:29 +02:00
|
|
|
public static transient char[] mapKeyChrs = "\\/#?$%=&^ABCDEFGHJKLMNOPQRSTUVWXYZ1234567890abcdeghjmnopqrsuvwxyz".toCharArray();
|
2011-02-06 13:36:11 +01:00
|
|
|
|
|
|
|
static {
|
2011-02-07 21:42:14 +01:00
|
|
|
territoryProtectedMaterials.add(Material.WOODEN_DOOR);
|
2011-06-02 01:13:56 +02:00
|
|
|
territoryProtectedMaterials.add(Material.TRAP_DOOR);
|
2011-02-07 21:42:14 +01:00
|
|
|
territoryProtectedMaterials.add(Material.DISPENSER);
|
|
|
|
territoryProtectedMaterials.add(Material.CHEST);
|
|
|
|
territoryProtectedMaterials.add(Material.FURNACE);
|
2011-03-30 06:37:32 +02:00
|
|
|
|
2011-03-23 12:00:38 +01:00
|
|
|
territoryDenyUseageMaterials.add(Material.FLINT_AND_STEEL);
|
|
|
|
territoryDenyUseageMaterials.add(Material.BUCKET);
|
|
|
|
territoryDenyUseageMaterials.add(Material.WATER_BUCKET);
|
2011-03-30 06:37:32 +02:00
|
|
|
territoryDenyUseageMaterials.add(Material.LAVA_BUCKET);
|
|
|
|
|
2011-03-23 17:39:56 +01:00
|
|
|
safeZoneNerfedCreatureTypes.add(CreatureType.CREEPER);
|
|
|
|
safeZoneNerfedCreatureTypes.add(CreatureType.GHAST);
|
|
|
|
safeZoneNerfedCreatureTypes.add(CreatureType.PIG_ZOMBIE);
|
|
|
|
safeZoneNerfedCreatureTypes.add(CreatureType.SKELETON);
|
|
|
|
safeZoneNerfedCreatureTypes.add(CreatureType.SPIDER);
|
|
|
|
safeZoneNerfedCreatureTypes.add(CreatureType.SLIME);
|
|
|
|
safeZoneNerfedCreatureTypes.add(CreatureType.ZOMBIE);
|
2011-02-06 13:36:11 +01:00
|
|
|
}
|
2011-04-06 12:04:57 +02:00
|
|
|
|
|
|
|
// track players with admin access who have enabled "admin bypass" mode, and should therefore be able to build anywhere
|
|
|
|
// not worth saving between server restarts, I think
|
|
|
|
public static transient Set<String> adminBypassPlayers = Collections.synchronizedSet(new HashSet<String>());
|
2011-02-06 13:36:11 +01:00
|
|
|
|
2011-03-18 17:33:23 +01:00
|
|
|
// -------------------------------------------- //
|
2011-02-06 13:36:11 +01:00
|
|
|
// Persistance
|
2011-03-18 17:33:23 +01:00
|
|
|
// -------------------------------------------- //
|
2011-02-06 13:36:11 +01:00
|
|
|
|
|
|
|
public static boolean save() {
|
2011-03-22 22:31:04 +01:00
|
|
|
//Factions.log("Saving config to disk.");
|
|
|
|
|
2011-03-18 17:33:23 +01:00
|
|
|
try {
|
|
|
|
DiscUtil.write(file, Factions.gson.toJson(new Conf()));
|
2011-04-06 11:08:08 +02:00
|
|
|
} catch (Exception e) {
|
2011-03-18 17:33:23 +01:00
|
|
|
e.printStackTrace();
|
|
|
|
Factions.log("Failed to save the config to disk.");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
public static boolean load() {
|
2011-03-23 12:00:38 +01:00
|
|
|
Factions.log("Loading conf from disk");
|
|
|
|
|
2011-03-18 17:33:23 +01:00
|
|
|
if ( ! file.exists()) {
|
|
|
|
Factions.log("No conf to load from disk. Creating new file.");
|
|
|
|
save();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
try {
|
|
|
|
Factions.gson.fromJson(DiscUtil.read(file), Conf.class);
|
2011-04-06 11:08:08 +02:00
|
|
|
} catch (Exception e) {
|
2011-03-18 17:33:23 +01:00
|
|
|
e.printStackTrace();
|
|
|
|
Factions.log("Failed to load the config from disk.");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
2011-02-06 13:36:11 +01:00
|
|
|
}
|
|
|
|
}
|
2011-03-23 12:00:38 +01:00
|
|
|
|