From 9693d475152ac6f26cf9e8a0431eb3e061257e72 Mon Sep 17 00:00:00 2001 From: Salanto Date: Thu, 14 Jan 2021 21:24:39 +0100 Subject: [PATCH 01/10] Add /roll command --- include/aoclient.h | 4 +++- src/commands.cpp | 52 ++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 55 insertions(+), 1 deletion(-) diff --git a/include/aoclient.h b/include/aoclient.h index bcd63f0..fd1775a 100644 --- a/include/aoclient.h +++ b/include/aoclient.h @@ -174,6 +174,7 @@ class AOClient : public QObject { void cmdG(int argc, QStringList argv); void cmdNeed(int argc, QStringList argv); void cmdFlip(int argc, QStringList argv); + void cmdRoll(int argc, QStringList argv); // Command helper functions QStringList buildAreaList(int area_idx); @@ -209,7 +210,8 @@ class AOClient : public QObject { {"pos", {ACLFlags.value("NONE"), 1, &AOClient::cmdPos}}, {"g", {ACLFlags.value("NONE"), 1, &AOClient::cmdG}}, {"need", {ACLFlags.value("NONE"), 1, &AOClient::cmdNeed}}, - {"flip", {ACLFlags.value("NONE"), 0, &AOClient::cmdFlip}} + {"flip", {ACLFlags.value("NONE"), 0, &AOClient::cmdFlip}}, + {"roll", {ACLFlags.value("NONE"), 0, &AOClient::cmdRoll}} }; QString partial_packet; diff --git a/src/commands.cpp b/src/commands.cpp index aa84f9f..666e200 100644 --- a/src/commands.cpp +++ b/src/commands.cpp @@ -394,6 +394,58 @@ void AOClient::cmdFlip(int argc, QStringList argv) sendServerMessage(sender_name + " flipped a coin and got " + face + "."); } +void AOClient::cmdRoll(int argc, QStringList argv) +{ + int max_roll_amount = 20; + int max_roll_faces = 11037; + QString sender_name = ooc_name; + + if (argc == 0) + { + QString dice_result = QString::number(AOClient::genRand(1, 6)); + server->broadcast(AOPacket("CT",{"Roll",sender_name + " rolled " + dice_result + " out of 6"}), current_area); + } + else if (argc == 1) + { + int amount_faces = argv[0].toInt(); + if (1 <= amount_faces and amount_faces <= max_roll_faces) + { + QString dice_result = QString::number(AOClient::genRand(1, amount_faces)); + server->broadcast(AOPacket("CT",{"Roll",sender_name + " rolled " + dice_result + " out of " + argv[0]}), current_area); + } + else + { + sendServerMessage("Invalid Range."); + } + } + else if (argc == 2) + { + int amount_faces = argv[0].toInt(); + int amount_rolls = argv[1].toInt(); + QString dice_results; + if (1 <= amount_faces and amount_faces <= max_roll_faces and 1 <= amount_rolls and amount_rolls <= max_roll_amount) + { + for (int i = 1; i <= amount_rolls ; i++) + { + QString dice_result = QString::number(AOClient::genRand(1, amount_faces)); + if (i == amount_rolls) + { + dice_results = dice_results.append(dice_result); + } + else + { + dice_results = dice_results.append(dice_result + ","); + } + } + server->broadcast(AOPacket("CT",{"Roll",sender_name + " rolled (" + dice_results + ") out of " + argv[0]}), current_area); + } + else + { + sendServerMessage("Invalid Range."); + } + } +} + QStringList AOClient::buildAreaList(int area_idx) { QStringList entries; From f43e360c8609ff4898734cb25b27b6a9037c7293 Mon Sep 17 00:00:00 2001 From: Salanto Date: Thu, 14 Jan 2021 22:03:57 +0100 Subject: [PATCH 02/10] add /rollp command Code duplication is a crime I am willing to commit. --- include/aoclient.h | 5 ++++- src/commands.cpp | 55 ++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 59 insertions(+), 1 deletion(-) diff --git a/include/aoclient.h b/include/aoclient.h index fd1775a..4fd9bac 100644 --- a/include/aoclient.h +++ b/include/aoclient.h @@ -175,6 +175,7 @@ class AOClient : public QObject { void cmdNeed(int argc, QStringList argv); void cmdFlip(int argc, QStringList argv); void cmdRoll(int argc, QStringList argv); + void cmdRollP(int argc, QStringList argv); // Command helper functions QStringList buildAreaList(int area_idx); @@ -211,7 +212,9 @@ class AOClient : public QObject { {"g", {ACLFlags.value("NONE"), 1, &AOClient::cmdG}}, {"need", {ACLFlags.value("NONE"), 1, &AOClient::cmdNeed}}, {"flip", {ACLFlags.value("NONE"), 0, &AOClient::cmdFlip}}, - {"roll", {ACLFlags.value("NONE"), 0, &AOClient::cmdRoll}} + {"roll", {ACLFlags.value("NONE"), 0, &AOClient::cmdRoll}}, + {"rollp", {ACLFlags.value("NONE"), 0, &AOClient::cmdRollP}} + }; QString partial_packet; diff --git a/src/commands.cpp b/src/commands.cpp index 666e200..7fec9e8 100644 --- a/src/commands.cpp +++ b/src/commands.cpp @@ -446,6 +446,61 @@ void AOClient::cmdRoll(int argc, QStringList argv) } } +void AOClient::cmdRollP(int argc, QStringList argv) +{ + int max_roll_amount = 20; + int max_roll_faces = 11037; + QString sender_name = ooc_name; + + if (argc == 0) + { + QString dice_result = QString::number(AOClient::genRand(1, 6)); + sendServerMessage(sender_name + " rolled " + dice_result + " out of 6"); + server->broadcast(AOPacket("CT",{"Roll",sender_name + " rolled in secret."}), current_area); + } + else if (argc == 1) + { + int amount_faces = argv[0].toInt(); + if (1 <= amount_faces and amount_faces <= max_roll_faces) + { + QString dice_result = QString::number(AOClient::genRand(1, amount_faces)); + sendServerMessage(sender_name + " rolled " + dice_result + " out of " + argv[0]); + server->broadcast(AOPacket("CT",{"Roll",sender_name + " rolled in secret."}), current_area); + } + else + { + sendServerMessage("Invalid Range."); + } + } + else if (argc == 2) + { + int amount_faces = argv[0].toInt(); + int amount_rolls = argv[1].toInt(); + QString dice_results; + if (1 <= amount_faces and amount_faces <= max_roll_faces and 1 <= amount_rolls and amount_rolls <= max_roll_amount) + { + for (int i = 1; i <= amount_rolls ; i++) + { + QString dice_result = QString::number(AOClient::genRand(1, amount_faces)); + if (i == amount_rolls) + { + dice_results = dice_results.append(dice_result); + } + else + { + dice_results = dice_results.append(dice_result + ","); + } + } + sendServerMessage(sender_name + " rolled " + dice_results + " out of " + argv[0]); + server->broadcast(AOPacket("CT",{"Roll",sender_name + " rolled in secret."}), current_area); + } + else + { + sendServerMessage("Invalid Range."); + } + } +} + QStringList AOClient::buildAreaList(int area_idx) { QStringList entries; From 2422287753d52ec6b0044be9b54c44ad742f7833 Mon Sep 17 00:00:00 2001 From: Salanto Date: Wed, 20 Jan 2021 14:49:07 +0100 Subject: [PATCH 03/10] Add sendServerMessageArea and sendServerBroadcast + Update some prior created commands to use them + Change style of global messages + Change style of need messages + Pretend to fix some formatting since I don't understand indentation --- include/aoclient.h | 2 ++ src/aoclient.cpp | 21 ++++++++++++++++++++- src/commands.cpp | 29 +++++++++++++++-------------- 3 files changed, 37 insertions(+), 15 deletions(-) diff --git a/include/aoclient.h b/include/aoclient.h index 4fd9bac..d3f25dd 100644 --- a/include/aoclient.h +++ b/include/aoclient.h @@ -88,6 +88,8 @@ class AOClient : public QObject { void arup(ARUPType type, bool broadcast); void fullArup(); void sendServerMessage(QString message); + void sendServerMessageArea(QString message); + void sendServerBroadcast(QString message); bool checkAuth(unsigned long long acl_mask); // Packet headers diff --git a/src/aoclient.cpp b/src/aoclient.cpp index 1e10adc..abe7ccc 100644 --- a/src/aoclient.cpp +++ b/src/aoclient.cpp @@ -216,7 +216,26 @@ void AOClient::setHwid(QString p_hwid) void AOClient::sendServerMessage(QString message) { - sendPacket("CT", {"Server", message, "1"}); + QSettings config("config/config.ini", QSettings::IniFormat); + config.beginGroup("Options"); + QString hostname = config.value("hostname", "Server").toString(); + sendPacket("CT", {hostname, message, "1"}); +} + +void AOClient::sendServerMessageArea(QString message) +{ + QSettings config("config/config.ini", QSettings::IniFormat); + config.beginGroup("Options"); + QString hostname = config.value("hostname", "Server").toString(); + server->broadcast(AOPacket("CT", {hostname, message, "1"}), current_area); +} + +void AOClient::sendServerBroadcast(QString message) +{ + QSettings config("config/config.ini", QSettings::IniFormat); + config.beginGroup("Options"); + QString hostname = config.value("hostname", "Server").toString(); + server->broadcast(AOPacket("CT", {hostname, message, "1"})); } bool AOClient::checkAuth(unsigned long long acl_mask) diff --git a/src/commands.cpp b/src/commands.cpp index 7fec9e8..93c6eac 100644 --- a/src/commands.cpp +++ b/src/commands.cpp @@ -374,8 +374,9 @@ void AOClient::cmdPos(int argc, QStringList argv) void AOClient::cmdG(int argc, QStringList argv) { QString sender_name = ooc_name; + QString sender_area = server->area_names.value(current_area); QString sender_message = argv.join(" "); - server->broadcast(AOPacket("CT", {"[G]" + sender_name, sender_message+ "."})); + server->broadcast(AOPacket("CT", {"[" + sender_area + "]" + sender_name, sender_message})); return; } @@ -383,7 +384,7 @@ void AOClient::cmdNeed(int argc, QStringList argv) { QString sender_area = server->area_names.value(current_area); QString sender_message = argv.join(" "); - server->broadcast(AOPacket("CT", {"=== Advert ===","[" + sender_area + "] needs " + sender_message+ "."})); + sendServerBroadcast({"=== Advert ===\n[" + sender_area + "] needs " + sender_message+ "."}); } void AOClient::cmdFlip(int argc, QStringList argv) @@ -403,15 +404,15 @@ void AOClient::cmdRoll(int argc, QStringList argv) if (argc == 0) { QString dice_result = QString::number(AOClient::genRand(1, 6)); - server->broadcast(AOPacket("CT",{"Roll",sender_name + " rolled " + dice_result + " out of 6"}), current_area); + sendServerMessageArea(sender_name + " rolled " + dice_result + " out of 6"); } else if (argc == 1) { int amount_faces = argv[0].toInt(); if (1 <= amount_faces and amount_faces <= max_roll_faces) { - QString dice_result = QString::number(AOClient::genRand(1, amount_faces)); - server->broadcast(AOPacket("CT",{"Roll",sender_name + " rolled " + dice_result + " out of " + argv[0]}), current_area); + QString dice_result = QString::number(AOClient::genRand(1, amount_faces)); + sendServerMessageArea(sender_name + " rolled " + dice_result + " out of " + argv[0]); } else { @@ -434,10 +435,10 @@ void AOClient::cmdRoll(int argc, QStringList argv) } else { - dice_results = dice_results.append(dice_result + ","); + dice_results = dice_results.append(dice_result + ","); } } - server->broadcast(AOPacket("CT",{"Roll",sender_name + " rolled (" + dice_results + ") out of " + argv[0]}), current_area); + sendServerMessageArea(sender_name + " rolled (" + dice_results + ") out of " + argv[0]); } else { @@ -456,16 +457,16 @@ void AOClient::cmdRollP(int argc, QStringList argv) { QString dice_result = QString::number(AOClient::genRand(1, 6)); sendServerMessage(sender_name + " rolled " + dice_result + " out of 6"); - server->broadcast(AOPacket("CT",{"Roll",sender_name + " rolled in secret."}), current_area); + sendServerMessageArea((sender_name + " rolled in secret.")); } else if (argc == 1) { int amount_faces = argv[0].toInt(); if (1 <= amount_faces and amount_faces <= max_roll_faces) { - QString dice_result = QString::number(AOClient::genRand(1, amount_faces)); - sendServerMessage(sender_name + " rolled " + dice_result + " out of " + argv[0]); - server->broadcast(AOPacket("CT",{"Roll",sender_name + " rolled in secret."}), current_area); + QString dice_result = QString::number(AOClient::genRand(1, amount_faces)); + sendServerMessage(sender_name + " rolled " + dice_result + " out of " + argv[0]); + sendServerMessageArea((sender_name + " rolled in secret."));; } else { @@ -488,11 +489,11 @@ void AOClient::cmdRollP(int argc, QStringList argv) } else { - dice_results = dice_results.append(dice_result + ","); + dice_results = dice_results.append(dice_result + ","); } } - sendServerMessage(sender_name + " rolled " + dice_results + " out of " + argv[0]); - server->broadcast(AOPacket("CT",{"Roll",sender_name + " rolled in secret."}), current_area); + sendServerMessage(sender_name + " rolled " + dice_results + " out of " + argv[0]); + sendServerMessageArea((sender_name + " rolled in secret."));; } else { From 11066acdb3e98d1ec2b5ec7e78cc105c489d94ca Mon Sep 17 00:00:00 2001 From: Salanto Date: Sun, 28 Feb 2021 00:45:54 +0100 Subject: [PATCH 04/10] Add method to configure the server name + Remove some redundant code to make use of this method --- include/server.h | 2 ++ src/aoclient.cpp | 15 +++------------ src/server.cpp | 8 ++++++++ 3 files changed, 13 insertions(+), 12 deletions(-) diff --git a/include/server.h b/include/server.h index 4e7d823..d9597fb 100644 --- a/include/server.h +++ b/include/server.h @@ -49,6 +49,7 @@ class Server : public QObject { void updateCharsTaken(AreaData* area); void broadcast(AOPacket packet, int area_index); void broadcast(AOPacket packet); + QString getServerName(); QVector clients; @@ -59,6 +60,7 @@ class Server : public QObject { QStringList music_list; QStringList backgrounds; DBManager* db_manager; + QString server_name; signals: diff --git a/src/aoclient.cpp b/src/aoclient.cpp index abe7ccc..215d539 100644 --- a/src/aoclient.cpp +++ b/src/aoclient.cpp @@ -216,26 +216,17 @@ void AOClient::setHwid(QString p_hwid) void AOClient::sendServerMessage(QString message) { - QSettings config("config/config.ini", QSettings::IniFormat); - config.beginGroup("Options"); - QString hostname = config.value("hostname", "Server").toString(); - sendPacket("CT", {hostname, message, "1"}); + sendPacket("CT", {server->getServerName(), message, "1"}); } void AOClient::sendServerMessageArea(QString message) { - QSettings config("config/config.ini", QSettings::IniFormat); - config.beginGroup("Options"); - QString hostname = config.value("hostname", "Server").toString(); - server->broadcast(AOPacket("CT", {hostname, message, "1"}), current_area); + server->broadcast(AOPacket("CT", {server->getServerName(), message, "1"}), current_area); } void AOClient::sendServerBroadcast(QString message) { - QSettings config("config/config.ini", QSettings::IniFormat); - config.beginGroup("Options"); - QString hostname = config.value("hostname", "Server").toString(); - server->broadcast(AOPacket("CT", {hostname, message, "1"})); + server->broadcast(AOPacket("CT", {server->getServerName(), message, "1"})); } bool AOClient::checkAuth(unsigned long long acl_mask) diff --git a/src/server.cpp b/src/server.cpp index 690a4f2..d0a038b 100644 --- a/src/server.cpp +++ b/src/server.cpp @@ -147,6 +147,14 @@ void Server::broadcast(AOPacket packet) } } +QString Server::getServerName() +{ + QSettings settings("config/config.ini", QSettings::IniFormat); + settings.beginGroup("Options"); + QString server_name = settings.value("server_name", "Akashi").toString(); + return server_name; +} + AOClient* Server::getClient(QString ipid) { for (AOClient* client : clients) { From c696e7d525edf23e2cfffb1723d62a13ba15c0e3 Mon Sep 17 00:00:00 2001 From: Salanto Date: Wed, 3 Mar 2021 01:23:36 +0100 Subject: [PATCH 05/10] Attempted a smarter approach at handling negative numbers --- include/aoclient.h | 7 ++ include/server.h | 1 + src/commands.cpp | 170 +++++++++++++++++++-------------------------- src/server.cpp | 10 +++ 4 files changed, 89 insertions(+), 99 deletions(-) diff --git a/include/aoclient.h b/include/aoclient.h index d3f25dd..8451a16 100644 --- a/include/aoclient.h +++ b/include/aoclient.h @@ -82,6 +82,12 @@ class AOClient : public QObject { LOCKED }; + enum RollType { + roll, + rollp, + rolla + }; + void handlePacket(AOPacket packet); void handleCommand(QString command, int argc, QStringList argv); void changeArea(int new_area); @@ -182,6 +188,7 @@ class AOClient : public QObject { // Command helper functions QStringList buildAreaList(int area_idx); int genRand(int min, int max); + void diceThrower(int argc, QStringList argv, RollType Type); // Command function global variables bool change_auth_started = false; diff --git a/include/server.h b/include/server.h index d9597fb..749e20a 100644 --- a/include/server.h +++ b/include/server.h @@ -50,6 +50,7 @@ class Server : public QObject { void broadcast(AOPacket packet, int area_index); void broadcast(AOPacket packet); QString getServerName(); + quint32 getDiceValue(QString value_type); QVector clients; diff --git a/src/commands.cpp b/src/commands.cpp index 93c6eac..0d07b2b 100644 --- a/src/commands.cpp +++ b/src/commands.cpp @@ -397,109 +397,14 @@ void AOClient::cmdFlip(int argc, QStringList argv) void AOClient::cmdRoll(int argc, QStringList argv) { - int max_roll_amount = 20; - int max_roll_faces = 11037; - QString sender_name = ooc_name; - - if (argc == 0) - { - QString dice_result = QString::number(AOClient::genRand(1, 6)); - sendServerMessageArea(sender_name + " rolled " + dice_result + " out of 6"); - } - else if (argc == 1) - { - int amount_faces = argv[0].toInt(); - if (1 <= amount_faces and amount_faces <= max_roll_faces) - { - QString dice_result = QString::number(AOClient::genRand(1, amount_faces)); - sendServerMessageArea(sender_name + " rolled " + dice_result + " out of " + argv[0]); - } - else - { - sendServerMessage("Invalid Range."); - } - } - else if (argc == 2) - { - int amount_faces = argv[0].toInt(); - int amount_rolls = argv[1].toInt(); - QString dice_results; - if (1 <= amount_faces and amount_faces <= max_roll_faces and 1 <= amount_rolls and amount_rolls <= max_roll_amount) - { - for (int i = 1; i <= amount_rolls ; i++) - { - QString dice_result = QString::number(AOClient::genRand(1, amount_faces)); - if (i == amount_rolls) - { - dice_results = dice_results.append(dice_result); - } - else - { - dice_results = dice_results.append(dice_result + ","); - } - } - sendServerMessageArea(sender_name + " rolled (" + dice_results + ") out of " + argv[0]); - } - else - { - sendServerMessage("Invalid Range."); - } - } + RollType Type = roll; + diceThrower(argc, argv, Type); } void AOClient::cmdRollP(int argc, QStringList argv) { - int max_roll_amount = 20; - int max_roll_faces = 11037; - QString sender_name = ooc_name; - - if (argc == 0) - { - QString dice_result = QString::number(AOClient::genRand(1, 6)); - sendServerMessage(sender_name + " rolled " + dice_result + " out of 6"); - sendServerMessageArea((sender_name + " rolled in secret.")); - } - else if (argc == 1) - { - int amount_faces = argv[0].toInt(); - if (1 <= amount_faces and amount_faces <= max_roll_faces) - { - QString dice_result = QString::number(AOClient::genRand(1, amount_faces)); - sendServerMessage(sender_name + " rolled " + dice_result + " out of " + argv[0]); - sendServerMessageArea((sender_name + " rolled in secret."));; - } - else - { - sendServerMessage("Invalid Range."); - } - } - else if (argc == 2) - { - int amount_faces = argv[0].toInt(); - int amount_rolls = argv[1].toInt(); - QString dice_results; - if (1 <= amount_faces and amount_faces <= max_roll_faces and 1 <= amount_rolls and amount_rolls <= max_roll_amount) - { - for (int i = 1; i <= amount_rolls ; i++) - { - QString dice_result = QString::number(AOClient::genRand(1, amount_faces)); - if (i == amount_rolls) - { - dice_results = dice_results.append(dice_result); - } - else - { - dice_results = dice_results.append(dice_result + ","); - } - } - sendServerMessage(sender_name + " rolled " + dice_results + " out of " + argv[0]); - sendServerMessageArea((sender_name + " rolled in secret."));; - } - else - { - sendServerMessage("Invalid Range."); - } - } + RollType Type = rollp; + diceThrower(argc, argv, Type); } QStringList AOClient::buildAreaList(int area_idx) @@ -534,3 +439,70 @@ int AOClient::genRand(int min, int max) return random_number; #endif } + +void AOClient::diceThrower(int argc, QStringList argv, RollType Type) +{ + QString sender_name = ooc_name; + int max_roll_faces = server->getDiceValue("max_value"); + int max_roll_amount = server->getDiceValue("max_dices"); + int bounded_faces; + int bounded_amount; + QString dice_results; + + if (argc == 0) + { + dice_results = QString::number(genRand(1, 6)); // Self-explanatory + } + else if (argc == 1) + { + bounded_faces = qBound(1, argv[0].toInt(), max_roll_faces); // faces, max faces + dice_results = QString::number(genRand(1, bounded_faces)); + } + else if (argc == 2) + { + bounded_faces = qBound(1, argv[0].toInt(), max_roll_faces); // 1, faces, max faces + bounded_amount = qBound(1, argv[1].toInt(), max_roll_amount); // 1, amount, max amount + + for (int i = 1; i <= bounded_amount ; i++) // Loop as multiple dices are thrown + { + QString dice_result = QString::number(genRand(1, bounded_faces)); + if (i == bounded_amount) + { + dice_results = dice_results.append(dice_result); + } + else + { + dice_results = dice_results.append(dice_result + ","); + } + } + } + // Switch to change message behaviour, isEmpty check or the entire server crashes due to an out of range issue in the QStringList + switch(Type) + { + case roll: + if (argv.isEmpty()) + { + sendServerMessageArea(sender_name + " rolled " + dice_results + " out of 6"); + } + else + { + sendServerMessageArea(sender_name + " rolled " + dice_results + " out of " + QString::number(bounded_faces)); + } + break; + case rollp: + if (argv.isEmpty()) + { + sendServerMessage(sender_name + " rolled " + dice_results + " out of 6"); + sendServerMessageArea((sender_name + " rolled in secret.")); + } + else + { + sendServerMessageArea(sender_name + " rolled " + dice_results + " out of " + QString::number(bounded_faces)); + sendServerMessageArea((sender_name + " rolled in secret.")); + } + break; + case rolla: + //Not implemented yet + default : break; + } +} diff --git a/src/server.cpp b/src/server.cpp index d0a038b..3d4b4f2 100644 --- a/src/server.cpp +++ b/src/server.cpp @@ -155,6 +155,16 @@ QString Server::getServerName() return server_name; } +quint32 Server::getDiceValue(QString value_type) +{ + QSettings settings("config/config.ini", QSettings::IniFormat); + + settings.beginGroup("Dice"); + int value = settings.value(value_type, "100").toUInt(); + + return value; +} + AOClient* Server::getClient(QString ipid) { for (AOClient* client : clients) { From 10072aa9fcad13411840d08ffc2a7262cb586958 Mon Sep 17 00:00:00 2001 From: Salanto Date: Wed, 3 Mar 2021 01:49:10 +0100 Subject: [PATCH 06/10] Corrected datatype in header and function --- include/server.h | 2 +- src/server.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/include/server.h b/include/server.h index 749e20a..d70ef34 100644 --- a/include/server.h +++ b/include/server.h @@ -50,7 +50,7 @@ class Server : public QObject { void broadcast(AOPacket packet, int area_index); void broadcast(AOPacket packet); QString getServerName(); - quint32 getDiceValue(QString value_type); + int getDiceValue(QString value_type); QVector clients; diff --git a/src/server.cpp b/src/server.cpp index 3d4b4f2..7889acc 100644 --- a/src/server.cpp +++ b/src/server.cpp @@ -155,7 +155,7 @@ QString Server::getServerName() return server_name; } -quint32 Server::getDiceValue(QString value_type) +int Server::getDiceValue(QString value_type) { QSettings settings("config/config.ini", QSettings::IniFormat); From 926772945911b4b7b631928f3eb81dc50c7755fa Mon Sep 17 00:00:00 2001 From: Salanto Date: Wed, 3 Mar 2021 17:26:44 +0100 Subject: [PATCH 07/10] Caplock enum, update variable name to reflect config name --- include/aoclient.h | 6 +++--- src/commands.cpp | 33 ++++++++++++++++----------------- 2 files changed, 19 insertions(+), 20 deletions(-) diff --git a/include/aoclient.h b/include/aoclient.h index 8451a16..a0ec439 100644 --- a/include/aoclient.h +++ b/include/aoclient.h @@ -83,9 +83,9 @@ class AOClient : public QObject { }; enum RollType { - roll, - rollp, - rolla + ROLL, + ROLLP, + ROLLA }; void handlePacket(AOPacket packet); diff --git a/src/commands.cpp b/src/commands.cpp index 0d07b2b..bd946e4 100644 --- a/src/commands.cpp +++ b/src/commands.cpp @@ -397,14 +397,13 @@ void AOClient::cmdFlip(int argc, QStringList argv) void AOClient::cmdRoll(int argc, QStringList argv) { - RollType Type = roll; - diceThrower(argc, argv, Type); + diceThrower(argc, argv, RollType::ROLL); } void AOClient::cmdRollP(int argc, QStringList argv) { - RollType Type = rollp; - diceThrower(argc, argv, Type); + + diceThrower(argc, argv, RollType::ROLLP); } QStringList AOClient::buildAreaList(int area_idx) @@ -443,9 +442,9 @@ int AOClient::genRand(int min, int max) void AOClient::diceThrower(int argc, QStringList argv, RollType Type) { QString sender_name = ooc_name; - int max_roll_faces = server->getDiceValue("max_value"); - int max_roll_amount = server->getDiceValue("max_dices"); - int bounded_faces; + int max_value = server->getDiceValue("max_value"); + int max_dice = server->getDiceValue("max_dice"); + int bounded_value; int bounded_amount; QString dice_results; @@ -455,17 +454,17 @@ void AOClient::diceThrower(int argc, QStringList argv, RollType Type) } else if (argc == 1) { - bounded_faces = qBound(1, argv[0].toInt(), max_roll_faces); // faces, max faces - dice_results = QString::number(genRand(1, bounded_faces)); + bounded_value = qBound(1, argv[0].toInt(), max_value); // faces, max faces + dice_results = QString::number(genRand(1, bounded_value)); } else if (argc == 2) { - bounded_faces = qBound(1, argv[0].toInt(), max_roll_faces); // 1, faces, max faces - bounded_amount = qBound(1, argv[1].toInt(), max_roll_amount); // 1, amount, max amount + bounded_value = qBound(1, argv[0].toInt(), max_value); // 1, faces, max faces + bounded_amount = qBound(1, argv[1].toInt(), max_dice); // 1, amount, max amount for (int i = 1; i <= bounded_amount ; i++) // Loop as multiple dices are thrown { - QString dice_result = QString::number(genRand(1, bounded_faces)); + QString dice_result = QString::number(genRand(1, bounded_value)); if (i == bounded_amount) { dice_results = dice_results.append(dice_result); @@ -479,17 +478,17 @@ void AOClient::diceThrower(int argc, QStringList argv, RollType Type) // Switch to change message behaviour, isEmpty check or the entire server crashes due to an out of range issue in the QStringList switch(Type) { - case roll: + case ROLL: if (argv.isEmpty()) { sendServerMessageArea(sender_name + " rolled " + dice_results + " out of 6"); } else { - sendServerMessageArea(sender_name + " rolled " + dice_results + " out of " + QString::number(bounded_faces)); + sendServerMessageArea(sender_name + " rolled " + dice_results + " out of " + QString::number(bounded_value)); } break; - case rollp: + case ROLLP: if (argv.isEmpty()) { sendServerMessage(sender_name + " rolled " + dice_results + " out of 6"); @@ -497,11 +496,11 @@ void AOClient::diceThrower(int argc, QStringList argv, RollType Type) } else { - sendServerMessageArea(sender_name + " rolled " + dice_results + " out of " + QString::number(bounded_faces)); + sendServerMessageArea(sender_name + " rolled " + dice_results + " out of " + QString::number(bounded_value)); sendServerMessageArea((sender_name + " rolled in secret.")); } break; - case rolla: + case ROLLA: //Not implemented yet default : break; } From 778153c94c91095708031b1a5b85460d188bd385 Mon Sep 17 00:00:00 2001 From: Salanto Date: Wed, 3 Mar 2021 17:30:51 +0100 Subject: [PATCH 08/10] Update sample config to include sample dice values --- bin/config_sample/config.ini | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/bin/config_sample/config.ini b/bin/config_sample/config.ini index 49d33de..a33f95d 100644 --- a/bin/config_sample/config.ini +++ b/bin/config_sample/config.ini @@ -13,4 +13,8 @@ webao_enable=true webao_port=27017 auth=simple modpass=changeme -logbuffer=500 \ No newline at end of file +logbuffer=500 + +[Dice] +max_value=100 +max_dice=100 \ No newline at end of file From f2fe5227d69a8ed3f62a6b702bb323cb4031001e Mon Sep 17 00:00:00 2001 From: Salanto Date: Wed, 3 Mar 2021 18:36:20 +0100 Subject: [PATCH 09/10] Formatting if-else, Minor Nitpick --- src/commands.cpp | 31 +++++++++++-------------------- src/server.cpp | 2 +- 2 files changed, 12 insertions(+), 21 deletions(-) diff --git a/src/commands.cpp b/src/commands.cpp index bd946e4..273ce18 100644 --- a/src/commands.cpp +++ b/src/commands.cpp @@ -439,7 +439,7 @@ int AOClient::genRand(int min, int max) #endif } -void AOClient::diceThrower(int argc, QStringList argv, RollType Type) +void AOClient::diceThrower(int argc, QStringList argv, RollType type) { QString sender_name = ooc_name; int max_value = server->getDiceValue("max_value"); @@ -448,54 +448,45 @@ void AOClient::diceThrower(int argc, QStringList argv, RollType Type) int bounded_amount; QString dice_results; - if (argc == 0) - { + if (argc == 0) { dice_results = QString::number(genRand(1, 6)); // Self-explanatory } - else if (argc == 1) - { + else if (argc == 1) { bounded_value = qBound(1, argv[0].toInt(), max_value); // faces, max faces dice_results = QString::number(genRand(1, bounded_value)); } - else if (argc == 2) - { + else if (argc == 2) { bounded_value = qBound(1, argv[0].toInt(), max_value); // 1, faces, max faces bounded_amount = qBound(1, argv[1].toInt(), max_dice); // 1, amount, max amount for (int i = 1; i <= bounded_amount ; i++) // Loop as multiple dices are thrown { QString dice_result = QString::number(genRand(1, bounded_value)); - if (i == bounded_amount) - { + if (i == bounded_amount) { dice_results = dice_results.append(dice_result); } - else - { + else { dice_results = dice_results.append(dice_result + ","); } } } // Switch to change message behaviour, isEmpty check or the entire server crashes due to an out of range issue in the QStringList - switch(Type) + switch(type) { case ROLL: - if (argv.isEmpty()) - { + if (argv.isEmpty()){ sendServerMessageArea(sender_name + " rolled " + dice_results + " out of 6"); } - else - { + else { sendServerMessageArea(sender_name + " rolled " + dice_results + " out of " + QString::number(bounded_value)); } break; case ROLLP: - if (argv.isEmpty()) - { + if (argv.isEmpty()){ sendServerMessage(sender_name + " rolled " + dice_results + " out of 6"); sendServerMessageArea((sender_name + " rolled in secret.")); } - else - { + else { sendServerMessageArea(sender_name + " rolled " + dice_results + " out of " + QString::number(bounded_value)); sendServerMessageArea((sender_name + " rolled in secret.")); } diff --git a/src/server.cpp b/src/server.cpp index 7889acc..b7b4408 100644 --- a/src/server.cpp +++ b/src/server.cpp @@ -161,7 +161,7 @@ int Server::getDiceValue(QString value_type) settings.beginGroup("Dice"); int value = settings.value(value_type, "100").toUInt(); - + settings.endGroup(); return value; } From c5685a8a3b802eb0db8fb7669642da9292c90f83 Mon Sep 17 00:00:00 2001 From: Salanto Date: Wed, 3 Mar 2021 18:50:06 +0100 Subject: [PATCH 10/10] Missed some --- src/commands.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/commands.cpp b/src/commands.cpp index 273ce18..adf2c60 100644 --- a/src/commands.cpp +++ b/src/commands.cpp @@ -474,7 +474,7 @@ void AOClient::diceThrower(int argc, QStringList argv, RollType type) switch(type) { case ROLL: - if (argv.isEmpty()){ + if (argv.isEmpty()) { sendServerMessageArea(sender_name + " rolled " + dice_results + " out of 6"); } else { @@ -482,7 +482,7 @@ void AOClient::diceThrower(int argc, QStringList argv, RollType type) } break; case ROLLP: - if (argv.isEmpty()){ + if (argv.isEmpty()) { sendServerMessage(sender_name + " rolled " + dice_results + " out of 6"); sendServerMessageArea((sender_name + " rolled in secret.")); }