mirror of
https://github.com/OpenFusionProject/OpenFusion.git
synced 2024-11-05 06:50:04 +00:00
54 lines
2.0 KiB
C++
54 lines
2.0 KiB
C++
#include <iostream>
|
|
#include "settings.hpp"
|
|
#include "contrib/INIReader.hpp"
|
|
|
|
// defaults :)
|
|
int settings::VERBOSITY = 1;
|
|
|
|
int settings::LOGINPORT = 8001;
|
|
bool settings::LOGINRANDCHARACTERS = false;
|
|
|
|
int settings::SHARDPORT = 8002;
|
|
std::string settings::SHARDSERVERIP = "127.0.0.1";
|
|
int settings::PLAYERDISTANCE = 20000;
|
|
int settings::NPCDISTANCE = 16000;
|
|
|
|
// default spawn point is city hall
|
|
int settings::SPAWN_X = 179213;
|
|
int settings::SPAWN_Y = 268451;
|
|
int settings::SPAWN_Z = -4210;
|
|
std::string settings::GMPASS = "pass";
|
|
std::string settings::NPCJSON = "NPCs.json";
|
|
std::string settings::WARPJSON = "warps.json";
|
|
std::string settings::MOTDSTRING = "Welcome to OpenFusion!";
|
|
bool settings::GM = false;
|
|
|
|
void settings::init() {
|
|
INIReader reader("config.ini");
|
|
|
|
if (reader.ParseError() != 0) {
|
|
if (reader.ParseError() == -1)
|
|
std::cerr << "[WARN] Settings: missing config.ini file!" << std::endl;
|
|
else
|
|
std::cerr << "[WARN] Settings: invalid config.ini syntax at line " << reader.ParseError() << std::endl;
|
|
|
|
return;
|
|
}
|
|
|
|
VERBOSITY = reader.GetInteger("", "verbosity", VERBOSITY);
|
|
LOGINPORT = reader.GetInteger("login", "port", LOGINPORT);
|
|
LOGINRANDCHARACTERS = reader.GetBoolean("login", "randomcharacters", LOGINRANDCHARACTERS);
|
|
SHARDPORT = reader.GetInteger("shard", "port", SHARDPORT);
|
|
SHARDSERVERIP = reader.Get("shard", "ip", "127.0.0.1");
|
|
PLAYERDISTANCE = reader.GetInteger("shard", "playerdistance", PLAYERDISTANCE);
|
|
NPCDISTANCE = reader.GetInteger("shard", "npcdistance", NPCDISTANCE);
|
|
SPAWN_X = reader.GetInteger("shard", "spawnx", SPAWN_X);
|
|
SPAWN_Y = reader.GetInteger("shard", "spawny", SPAWN_Y);
|
|
SPAWN_Z = reader.GetInteger("shard", "spawnz", SPAWN_Z);
|
|
GMPASS = reader.Get("login", "pass", GMPASS);
|
|
NPCJSON = reader.Get("shard", "npcdata", NPCJSON);
|
|
WARPJSON = reader.Get("shard", "warpdata", WARPJSON);
|
|
MOTDSTRING = reader.Get("shard", "motd", MOTDSTRING);
|
|
GM = reader.GetBoolean("shard", "gm", GM);
|
|
}
|