diff --git a/bin/config_sample/text/praise.txt b/bin/config_sample/text/praise.txt new file mode 100644 index 0000000..5cad5b1 --- /dev/null +++ b/bin/config_sample/text/praise.txt @@ -0,0 +1,10 @@ +:3 +\o/ +Be safe! +Have fun! +Be careful! +Have a nice day! +Be responsible! +Be good! +I believe in you! + diff --git a/bin/config_sample/text/reprimands.txt b/bin/config_sample/text/reprimands.txt new file mode 100644 index 0000000..9ed1548 --- /dev/null +++ b/bin/config_sample/text/reprimands.txt @@ -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. \ No newline at end of file diff --git a/include/aoclient.h b/include/aoclient.h index acfe9cf..6956bbb 100644 --- a/include/aoclient.h +++ b/include/aoclient.h @@ -123,6 +123,13 @@ class AOClient : public QObject { */ 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. */ @@ -154,6 +161,21 @@ class AOClient : public QObject { * @brief If true, the client may not use in-character chat. */ 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. @@ -322,7 +344,6 @@ class AOClient : public QObject { * @brief Sends all four types of ARUP to the client. */ void fullArup(); - /** * @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() */ void cmdGM(int argc, QStringList argv); + + // Casing/RP /** * @brief Mutes a client. @@ -1015,7 +1038,7 @@ class AOClient : public QObject { 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**. * @@ -1023,8 +1046,74 @@ class AOClient : public QObject { * * @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. * @@ -1146,6 +1235,18 @@ class AOClient : public QObject { */ 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. * @@ -1153,6 +1254,7 @@ class AOClient : public QObject { * * @iscommand */ + 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. */ 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}}, {"subtheme", {ACLFlags.value("CM"), 1, &AOClient::cmdSubTheme}}, {"about", {ACLFlags.value("NONE"), 0, &AOClient::cmdAbout}}, + {"evidence_swap", {ACLFlags.value("CM"), 2, &AOClient::cmdEvidence_Swap}}, {"notecard", {ACLFlags.value("NONE"), 1, &AOClient::cmdNoteCard}}, {"notecardreveal", {ACLFlags.value("CM"), 0, &AOClient::cmdNoteCardReveal}}, {"notecard_reveal", {ACLFlags.value("CM"), 0, &AOClient::cmdNoteCardReveal}}, diff --git a/src/aoclient.cpp b/src/aoclient.cpp index b9207bc..c06da28 100644 --- a/src/aoclient.cpp +++ b/src/aoclient.cpp @@ -142,7 +142,7 @@ void AOClient::changeCharacter(int char_id) area->characters_taken.removeAll(server->getCharID(current_char)); } - if(char_id > server->characters.length()) + if(char_id >= server->characters.length()) return; if (char_id >= 0) { diff --git a/src/commands.cpp b/src/commands.cpp index 3a83cf1..c42e0db 100644 --- a/src/commands.cpp +++ b/src/commands.cpp @@ -52,7 +52,7 @@ void AOClient::cmdLogin(int argc, QStringList argv) } server->areas.value(current_area)->logger->logLogin(this, authenticated, "moderator"); } - else { + else if (auth_type == "advanced") { if (argc < 2) { sendServerMessage("You must specify a username and a password"); return; @@ -73,6 +73,10 @@ void AOClient::cmdLogin(int argc, QStringList argv) } 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) @@ -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) { 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()}); } +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) { AreaData* area = server->areas[current_area]; @@ -1230,3 +1398,21 @@ long long AOClient::parseTime(QString input) 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)]; +} diff --git a/src/config_manager.cpp b/src/config_manager.cpp index 69de3cf..d6893a8 100644 --- a/src/config_manager.cpp +++ b/src/config_manager.cpp @@ -84,6 +84,14 @@ bool ConfigManager::initConfig() // This means the config is invalid 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 { // Config is valid and up to date, so let's go ahead return true; diff --git a/src/main.cpp b/src/main.cpp index 8560141..defcf23 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -36,7 +36,7 @@ int main(int argc, char* argv[]) { QCoreApplication app(argc, argv); QCoreApplication::setApplicationName("akashi"); - QCoreApplication::setApplicationVersion("apricot r2 prerelease"); + QCoreApplication::setApplicationVersion("apricot r3 prerelease"); std::atexit(cleanup); ConfigManager config_manager; diff --git a/src/packets.cpp b/src/packets.cpp index 80e89ce..8f501d0 100644 --- a/src/packets.cpp +++ b/src/packets.cpp @@ -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) { + 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 if (ooc_name.isEmpty() || ooc_name == server->getServerName()) // impersonation & empty name protection 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) { + if (is_dj_blocked) { + sendServerMessage("You are blocked from changing the music."); + return; + } // Due to historical reasons, this // packet has two functions: // 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) { + if (is_wtce_blocked) { + sendServerMessage("You are blocked from using the judge controls."); + return; + } if (QDateTime::currentDateTime().toSecsSinceEpoch() - last_wtce_time <= 5) return; 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) { + if (is_wtce_blocked) { + sendServerMessage("You are blocked from using the judge controls."); + return; + } if (argv[0] == "1") { 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(); } + current_iniswap = incoming_args[2].toString(); args.append(incoming_args[2].toString()); // emote @@ -486,7 +504,7 @@ AOPacket AOClient::validateIcPacket(AOPacket packet) // text color 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; args.append(QString::number(text_color)); @@ -494,6 +512,9 @@ AOPacket AOClient::validateIcPacket(AOPacket packet) if (incoming_args.length() > 15) { // showname 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); showname = incoming_showname; @@ -512,8 +533,11 @@ AOPacket AOClient::validateIcPacket(AOPacket packet) QString other_offset = "0"; QString other_flip = "0"; for (AOClient* client : server->clients) { - if (client->pairing_with == char_id && other_charid != char_id && client->char_id == pairing_with) { - other_name = server->characters.at(other_charid); + if (client->pairing_with == char_id + && other_charid != char_id + && client->char_id == pairing_with + && client->pos == pos) { + other_name = client->current_iniswap; other_emote = client->emote; other_offset = client->offset; other_flip = client->flipping; diff --git a/src/server.cpp b/src/server.cpp index 148dce2..5bf4403 100644 --- a/src/server.cpp +++ b/src/server.cpp @@ -134,6 +134,7 @@ void Server::clientConnected() // tsuserver4. It should disable fantacrypt // completely in any client 2.4.3 or newer client->sendPacket(decryptor); + client->calculateIpid(); #ifdef NET_DEBUG qDebug() << client->remote_ip.toString() << "connected"; #endif