2010-09-29 18:38:54 +02:00
|
|
|
import java.io.*;
|
|
|
|
import java.util.*;
|
|
|
|
import java.util.logging.Level;
|
|
|
|
import java.util.logging.Logger;
|
|
|
|
import net.minecraft.server.MinecraftServer;
|
2010-10-09 03:20:41 +02:00
|
|
|
|
2010-09-29 18:38:54 +02:00
|
|
|
public class settings {
|
|
|
|
private final static Object syncLock = new Object();
|
|
|
|
protected static final Logger log = Logger.getLogger("Minecraft");
|
|
|
|
private static volatile settings instance;
|
|
|
|
static boolean toggle = true;
|
|
|
|
private boolean adminChat = false;
|
|
|
|
private boolean greentext = false;
|
|
|
|
private boolean FFF = false;
|
|
|
|
private boolean quakeColors = false;
|
|
|
|
private boolean cmdFabulous = false;
|
|
|
|
private boolean cmdPromote = false;
|
|
|
|
private boolean cmdDemote = false;
|
|
|
|
private boolean cmdWhoIs = false;
|
2010-10-09 06:15:57 +02:00
|
|
|
private boolean cmdRules = false;
|
|
|
|
private boolean cmdTp = false;
|
|
|
|
private boolean cmdTphere = false;
|
|
|
|
private boolean globalmessages = false;
|
|
|
|
private boolean cmdSay = false;
|
2010-09-29 18:38:54 +02:00
|
|
|
private PropertiesFile properties;
|
|
|
|
String file = "vminecraft.properties";
|
2010-10-09 03:20:41 +02:00
|
|
|
public String rules[] = null;
|
2010-09-29 18:38:54 +02:00
|
|
|
|
2010-10-09 03:20:41 +02:00
|
|
|
public void rules() {
|
|
|
|
try{
|
|
|
|
rules = properties.getString("rules", "Rules@#1: No griefing").split("@");
|
|
|
|
}
|
|
|
|
catch (Exception e) {
|
|
|
|
log.log(Level.SEVERE, "Vminecraft: "+ e.getMessage() );
|
|
|
|
rules = new String[]{"Rules@#1: No griefing"};
|
|
|
|
}
|
|
|
|
}
|
2010-09-29 18:38:54 +02:00
|
|
|
public void loadSettings()
|
2010-10-09 03:20:41 +02:00
|
|
|
//Will create a file if it doesn't exist
|
|
|
|
{
|
|
|
|
if (properties == null) {
|
|
|
|
properties = new PropertiesFile("vminecraft.properties");
|
|
|
|
} else {
|
|
|
|
properties.load();
|
|
|
|
}
|
2010-09-29 18:38:54 +02:00
|
|
|
try{
|
2010-10-09 03:20:41 +02:00
|
|
|
Scanner scanner = new Scanner(new File(file));
|
2010-09-29 18:38:54 +02:00
|
|
|
while (scanner.hasNextLine()) {
|
|
|
|
String line = scanner.nextLine();
|
|
|
|
if( line.startsWith("#") || line.equals(""))
|
|
|
|
{
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
String[] split = line.split("=");
|
|
|
|
if(split[0].equalsIgnoreCase("adminchat"))
|
|
|
|
{
|
|
|
|
if(split[1].equalsIgnoreCase("true"))
|
|
|
|
{
|
|
|
|
adminChat = true;
|
|
|
|
}
|
|
|
|
else adminChat = false;
|
|
|
|
}
|
2010-10-09 06:15:57 +02:00
|
|
|
if(split[0].equalsIgnoreCase("cmdTp"))
|
|
|
|
{
|
|
|
|
if(split[1].equalsIgnoreCase("true"))
|
|
|
|
{
|
|
|
|
cmdTp = true;
|
|
|
|
}
|
|
|
|
else cmdTp = false;
|
|
|
|
}
|
|
|
|
if(split[0].equalsIgnoreCase("cmdTphere"))
|
|
|
|
{
|
|
|
|
if(split[1].equalsIgnoreCase("true"))
|
|
|
|
{
|
|
|
|
cmdTphere = true;
|
|
|
|
}
|
|
|
|
else cmdTphere = false;
|
|
|
|
}
|
|
|
|
if(split[0].equalsIgnoreCase("globalmessages"))
|
|
|
|
{
|
|
|
|
if(split[1].equalsIgnoreCase("true"))
|
|
|
|
{
|
|
|
|
globalmessages = true;
|
|
|
|
}
|
|
|
|
else globalmessages = false;
|
|
|
|
}
|
|
|
|
if(split[0].equalsIgnoreCase("cmdSay"))
|
|
|
|
{
|
|
|
|
if(split[1].equalsIgnoreCase("true"))
|
|
|
|
{
|
|
|
|
cmdSay = true;
|
|
|
|
}
|
|
|
|
else cmdSay = false;
|
|
|
|
}
|
|
|
|
if(split[0].equalsIgnoreCase("cmdRules"))
|
|
|
|
{
|
|
|
|
if(split[1].equalsIgnoreCase("true"))
|
|
|
|
{
|
|
|
|
cmdRules = true;
|
|
|
|
}
|
|
|
|
else cmdRules = false;
|
|
|
|
}
|
2010-09-29 18:38:54 +02:00
|
|
|
if(split[0].equalsIgnoreCase("Greentext"))
|
|
|
|
{
|
|
|
|
if(split[1].equalsIgnoreCase("true"))
|
|
|
|
{
|
|
|
|
greentext = true;
|
|
|
|
}
|
|
|
|
else greentext = false;
|
|
|
|
}
|
|
|
|
if(split[0].equalsIgnoreCase("FFF"))
|
|
|
|
{
|
|
|
|
if(split[1].equalsIgnoreCase("true"))
|
|
|
|
{
|
|
|
|
FFF = true;
|
|
|
|
}
|
|
|
|
else FFF = false;
|
|
|
|
}
|
|
|
|
if(split[0].equalsIgnoreCase("QuakeColors"))
|
|
|
|
{
|
|
|
|
if(split[1].equalsIgnoreCase("true"))
|
|
|
|
{
|
|
|
|
quakeColors = true;
|
|
|
|
}
|
|
|
|
else quakeColors = false;
|
|
|
|
}
|
|
|
|
if(split[0].equalsIgnoreCase("cmdFabulous"))
|
|
|
|
{
|
|
|
|
if(split[1].equalsIgnoreCase("true"))
|
|
|
|
{
|
|
|
|
cmdFabulous = true;
|
|
|
|
}
|
|
|
|
else cmdFabulous = false;
|
|
|
|
}
|
|
|
|
if(split[0].equalsIgnoreCase("cmdPromote"))
|
|
|
|
{
|
|
|
|
if(split[1].equalsIgnoreCase("true"))
|
|
|
|
{
|
|
|
|
cmdPromote = true;
|
|
|
|
}
|
|
|
|
else cmdPromote = false;
|
|
|
|
}
|
|
|
|
if(split[0].equalsIgnoreCase("cmdDemote"))
|
|
|
|
{
|
|
|
|
if(split[1].equalsIgnoreCase("true"))
|
|
|
|
{
|
|
|
|
cmdDemote = true;
|
|
|
|
}
|
|
|
|
else cmdDemote = false;
|
|
|
|
}
|
|
|
|
if(split[0].equalsIgnoreCase("cmdWhoIs"))
|
|
|
|
{
|
|
|
|
if(split[1].equalsIgnoreCase("true"))
|
|
|
|
{
|
|
|
|
cmdWhoIs = true;
|
|
|
|
}
|
|
|
|
else cmdWhoIs = false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
scanner.close();
|
|
|
|
}
|
2010-10-09 03:20:41 +02:00
|
|
|
catch (Exception e) {
|
|
|
|
log.log(Level.SEVERE, "Vminecraft: "+ e.getMessage() );
|
|
|
|
}
|
2010-09-29 18:38:54 +02:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
public boolean adminchat() {return adminChat;}
|
|
|
|
public boolean greentext() {return greentext;}
|
|
|
|
public boolean FFF() {return FFF;}
|
|
|
|
public boolean quakeColors() {return quakeColors;}
|
|
|
|
public boolean cmdFabulous() {return cmdFabulous;}
|
|
|
|
public boolean cmdPromote() {return cmdPromote;}
|
|
|
|
public boolean cmdDemote() {return cmdDemote;}
|
|
|
|
public boolean cmdWhoIs() {return cmdWhoIs;}
|
2010-10-09 06:15:57 +02:00
|
|
|
public boolean cmdTp() {return cmdTp;}
|
|
|
|
public boolean cmdTphere() {return cmdTphere;}
|
|
|
|
public boolean cmdSay() {return cmdSay;}
|
|
|
|
public boolean cmdRules() {return cmdRules;}
|
|
|
|
public boolean globalmessages() {return globalmessages;}
|
2010-09-29 18:38:54 +02:00
|
|
|
|
|
|
|
public static settings getInstance() {
|
|
|
|
if (instance == null) {
|
|
|
|
instance = new settings();
|
|
|
|
}
|
|
|
|
|
|
|
|
return instance;
|
|
|
|
}
|
2010-10-09 03:20:41 +02:00
|
|
|
//Will return the rules
|
|
|
|
public String[] getRules() {
|
|
|
|
return rules;
|
|
|
|
}
|
|
|
|
|
2010-09-29 18:38:54 +02:00
|
|
|
}
|