From b1c00cb46f118ea5e8747656d80391284d6a3d44 Mon Sep 17 00:00:00 2001 From: MangosArentLiterature <58055358+MangosArentLiterature@users.noreply.github.com> Date: Sun, 4 Apr 2021 16:16:37 -0500 Subject: [PATCH 1/3] Add /8ball --- bin/config_sample/text/8ball.txt | 20 +++++++++++++++++++ include/aoclient.h | 3 +++ src/commands.cpp | 33 ++++++++++++++++++++++++++++++++ 3 files changed, 56 insertions(+) create mode 100644 bin/config_sample/text/8ball.txt diff --git a/bin/config_sample/text/8ball.txt b/bin/config_sample/text/8ball.txt new file mode 100644 index 0000000..4ba2f55 --- /dev/null +++ b/bin/config_sample/text/8ball.txt @@ -0,0 +1,20 @@ +It is certain. +It is decidedly so. +Without a doubt. +Yes - definitely. +You may rely on it. +As I see it, yes. +Most likely. +Outlook good. +Yes. +Signs point to yes. +Reply hazy, try again. +Ask again later. +Better not tell you now. +Cannot predict now. +Concentrate and ask again. +Don't count on it. +My reply is no. +My sources say no. +Outlook not so good. +Very doubtful. \ No newline at end of file diff --git a/include/aoclient.h b/include/aoclient.h index 7295ab8..9d9430d 100644 --- a/include/aoclient.h +++ b/include/aoclient.h @@ -1369,6 +1369,8 @@ class AOClient : public QObject { */ void cmdPM(int argc, QStringList argv); + void cmd8Ball(int argc, QStringList argv); + ///@} /** @@ -1560,6 +1562,7 @@ class AOClient : public QObject { {"notecard_reveal", {ACLFlags.value("CM"), 0, &AOClient::cmdNoteCardReveal}}, {"notecardclear", {ACLFlags.value("NONE"), 0, &AOClient::cmdNoteCardClear}}, {"notecard_clear", {ACLFlags.value("NONE"), 0, &AOClient::cmdNoteCardClear}}, + {"8ball", {ACLFlags.value("NONE"), 1, &AOClient::cmd8Ball}}, }; /** diff --git a/src/commands.cpp b/src/commands.cpp index c42e0db..dc42218 100644 --- a/src/commands.cpp +++ b/src/commands.cpp @@ -1240,6 +1240,39 @@ void AOClient::cmdNoteCardReveal(int argc, QStringList argv) area->notecards.clear(); } +void AOClient::cmd8Ball(int argc, QStringList argv) +{ + QFileInfo magic8ball_info("config/text/8ball.txt"); + if (!(magic8ball_info.exists() && magic8ball_info.isFile())) { + qWarning() << "8ball.txt doesn't exist!"; + sendServerMessage("8ball.txt doesn't exist."); + } + else { + QStringList answers; + QFile file("config/text/8ball.txt"); + file.open(QIODevice::ReadOnly | QIODevice::Text); + while (!file.atEnd()) { + answers.append(file.readLine().trimmed()); + } + file.close(); + + if (answers.isEmpty()) { + qWarning() << "8ball.txt is empty!"; + sendServerMessage("8ball.txt is empty."); + } + else { + int answerindex = answers.size(); + QString response = answers[(genRand(1, answerindex))]; + QString sender_name = ooc_name; + QString sender_message = argv.join(" "); + + sendServerMessageArea(sender_name + " asked the magic 8-ball " + sender_message + " and the answer is: " + response); + } + + } + +} + QStringList AOClient::buildAreaList(int area_idx) { QStringList entries; From ed38f5cb17fc94a31a20e91c44be38d65c671377 Mon Sep 17 00:00:00 2001 From: MangosArentLiterature <58055358+MangosArentLiterature@users.noreply.github.com> Date: Sun, 4 Apr 2021 17:06:01 -0500 Subject: [PATCH 2/3] Add documentation to /8ball --- include/aoclient.h | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/include/aoclient.h b/include/aoclient.h index 9d9430d..4bd8e20 100644 --- a/include/aoclient.h +++ b/include/aoclient.h @@ -1369,6 +1369,13 @@ class AOClient : public QObject { */ void cmdPM(int argc, QStringList argv); + /** + * @brief Randomly selects an answer from 8ball.txt to a question. + * + * @details The only argument is the question the client wants answered. + * + * @iscommand + */ void cmd8Ball(int argc, QStringList argv); ///@} From 272719f245e4f690d1bbe9094880feac65a8b74d Mon Sep 17 00:00:00 2001 From: MangosArentLiterature <58055358+MangosArentLiterature@users.noreply.github.com> Date: Sun, 4 Apr 2021 17:31:02 -0500 Subject: [PATCH 3/3] Fix /8ball output --- src/commands.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/commands.cpp b/src/commands.cpp index dc42218..6a8506c 100644 --- a/src/commands.cpp +++ b/src/commands.cpp @@ -1266,7 +1266,7 @@ void AOClient::cmd8Ball(int argc, QStringList argv) QString sender_name = ooc_name; QString sender_message = argv.join(" "); - sendServerMessageArea(sender_name + " asked the magic 8-ball " + sender_message + " and the answer is: " + response); + sendServerMessageArea(sender_name + " asked the magic 8-ball, \"" + sender_message + "\" and the answer is: " + response); } }