Merge pull request #54 from AttorneyOnline/8ball

Add /8ball and a text file to change its answers
This commit is contained in:
scatterflower 2021-04-05 12:20:13 -05:00 committed by GitHub
commit 9d87a6e227
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 63 additions and 0 deletions

View File

@ -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.

View File

@ -1380,6 +1380,15 @@ class AOClient : public QObject {
*/ */
void cmdPM(int argc, QStringList argv); 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);
///@} ///@}
/** /**
@ -1571,6 +1580,7 @@ class AOClient : public QObject {
{"notecard_reveal", {ACLFlags.value("CM"), 0, &AOClient::cmdNoteCardReveal}}, {"notecard_reveal", {ACLFlags.value("CM"), 0, &AOClient::cmdNoteCardReveal}},
{"notecardclear", {ACLFlags.value("NONE"), 0, &AOClient::cmdNoteCardClear}}, {"notecardclear", {ACLFlags.value("NONE"), 0, &AOClient::cmdNoteCardClear}},
{"notecard_clear", {ACLFlags.value("NONE"), 0, &AOClient::cmdNoteCardClear}}, {"notecard_clear", {ACLFlags.value("NONE"), 0, &AOClient::cmdNoteCardClear}},
{"8ball", {ACLFlags.value("NONE"), 1, &AOClient::cmd8Ball}},
{"lm", {ACLFlags.value("MODCHAT"), 1, &AOClient::cmdLM}}, {"lm", {ACLFlags.value("MODCHAT"), 1, &AOClient::cmdLM}},
}; };

View File

@ -1247,6 +1247,39 @@ void AOClient::cmdNoteCardReveal(int argc, QStringList argv)
area->notecards.clear(); 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 AOClient::buildAreaList(int area_idx)
{ {
QStringList entries; QStringList entries;