Account for older server settings
This commit is contained in:
parent
558dcc3378
commit
73cd8f1eb9
@ -1562,16 +1562,17 @@ class AOClient : public QObject {
|
|||||||
* @brief Saves a testimony recording to the servers storage.
|
* @brief Saves a testimony recording to the servers storage.
|
||||||
*
|
*
|
||||||
* @details Saves a titled text file which contains the edited packets into a text file.
|
* @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);
|
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.
|
* @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
|
* Validates the size of the testimony to ensure the entire testimony can be replayed.
|
||||||
* way to create files is saving them.
|
* Testimony name will always be converted to lowercase.
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
void cmdLoadTestimony(int argc, QStringList argv);
|
void cmdLoadTestimony(int argc, QStringList argv);
|
||||||
|
@ -232,11 +232,20 @@ void AOClient::cmdLoadTestimony(int argc, QStringList argv)
|
|||||||
}
|
}
|
||||||
|
|
||||||
clearTestimony();
|
clearTestimony();
|
||||||
|
int testimony_lines = 0;
|
||||||
QTextStream in(&file);
|
QTextStream in(&file);
|
||||||
while (!in.atEnd()) {
|
while (!in.atEnd()) {
|
||||||
QString line = in.readLine();
|
if (testimony_lines <= server->maximum_statements) {
|
||||||
QStringList packet = line.split("#");
|
QString line = in.readLine();
|
||||||
area->testimony.append(packet);
|
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.");
|
sendServerMessage("Testimony loaded successfully. Use /examine to start playback.");
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user