Account for older server settings

This commit is contained in:
Salanto 2021-04-18 13:42:08 +02:00
parent 558dcc3378
commit 73cd8f1eb9
2 changed files with 16 additions and 6 deletions

View File

@ -1562,16 +1562,17 @@ class AOClient : public QObject {
* @brief Saves a testimony recording to the servers storage.
*
* @details Saves a titled text file which contains the edited packets into a text file.
* The filename will always be lowercase.
*
*/
void cmdSaveTestimony(int argc, QStringList argv);
/**
* @brief Loads testimony for the testimony replay
* @brief Loads testimony for the testimony replay. Argument is the testimony name.
*
* @details Loads a titled text file which contains the edited packets to be loaded into the QVector.
* Unlike manually adding statements during testifying there is no size validation as the only
* way to create files is saving them.
* Validates the size of the testimony to ensure the entire testimony can be replayed.
* Testimony name will always be converted to lowercase.
*
*/
void cmdLoadTestimony(int argc, QStringList argv);

View File

@ -232,11 +232,20 @@ void AOClient::cmdLoadTestimony(int argc, QStringList argv)
}
clearTestimony();
int testimony_lines = 0;
QTextStream in(&file);
while (!in.atEnd()) {
if (testimony_lines <= server->maximum_statements) {
QString line = in.readLine();
QStringList packet = line.split("#");
area->testimony.append(packet);
testimony_lines = testimony_lines + 1;
}
else {
sendServerMessage("Testimony too large to be loaded.");
clearTestimony();
return;
}
}
sendServerMessage("Testimony loaded successfully. Use /examine to start playback.");
}