mirror of
https://github.com/OpenFusionProject/OpenFusion.git
synced 2024-11-16 19:20:05 +00:00
215da0130d
Was getting frustrated by the inconsistency in our include statements, which were causing me problems. As a result, I went through and manually re-organized every include statement in non-core files. I'm just gonna copy my rant from Discord: FOR HEADER FILES (.hpp): - everything you use IN THE HEADER must be EXPLICITLY INCLUDED with the exception of things that fall under Core.hpp - you may NOT include ANYTHING ELSE FOR SOURCE FILES (.cpp): - you can #include whatever you want as long as the partner header is included first - anything that gets included by another include is fair game - redundant includes are ok because they'll be harmless AS LONG AS our header files stay lean. the point of this is NOT to optimize the number of includes used all around or make things more efficient necessarily. it's to improve readability & coherence and make it easier to avoid cyclical issues
118 lines
4.6 KiB
C++
118 lines
4.6 KiB
C++
|
|
#include "settings.hpp"
|
|
|
|
#include "core/CNStructs.hpp" // so we get the ACADEMY definition
|
|
#include "INIReader.hpp"
|
|
|
|
#include <iostream>
|
|
|
|
// defaults :)
|
|
int settings::VERBOSITY = 1;
|
|
bool settings::SANDBOX = true;
|
|
|
|
int settings::LOGINPORT = 23000;
|
|
bool settings::APPROVEALLNAMES = true;
|
|
bool settings::AUTOCREATEACCOUNTS = true;
|
|
int settings::DBSAVEINTERVAL = 240;
|
|
|
|
int settings::SHARDPORT = 23001;
|
|
std::string settings::SHARDSERVERIP = "127.0.0.1";
|
|
bool settings::LOCALHOSTWORKAROUND = true;
|
|
time_t settings::TIMEOUT = 60000;
|
|
int settings::VIEWDISTANCE = 25600;
|
|
bool settings::SIMULATEMOBS = true;
|
|
bool settings::ANTICHEAT = true;
|
|
|
|
// default spawn point
|
|
#ifndef ACADEMY
|
|
// Sector V (The Future)
|
|
int settings::SPAWN_X = 632032;
|
|
int settings::SPAWN_Y = 187177;
|
|
int settings::SPAWN_Z = -5500;
|
|
#else
|
|
// Null Void (Training Area)
|
|
int settings::SPAWN_X = 19835;
|
|
int settings::SPAWN_Y = 108682;
|
|
int settings::SPAWN_Z = 8450;
|
|
#endif
|
|
int settings::SPAWN_ANGLE = 130;
|
|
|
|
std::string settings::DBPATH = "database.db";
|
|
std::string settings::TDATADIR = "tdata/";
|
|
std::string settings::PATCHDIR = "tdata/patch/";
|
|
|
|
std::string settings::NPCJSON = "NPCs.json";
|
|
std::string settings::MOBJSON = "mobs.json";
|
|
std::string settings::EGGSJSON = "eggs.json";
|
|
std::string settings::GRUNTWORKJSON = "gruntwork.json";
|
|
std::string settings::MOTDSTRING = "Welcome to OpenFusion!";
|
|
std::string settings::DROPSJSON = "drops.json";
|
|
std::string settings::PATHJSON = "paths.json";
|
|
#ifdef ACADEMY
|
|
std::string settings::XDTJSON = "xdt1013.json";
|
|
std::string settings::ENABLEDPATCHES = "1013";
|
|
#else
|
|
std::string settings::XDTJSON = "xdt.json";
|
|
std::string settings::ENABLEDPATCHES = "";
|
|
#endif // ACADEMY
|
|
|
|
int settings::ACCLEVEL = 1;
|
|
bool settings::DISABLEFIRSTUSEFLAG = true;
|
|
|
|
// monitor settings
|
|
bool settings::MONITORENABLED = false;
|
|
int settings::MONITORPORT = 8003;
|
|
int settings::MONITORINTERVAL = 5000;
|
|
|
|
// event mode settings
|
|
int settings::EVENTMODE = 0;
|
|
|
|
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);
|
|
SANDBOX = reader.GetBoolean("", "sandbox", SANDBOX);
|
|
LOGINPORT = reader.GetInteger("login", "port", LOGINPORT);
|
|
APPROVEALLNAMES = reader.GetBoolean("login", "acceptallcustomnames", APPROVEALLNAMES);
|
|
AUTOCREATEACCOUNTS = reader.GetBoolean("login", "autocreateaccounts", AUTOCREATEACCOUNTS);
|
|
DBSAVEINTERVAL = reader.GetInteger("login", "dbsaveinterval", DBSAVEINTERVAL);
|
|
SHARDPORT = reader.GetInteger("shard", "port", SHARDPORT);
|
|
SHARDSERVERIP = reader.Get("shard", "ip", SHARDSERVERIP);
|
|
LOCALHOSTWORKAROUND = reader.GetBoolean("shard", "localhostworkaround", LOCALHOSTWORKAROUND);
|
|
TIMEOUT = reader.GetInteger("shard", "timeout", TIMEOUT);
|
|
VIEWDISTANCE = reader.GetInteger("shard", "viewdistance", VIEWDISTANCE);
|
|
SIMULATEMOBS = reader.GetBoolean("shard", "simulatemobs", SIMULATEMOBS);
|
|
SPAWN_X = reader.GetInteger("shard", "spawnx", SPAWN_X);
|
|
SPAWN_Y = reader.GetInteger("shard", "spawny", SPAWN_Y);
|
|
SPAWN_Z = reader.GetInteger("shard", "spawnz", SPAWN_Z);
|
|
SPAWN_ANGLE = reader.GetInteger("shard", "spawnangle", SPAWN_ANGLE);
|
|
NPCJSON = reader.Get("shard", "npcdata", NPCJSON);
|
|
XDTJSON = reader.Get("shard", "xdtdata", XDTJSON);
|
|
MOBJSON = reader.Get("shard", "mobdata", MOBJSON);
|
|
DROPSJSON = reader.Get("shard", "dropdata", DROPSJSON);
|
|
EGGSJSON = reader.Get("shard", "eggdata", EGGSJSON);
|
|
PATHJSON = reader.Get("shard", "pathdata", PATHJSON);
|
|
GRUNTWORKJSON = reader.Get("shard", "gruntwork", GRUNTWORKJSON);
|
|
MOTDSTRING = reader.Get("shard", "motd", MOTDSTRING);
|
|
DBPATH = reader.Get("shard", "dbpath", DBPATH);
|
|
TDATADIR = reader.Get("shard", "tdatadir", TDATADIR);
|
|
PATCHDIR = reader.Get("shard", "patchdir", PATCHDIR);
|
|
ENABLEDPATCHES = reader.Get("shard", "enabledpatches", ENABLEDPATCHES);
|
|
ACCLEVEL = reader.GetInteger("shard", "accountlevel", ACCLEVEL);
|
|
EVENTMODE = reader.GetInteger("shard", "eventmode", EVENTMODE);
|
|
DISABLEFIRSTUSEFLAG = reader.GetBoolean("shard", "disablefirstuseflag", DISABLEFIRSTUSEFLAG);
|
|
ANTICHEAT = reader.GetBoolean("shard", "anticheat", ANTICHEAT);
|
|
MONITORENABLED = reader.GetBoolean("monitor", "enabled", MONITORENABLED);
|
|
MONITORPORT = reader.GetInteger("monitor", "port", MONITORPORT);
|
|
MONITORINTERVAL = reader.GetInteger("monitor", "interval", MONITORINTERVAL);
|
|
}
|