Attempted a smarter approach at handling negative numbers
This commit is contained in:
parent
11066acdb3
commit
c696e7d525
@ -82,6 +82,12 @@ class AOClient : public QObject {
|
|||||||
LOCKED
|
LOCKED
|
||||||
};
|
};
|
||||||
|
|
||||||
|
enum RollType {
|
||||||
|
roll,
|
||||||
|
rollp,
|
||||||
|
rolla
|
||||||
|
};
|
||||||
|
|
||||||
void handlePacket(AOPacket packet);
|
void handlePacket(AOPacket packet);
|
||||||
void handleCommand(QString command, int argc, QStringList argv);
|
void handleCommand(QString command, int argc, QStringList argv);
|
||||||
void changeArea(int new_area);
|
void changeArea(int new_area);
|
||||||
@ -182,6 +188,7 @@ class AOClient : public QObject {
|
|||||||
// Command helper functions
|
// Command helper functions
|
||||||
QStringList buildAreaList(int area_idx);
|
QStringList buildAreaList(int area_idx);
|
||||||
int genRand(int min, int max);
|
int genRand(int min, int max);
|
||||||
|
void diceThrower(int argc, QStringList argv, RollType Type);
|
||||||
|
|
||||||
// Command function global variables
|
// Command function global variables
|
||||||
bool change_auth_started = false;
|
bool change_auth_started = false;
|
||||||
|
@ -50,6 +50,7 @@ class Server : public QObject {
|
|||||||
void broadcast(AOPacket packet, int area_index);
|
void broadcast(AOPacket packet, int area_index);
|
||||||
void broadcast(AOPacket packet);
|
void broadcast(AOPacket packet);
|
||||||
QString getServerName();
|
QString getServerName();
|
||||||
|
quint32 getDiceValue(QString value_type);
|
||||||
|
|
||||||
QVector<AOClient*> clients;
|
QVector<AOClient*> clients;
|
||||||
|
|
||||||
|
170
src/commands.cpp
170
src/commands.cpp
@ -397,109 +397,14 @@ void AOClient::cmdFlip(int argc, QStringList argv)
|
|||||||
|
|
||||||
void AOClient::cmdRoll(int argc, QStringList argv)
|
void AOClient::cmdRoll(int argc, QStringList argv)
|
||||||
{
|
{
|
||||||
int max_roll_amount = 20;
|
RollType Type = roll;
|
||||||
int max_roll_faces = 11037;
|
diceThrower(argc, argv, Type);
|
||||||
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.");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void AOClient::cmdRollP(int argc, QStringList argv)
|
void AOClient::cmdRollP(int argc, QStringList argv)
|
||||||
{
|
{
|
||||||
int max_roll_amount = 20;
|
RollType Type = rollp;
|
||||||
int max_roll_faces = 11037;
|
diceThrower(argc, argv, Type);
|
||||||
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.");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
QStringList AOClient::buildAreaList(int area_idx)
|
QStringList AOClient::buildAreaList(int area_idx)
|
||||||
@ -534,3 +439,70 @@ int AOClient::genRand(int min, int max)
|
|||||||
return random_number;
|
return random_number;
|
||||||
#endif
|
#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;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
@ -155,6 +155,16 @@ QString Server::getServerName()
|
|||||||
return server_name;
|
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)
|
AOClient* Server::getClient(QString ipid)
|
||||||
{
|
{
|
||||||
for (AOClient* client : clients) {
|
for (AOClient* client : clients) {
|
||||||
|
Loading…
Reference in New Issue
Block a user