Merge branch 'master' into notecards

This commit is contained in:
in1tiate 2021-04-04 02:04:42 -05:00 committed by GitHub
commit dfcc68817a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
9 changed files with 385 additions and 41 deletions

View File

@ -0,0 +1,10 @@
:3
\o/
Be safe!
Have fun!
Be careful!
Have a nice day!
Be responsible!
Be good!
I believe in you!

View File

@ -0,0 +1,11 @@
>:(
;w;
I should have you held in contempt.
You should be ashamed of yourself.
Tsk, tsk.
What did you do this time?
You're better than this.
*sigh*
Didn't anyone ever teach you manners?
Really?
Shameful.

View File

@ -123,6 +123,13 @@ class AOClient : public QObject {
*/ */
QString current_char; QString current_char;
/**
* @brief The internal name of the character the client is iniswapped to.
*
* @note This will be the same as current_char if the client is not iniswapped.
*/
QString current_iniswap;
/** /**
* @brief If true, the client is a logged-in moderator. * @brief If true, the client is a logged-in moderator.
*/ */
@ -154,6 +161,21 @@ class AOClient : public QObject {
* @brief If true, the client may not use in-character chat. * @brief If true, the client may not use in-character chat.
*/ */
bool is_muted = false; bool is_muted = false;
/**
* @brief If true, the client may not use out-of-character chat.
*/
bool is_ooc_muted = false;
/**
* @brief If true, the client may not use the music list.
*/
bool is_dj_blocked = false;
/**
* @brief If true, the client may not use the judge controls.
*/
bool is_wtce_blocked = false;
/** /**
* @brief Represents the client's client software, and its version. * @brief Represents the client's client software, and its version.
@ -322,7 +344,6 @@ class AOClient : public QObject {
* @brief Sends all four types of ARUP to the client. * @brief Sends all four types of ARUP to the client.
*/ */
void fullArup(); void fullArup();
/** /**
* @brief Sends an out-of-character message originating from the server to the client. * @brief Sends an out-of-character message originating from the server to the client.
* *
@ -1002,6 +1023,8 @@ class AOClient : public QObject {
* @see AOClient::cmdG() * @see AOClient::cmdG()
*/ */
void cmdGM(int argc, QStringList argv); void cmdGM(int argc, QStringList argv);
// Casing/RP
/** /**
* @brief Mutes a client. * @brief Mutes a client.
@ -1015,7 +1038,7 @@ class AOClient : public QObject {
void cmdMute(int argc, QStringList argv); void cmdMute(int argc, QStringList argv);
/** /**
* @brief Removes the muted status a client. * @brief Removes the muted status from a client.
* *
* @details The only argument is the **target client's user ID**. * @details The only argument is the **target client's user ID**.
* *
@ -1023,8 +1046,74 @@ class AOClient : public QObject {
* *
* @see #is_muted * @see #is_muted
*/ */
void cmdUnmute(int argc, QStringList argv); void cmdUnMute(int argc, QStringList argv);
/**
* @brief OOC-mutes a client.
*
* @details The only argument is the **target client's user ID**.
*
* @iscommand
*
* @see #is_ooc_muted
*/
void cmdOocMute(int argc, QStringList argv);
/**
* @brief Removes the OOC-muted status from a client.
*
* @details The only argument is the **target client's user ID**.
*
* @iscommand
*
* @see #is_ooc_muted
*/
void cmdOocUnMute(int argc, QStringList argv);
/**
* @brief DJ-blocks a client.
*
* @details The only argument is the **target client's user ID**.
*
* @iscommand
*
* @see #is_dj_blocked
*/
void cmdBlockDj(int argc, QStringList argv);
/**
* @brief Removes the DJ-blocked status from a client.
*
* @details The only argument is the **target client's user ID**.
*
* @iscommand
*
* @see #is_dj_blocked
*/
void cmdUnBlockDj(int argc, QStringList argv);
/**
* @brief WTCE-blocks a client.
*
* @details The only argument is the **target client's user ID**.
*
* @iscommand
*
* @see #is_wtce_blocked
*/
void cmdBlockWtce(int argc, QStringList argv);
/**
* @brief Removes the WTCE-blocked status from a client.
*
* @details The only argument is the **target client's user ID**.
*
* @iscommand
*
* @see #is_wtce_blocked
*/
void cmdUnBlockWtce(int argc, QStringList argv);
/** /**
* @brief Lists the last five bans made on the server. * @brief Lists the last five bans made on the server.
* *
@ -1146,6 +1235,18 @@ class AOClient : public QObject {
*/ */
void cmdEvidenceMod(int argc, QStringList argv); void cmdEvidenceMod(int argc, QStringList argv);
/**
* @brief Changes position of two pieces of evidence in the area.
*
* @details The two arguments are the indices of the evidence items you want to swap the position of.
*
* @iscommand
*
* @see Area::Evidence_Swap
*
*/
void cmdEvidence_Swap(int argc, QStringList argv);
/** /**
* @brief Changes the subtheme of the clients in the current area. * @brief Changes the subtheme of the clients in the current area.
* *
@ -1153,6 +1254,7 @@ class AOClient : public QObject {
* *
* @iscommand * @iscommand
*/ */
void cmdSubTheme(int argc, QStringList argv); void cmdSubTheme(int argc, QStringList argv);
/** /**
@ -1350,6 +1452,7 @@ class AOClient : public QObject {
* @return The parsed text, converted into their respective durations, summed up, then converted into seconds. * @return The parsed text, converted into their respective durations, summed up, then converted into seconds.
*/ */
long long parseTime(QString input); long long parseTime(QString input);
QString getReprimand(bool positive = false);
///@} ///@}
@ -1451,6 +1554,7 @@ class AOClient : public QObject {
{"removeuser", {ACLFlags.value("MODIFY_USERS"), 1, &AOClient::cmdRemoveUser}}, {"removeuser", {ACLFlags.value("MODIFY_USERS"), 1, &AOClient::cmdRemoveUser}},
{"subtheme", {ACLFlags.value("CM"), 1, &AOClient::cmdSubTheme}}, {"subtheme", {ACLFlags.value("CM"), 1, &AOClient::cmdSubTheme}},
{"about", {ACLFlags.value("NONE"), 0, &AOClient::cmdAbout}}, {"about", {ACLFlags.value("NONE"), 0, &AOClient::cmdAbout}},
{"evidence_swap", {ACLFlags.value("CM"), 2, &AOClient::cmdEvidence_Swap}},
{"notecard", {ACLFlags.value("NONE"), 1, &AOClient::cmdNoteCard}}, {"notecard", {ACLFlags.value("NONE"), 1, &AOClient::cmdNoteCard}},
{"notecardreveal", {ACLFlags.value("CM"), 0, &AOClient::cmdNoteCardReveal}}, {"notecardreveal", {ACLFlags.value("CM"), 0, &AOClient::cmdNoteCardReveal}},
{"notecard_reveal", {ACLFlags.value("CM"), 0, &AOClient::cmdNoteCardReveal}}, {"notecard_reveal", {ACLFlags.value("CM"), 0, &AOClient::cmdNoteCardReveal}},

View File

@ -142,7 +142,7 @@ void AOClient::changeCharacter(int char_id)
area->characters_taken.removeAll(server->getCharID(current_char)); area->characters_taken.removeAll(server->getCharID(current_char));
} }
if(char_id > server->characters.length()) if(char_id >= server->characters.length())
return; return;
if (char_id >= 0) { if (char_id >= 0) {

View File

@ -52,7 +52,7 @@ void AOClient::cmdLogin(int argc, QStringList argv)
} }
server->areas.value(current_area)->logger->logLogin(this, authenticated, "moderator"); server->areas.value(current_area)->logger->logLogin(this, authenticated, "moderator");
} }
else { else if (auth_type == "advanced") {
if (argc < 2) { if (argc < 2) {
sendServerMessage("You must specify a username and a password"); sendServerMessage("You must specify a username and a password");
return; return;
@ -73,6 +73,10 @@ void AOClient::cmdLogin(int argc, QStringList argv)
} }
server->areas.value(current_area)->logger->logLogin(this, authenticated, username); server->areas.value(current_area)->logger->logLogin(this, authenticated, username);
} }
else {
qWarning() << "config.ini has an unrecognized auth_type!";
sendServerMessage("Config.ini contains an invalid auth_type, please check your config.");
}
} }
void AOClient::cmdGetAreas(int argc, QStringList argv) void AOClient::cmdGetAreas(int argc, QStringList argv)
@ -953,38 +957,6 @@ void AOClient::cmdGM(int argc, QStringList argv)
} }
} }
void AOClient::cmdMute(int argc, QStringList argv)
{
bool conv_ok = false;
int uid = argv[0].toInt(&conv_ok);
if (!conv_ok) {
sendServerMessage("Invalid user ID.");
return;
}
if (server->getClientByID(uid)->is_muted)
sendServerMessage("That player is already muted!");
else
sendServerMessage("Muted player.");
server->getClientByID(uid)->is_muted = true;
}
void AOClient::cmdUnmute(int argc, QStringList argv)
{
bool conv_ok = false;
int uid = argv[0].toInt(&conv_ok);
if (!conv_ok) {
sendServerMessage("Invalid user ID.");
return;
}
if (!server->getClientByID(uid)->is_muted)
sendServerMessage("That player is already unmuted!");
else
sendServerMessage("Unmuted player.");
server->getClientByID(uid)->is_muted = false;
}
void AOClient::cmdBans(int argc, QStringList argv) void AOClient::cmdBans(int argc, QStringList argv)
{ {
QStringList recent_bans; QStringList recent_bans;
@ -1035,6 +1007,202 @@ void AOClient::cmdAbout(int argc, QStringList argv)
sendPacket("CT", {"The akashi dev team", "Thank you for using akashi! Made with love by scatterflower, with help from in1tiate and Salanto. akashi " + QCoreApplication::applicationVersion()}); sendPacket("CT", {"The akashi dev team", "Thank you for using akashi! Made with love by scatterflower, with help from in1tiate and Salanto. akashi " + QCoreApplication::applicationVersion()});
} }
void AOClient::cmdEvidence_Swap(int argc, QStringList argv)
{
AreaData* area = server->areas[current_area];
int ev_size = area->evidence.size() -1;
if (ev_size < 0) {
sendServerMessage("No evidence in area.");
return;
}
bool ok, ok2;
int ev_id1 = argv[0].toInt(&ok), ev_id2 = argv[1].toInt(&ok2);
if ((!ok || !ok2)) {
sendServerMessage("Invalid evidence ID.");
return;
}
if ((ev_id1 < 0) || (ev_id2 < 0)) {
sendServerMessage("Evidence ID can't be negative.");
return;
}
if ((ev_id2 <= ev_size) && (ev_id1 <= ev_size)) {
#if QT_VERSION < QT_VERSION_CHECK(5, 13, 0)
//swapItemsAt does not exist in Qt older than 5.13
area->evidence.swap(ev_id1, ev_id2);
#else
area->evidence.swapItemsAt(ev_id1, ev_id2);
#endif
sendEvidenceList(area);
sendServerMessage("The evidence " + QString::number(ev_id1) + " and " + QString::number(ev_id2) + " have been swapped.");
}
else {
sendServerMessage("Unable to swap evidence. Evidence ID out of range.");
}
}
void AOClient::cmdMute(int argc, QStringList argv)
{
bool conv_ok = false;
int uid = argv[0].toInt(&conv_ok);
if (!conv_ok) {
sendServerMessage("Invalid user ID.");
return;
}
AOClient* target = server->getClientByID(uid);
if (target->is_muted)
sendServerMessage("That player is already muted!");
else {
sendServerMessage("Muted player.");
target->sendServerMessage("You were muted by a moderator. " + getReprimand());
}
target->is_muted = true;
}
void AOClient::cmdUnMute(int argc, QStringList argv)
{
bool conv_ok = false;
int uid = argv[0].toInt(&conv_ok);
if (!conv_ok) {
sendServerMessage("Invalid user ID.");
return;
}
AOClient* target = server->getClientByID(uid);
if (!target->is_muted)
sendServerMessage("That player is not muted!");
else {
sendServerMessage("Unmuted player.");
target->sendServerMessage("You were unmuted by a moderator. " + getReprimand(true));
}
target->is_muted = false;
}
void AOClient::cmdOocMute(int argc, QStringList argv)
{
bool conv_ok = false;
int uid = argv[0].toInt(&conv_ok);
if (!conv_ok) {
sendServerMessage("Invalid user ID.");
return;
}
AOClient* target = server->getClientByID(uid);
if (target->is_ooc_muted)
sendServerMessage("That player is already OOC muted!");
else {
sendServerMessage("OOC muted player.");
target->sendServerMessage("You were OOC muted by a moderator. " + getReprimand());
}
target->is_ooc_muted = true;
}
void AOClient::cmdOocUnMute(int argc, QStringList argv)
{
bool conv_ok = false;
int uid = argv[0].toInt(&conv_ok);
if (!conv_ok) {
sendServerMessage("Invalid user ID.");
return;
}
AOClient* target = server->getClientByID(uid);
if (!target->is_ooc_muted)
sendServerMessage("That player is not OOC muted!");
else {
sendServerMessage("OOC unmuted player.");
target->sendServerMessage("You were OOC unmuted by a moderator. " + getReprimand(true));
}
target->is_ooc_muted = false;
}
void AOClient::cmdBlockDj(int argc, QStringList argv)
{
bool conv_ok = false;
int uid = argv[0].toInt(&conv_ok);
if (!conv_ok) {
sendServerMessage("Invalid user ID.");
return;
}
AOClient* target = server->getClientByID(uid);
if (target->is_dj_blocked)
sendServerMessage("That player is already DJ blocked!");
else {
sendServerMessage("DJ blocked player.");
target->sendServerMessage("You were blocked from changing the music by a moderator. " + getReprimand());
}
target->is_dj_blocked = true;
}
void AOClient::cmdUnBlockDj(int argc, QStringList argv)
{
bool conv_ok = false;
int uid = argv[0].toInt(&conv_ok);
if (!conv_ok) {
sendServerMessage("Invalid user ID.");
return;
}
AOClient* target = server->getClientByID(uid);
if (!target->is_dj_blocked)
sendServerMessage("That player is not DJ blocked!");
else {
sendServerMessage("DJ permissions restored to player.");
target->sendServerMessage("A moderator restored your music permissions. " + getReprimand(true));
}
target->is_dj_blocked = false;
}
void AOClient::cmdBlockWtce(int argc, QStringList argv)
{
bool conv_ok = false;
int uid = argv[0].toInt(&conv_ok);
if (!conv_ok) {
sendServerMessage("Invalid user ID.");
return;
}
AOClient* target = server->getClientByID(uid);
if (target->is_wtce_blocked)
sendServerMessage("That player is already judge blocked!");
else {
sendServerMessage("Revoked player's access to judge controls.");
target->sendServerMessage("A moderator revoked your judge controls access. " + getReprimand());
}
target->is_wtce_blocked = true;
}
void AOClient::cmdUnBlockWtce(int argc, QStringList argv)
{
bool conv_ok = false;
int uid = argv[0].toInt(&conv_ok);
if (!conv_ok) {
sendServerMessage("Invalid user ID.");
return;
}
AOClient* target = server->getClientByID(uid);
if (!target->is_wtce_blocked)
sendServerMessage("That player is not judge blocked!");
else {
sendServerMessage("Restored player's access to judge controls.");
target->sendServerMessage("A moderator restored your judge controls access. " + getReprimand(true));
}
target->is_wtce_blocked = false;
}
void AOClient::cmdNoteCard(int argc, QStringList argv) void AOClient::cmdNoteCard(int argc, QStringList argv)
{ {
AreaData* area = server->areas[current_area]; AreaData* area = server->areas[current_area];
@ -1230,3 +1398,21 @@ long long AOClient::parseTime(QString input)
return total; return total;
} }
QString AOClient::getReprimand(bool positive)
{
QString filename = positive ? "praise" : "reprimands";
QFileInfo reprimands_info("config/text/" + filename + ".txt");
if (!(reprimands_info.exists() && reprimands_info.isFile())) {
qWarning() << filename + ".txt doesn't exist!";
return "";
}
QStringList reprimands;
QFile file("config/text/" + filename + ".txt");
file.open(QIODevice::ReadOnly | QIODevice::Text);
while (!file.atEnd()) {
reprimands.append(file.readLine().trimmed());
}
file.close();
return reprimands[genRand(0, reprimands.size() - 1)];
}

View File

@ -84,6 +84,14 @@ bool ConfigManager::initConfig()
// This means the config is invalid // This means the config is invalid
return false; return false;
} }
config.beginGroup("Options");
QString auth_type = config.value("auth", "simple").toString();
config.endGroup();
if (!(auth_type == "simple" || auth_type == "advanced")) {
qCritical() << "config.ini is invalid!";
return false;
}
else { else {
// Config is valid and up to date, so let's go ahead // Config is valid and up to date, so let's go ahead
return true; return true;

View File

@ -36,7 +36,7 @@ int main(int argc, char* argv[])
{ {
QCoreApplication app(argc, argv); QCoreApplication app(argc, argv);
QCoreApplication::setApplicationName("akashi"); QCoreApplication::setApplicationName("akashi");
QCoreApplication::setApplicationVersion("apricot r2 prerelease"); QCoreApplication::setApplicationVersion("apricot r3 prerelease");
std::atexit(cleanup); std::atexit(cleanup);
ConfigManager config_manager; ConfigManager config_manager;

View File

@ -172,6 +172,11 @@ void AOClient::pktIcChat(AreaData* area, int argc, QStringList argv, AOPacket pa
void AOClient::pktOocChat(AreaData* area, int argc, QStringList argv, AOPacket packet) void AOClient::pktOocChat(AreaData* area, int argc, QStringList argv, AOPacket packet)
{ {
if (is_ooc_muted) {
sendServerMessage("You are OOC muted, and cannot speak.");
return;
}
ooc_name = dezalgo(argv[0]).replace(QRegExp("\\[|\\]|\\{|\\}|\\#|\\$|\\%|\\&"), ""); // no fucky wucky shit here ooc_name = dezalgo(argv[0]).replace(QRegExp("\\[|\\]|\\{|\\}|\\#|\\$|\\%|\\&"), ""); // no fucky wucky shit here
if (ooc_name.isEmpty() || ooc_name == server->getServerName()) // impersonation & empty name protection if (ooc_name.isEmpty() || ooc_name == server->getServerName()) // impersonation & empty name protection
return; return;
@ -203,6 +208,10 @@ void AOClient::pktPing(AreaData* area, int argc, QStringList argv, AOPacket pack
void AOClient::pktChangeMusic(AreaData* area, int argc, QStringList argv, AOPacket packet) void AOClient::pktChangeMusic(AreaData* area, int argc, QStringList argv, AOPacket packet)
{ {
if (is_dj_blocked) {
sendServerMessage("You are blocked from changing the music.");
return;
}
// Due to historical reasons, this // Due to historical reasons, this
// packet has two functions: // packet has two functions:
// Change area, and set music. // Change area, and set music.
@ -243,6 +252,10 @@ void AOClient::pktChangeMusic(AreaData* area, int argc, QStringList argv, AOPack
void AOClient::pktWtCe(AreaData* area, int argc, QStringList argv, AOPacket packet) void AOClient::pktWtCe(AreaData* area, int argc, QStringList argv, AOPacket packet)
{ {
if (is_wtce_blocked) {
sendServerMessage("You are blocked from using the judge controls.");
return;
}
if (QDateTime::currentDateTime().toSecsSinceEpoch() - last_wtce_time <= 5) if (QDateTime::currentDateTime().toSecsSinceEpoch() - last_wtce_time <= 5)
return; return;
last_wtce_time = QDateTime::currentDateTime().toSecsSinceEpoch(); last_wtce_time = QDateTime::currentDateTime().toSecsSinceEpoch();
@ -251,6 +264,10 @@ void AOClient::pktWtCe(AreaData* area, int argc, QStringList argv, AOPacket pack
void AOClient::pktHpBar(AreaData* area, int argc, QStringList argv, AOPacket packet) void AOClient::pktHpBar(AreaData* area, int argc, QStringList argv, AOPacket packet)
{ {
if (is_wtce_blocked) {
sendServerMessage("You are blocked from using the judge controls.");
return;
}
if (argv[0] == "1") { if (argv[0] == "1") {
area->def_hp = std::min(std::max(0, argv[1].toInt()), 10); area->def_hp = std::min(std::max(0, argv[1].toInt()), 10);
} }
@ -404,6 +421,7 @@ AOPacket AOClient::validateIcPacket(AOPacket packet)
} }
qDebug() << "INI swap detected from " << getIpid(); qDebug() << "INI swap detected from " << getIpid();
} }
current_iniswap = incoming_args[2].toString();
args.append(incoming_args[2].toString()); args.append(incoming_args[2].toString());
// emote // emote
@ -486,7 +504,7 @@ AOPacket AOClient::validateIcPacket(AOPacket packet)
// text color // text color
int text_color = incoming_args[14].toInt(); int text_color = incoming_args[14].toInt();
if (text_color != 0 && text_color != 1 && text_color != 2 && text_color != 3 && text_color != 4 && text_color != 5 && text_color != 6) if (text_color < 0 || text_color > 11)
return invalid; return invalid;
args.append(QString::number(text_color)); args.append(QString::number(text_color));
@ -494,6 +512,9 @@ AOPacket AOClient::validateIcPacket(AOPacket packet)
if (incoming_args.length() > 15) { if (incoming_args.length() > 15) {
// showname // showname
QString incoming_showname = dezalgo(incoming_args[15].toString().trimmed()); QString incoming_showname = dezalgo(incoming_args[15].toString().trimmed());
// if the raw input is not empty but the trimmed input is, use a single space
if (incoming_showname.isEmpty() && !incoming_args[15].toString().isEmpty())
incoming_showname = " ";
args.append(incoming_showname); args.append(incoming_showname);
showname = incoming_showname; showname = incoming_showname;
@ -512,8 +533,11 @@ AOPacket AOClient::validateIcPacket(AOPacket packet)
QString other_offset = "0"; QString other_offset = "0";
QString other_flip = "0"; QString other_flip = "0";
for (AOClient* client : server->clients) { for (AOClient* client : server->clients) {
if (client->pairing_with == char_id && other_charid != char_id && client->char_id == pairing_with) { if (client->pairing_with == char_id
other_name = server->characters.at(other_charid); && other_charid != char_id
&& client->char_id == pairing_with
&& client->pos == pos) {
other_name = client->current_iniswap;
other_emote = client->emote; other_emote = client->emote;
other_offset = client->offset; other_offset = client->offset;
other_flip = client->flipping; other_flip = client->flipping;

View File

@ -134,6 +134,7 @@ void Server::clientConnected()
// tsuserver4. It should disable fantacrypt // tsuserver4. It should disable fantacrypt
// completely in any client 2.4.3 or newer // completely in any client 2.4.3 or newer
client->sendPacket(decryptor); client->sendPacket(decryptor);
client->calculateIpid();
#ifdef NET_DEBUG #ifdef NET_DEBUG
qDebug() << client->remote_ip.toString() << "connected"; qDebug() << client->remote_ip.toString() << "connected";
#endif #endif