commit
984de65c7f
@ -68,7 +68,6 @@ class ConfigManager {
|
|||||||
QString name; //!< The name of the server as advertised on the server browser.
|
QString name; //!< The name of the server as advertised on the server browser.
|
||||||
QString description; //!< The description of the server as advertised on the server browser.
|
QString description; //!< The description of the server as advertised on the server browser.
|
||||||
bool advertise_server; //!< The server will only be announced to the master server (and thus appear on the master server list) if this is true.
|
bool advertise_server; //!< The server will only be announced to the master server (and thus appear on the master server list) if this is true.
|
||||||
int zalgo_tolerance; //!< The amount of subscripts zalgo is stripped by.
|
|
||||||
};
|
};
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -217,11 +217,6 @@ class Server : public QObject {
|
|||||||
*/
|
*/
|
||||||
QString modpass;
|
QString modpass;
|
||||||
|
|
||||||
/**
|
|
||||||
* @brief The amount of subscripts zalgo is stripped by.
|
|
||||||
*/
|
|
||||||
int zalgo_tolerance;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @brief The highest value dice can have.
|
* @brief The highest value dice can have.
|
||||||
*/
|
*/
|
||||||
|
@ -144,7 +144,6 @@ bool ConfigManager::loadServerSettings(server_settings* settings)
|
|||||||
bool port_conversion_success;
|
bool port_conversion_success;
|
||||||
bool ws_port_conversion_success;
|
bool ws_port_conversion_success;
|
||||||
bool local_port_conversion_success;
|
bool local_port_conversion_success;
|
||||||
bool zalgo_tolerance_conversion_success;
|
|
||||||
config.beginGroup("Options");
|
config.beginGroup("Options");
|
||||||
settings->ms_ip =
|
settings->ms_ip =
|
||||||
config.value("ms_ip", "master.aceattorneyonline.com").toString();
|
config.value("ms_ip", "master.aceattorneyonline.com").toString();
|
||||||
@ -158,8 +157,6 @@ bool ConfigManager::loadServerSettings(server_settings* settings)
|
|||||||
settings->description =
|
settings->description =
|
||||||
config.value("server_description", "This is my flashy new server")
|
config.value("server_description", "This is my flashy new server")
|
||||||
.toString();
|
.toString();
|
||||||
settings->zalgo_tolerance =
|
|
||||||
config.value("zalgo_tolerance", "3").toInt(&zalgo_tolerance_conversion_success);
|
|
||||||
config.endGroup();
|
config.endGroup();
|
||||||
if (!port_conversion_success || !ws_port_conversion_success ||
|
if (!port_conversion_success || !ws_port_conversion_success ||
|
||||||
!local_port_conversion_success) {
|
!local_port_conversion_success) {
|
||||||
|
@ -780,7 +780,7 @@ AOPacket AOClient::validateIcPacket(AOPacket packet)
|
|||||||
|
|
||||||
QString AOClient::dezalgo(QString p_text)
|
QString AOClient::dezalgo(QString p_text)
|
||||||
{
|
{
|
||||||
QRegExp rxp("([\u0300-\u036f\u1ab0-\u1aff\u1dc0-\u1dff\u20d0-\u20ff\ufe20-\ufe2f\u115f\u1160\u3164]{" + QRegExp::escape(QString::number(server->zalgo_tolerance)) + ",})");
|
QRegularExpression rxp("([̴̵̶̷̸̡̢̧̨̛̖̗̘̙̜̝̞̟̠̣̤̥̦̩̪̫̬̭̮̯̰̱̲̳̹̺̻̼͇͈͉͍͎̀́̂̃̄̅̆̇̈̉̊̋̌̍̎̏̐̑̒̓̔̽̾̿̀́͂̓̈́͆͊͋͌̕̚ͅ͏͓͔͕͖͙͚͐͑͒͗͛ͣͤͥͦͧͨͩͪͫͬͭͮͯ͘͜͟͢͝͞͠͡])");
|
||||||
QString filtered = p_text.replace(rxp, "");
|
QString filtered = p_text.replace(rxp, "");
|
||||||
return filtered;
|
return filtered;
|
||||||
}
|
}
|
||||||
|
@ -267,10 +267,6 @@ void Server::loadServerConfig()
|
|||||||
MOTD = config.value("motd","MOTD is not set.").toString();
|
MOTD = config.value("motd","MOTD is not set.").toString();
|
||||||
auth_type = config.value("auth","simple").toString();
|
auth_type = config.value("auth","simple").toString();
|
||||||
modpass = config.value("modpass","").toString();
|
modpass = config.value("modpass","").toString();
|
||||||
bool zalgo_tolerance_conversion_success;
|
|
||||||
zalgo_tolerance = config.value("zalgo_tolerance", "3").toInt(&zalgo_tolerance_conversion_success);
|
|
||||||
if (!zalgo_tolerance_conversion_success)
|
|
||||||
zalgo_tolerance = 3;
|
|
||||||
bool maximum_statements_conversion_success;
|
bool maximum_statements_conversion_success;
|
||||||
maximum_statements = config.value("maximum_statements", "10").toInt(&maximum_statements_conversion_success);
|
maximum_statements = config.value("maximum_statements", "10").toInt(&maximum_statements_conversion_success);
|
||||||
if (!maximum_statements_conversion_success)
|
if (!maximum_statements_conversion_success)
|
||||||
|
Loading…
Reference in New Issue
Block a user