Allow = and >[number] testimony traversal options. (#393)

* Allow = and >[number] testimony traversal options.

Automatically loops back to 1 if the user inputs a value over the statement size. Could instead deny sending that message entirely with an OOC error.

* Adjust reg exp to capture <[Number], remove duplicate reg check
This commit is contained in:
Wiso 2025-02-04 18:28:26 +02:00 committed by GitHub
parent 1c13786214
commit f332defa52
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -434,6 +434,15 @@ AOPacket *PacketMS::validateIcPacket(AOClient &client) const
client.sendServerMessage("First statement reached.");
}
}
if (l_args[4] == "=") {
auto l_statement = area->jumpToStatement(area->statement());
l_args = l_statement.first;
l_progress = l_statement.second;
client.m_pos = l_args[5];
client.sendServerMessageArea(client_name + " repeated the current statement.");
}
QRegularExpressionMatch match = isTestimonyJumpCommand(client.decodeMessage(l_args[4])); // Get rid of that pesky encoding, then do the fun part
if (match.hasMatch()) {
client.m_pos = "wit";
@ -473,6 +482,8 @@ QRegularExpressionMatch PacketMS::isTestimonyJumpCommand(QString message) const
// even if it hurts my heart
//
// and my grey matter
QRegularExpression jump("(?<arrow>>)(?<int>[0,1,2,3,4,5,6,7,8,9]+)");
//
// get well soon
QRegularExpression jump("(?<arrow>>|<)(?<int>\\d+)");
return jump.match(message);
}