MoparClassic/GameServer/src/org/moparscape/msc/config/Config.java

80 lines
2.0 KiB
Java
Raw Normal View History

package org.moparscape.msc.config;
/**
* A class to handle loading configuration from XML
*/
import java.io.File;
import java.io.FileInputStream;
import java.io.IOException;
import java.util.Properties;
public class Config {
/**
* User info for the database
*/
public static String MYSQL_HOST;
public static String MYSQL_DB;
public static String MYSQL_USER;
public static String MYSQL_PASS;
public static String SERVER_IP, SERVER_NAME, RSCD_HOME, CONF_DIR, SERVER_LOCATION, LS_IP;
public static int SERVER_PORT, SERVER_VERSION, MAX_PLAYERS, LS_PORT, SERVER_NUM;
public static long START_TIME;
static {
loadEnv();
}
/**
* Called to load config settings from the given file
*
* @param file
* the xml file to load settings from
* @throws IOException
* if an i/o error occurs
*/
public static void initConfig(String file) throws IOException {
START_TIME = System.currentTimeMillis();
Properties props = new Properties();
props.loadFromXML(new FileInputStream(file));
SERVER_VERSION = Integer.parseInt(props.getProperty("version"));
SERVER_NAME = props.getProperty("name");
SERVER_IP = props.getProperty("ip");
SERVER_PORT = Integer.parseInt(props.getProperty("port"));
SERVER_LOCATION = props.getProperty("location");
MYSQL_USER = props.getProperty("mysqluser");
MYSQL_PASS = props.getProperty("mysqlpass");
MYSQL_HOST = props.getProperty("mysqlhost");
MYSQL_DB = props.getProperty("mysqldb");
MAX_PLAYERS = Integer.parseInt(props.getProperty("maxplayers"));
LS_IP = props.getProperty("lsip");
LS_PORT = Integer.parseInt(props.getProperty("lsport"));
SERVER_NUM = Integer.parseInt(props.getProperty("servernum"));
props.clear();
}
/**
* Called to load RSCD_HOME and CONF_DIR Used to be situated in
* PersistenceManager
*/
private static void loadEnv() {
String home = System.getenv("RSCD_HOME");
if (home == null) { // the env var hasnt been set, fall back to .
home = ".";
}
CONF_DIR = home + File.separator + "conf" + File.separator + "server";
RSCD_HOME = home;
}
}