clean up timer command, fix crash
This commit is contained in:
parent
036c2907a1
commit
2a2171dc42
@ -1414,12 +1414,12 @@ class AOClient : public QObject {
|
|||||||
* @brief Returns a textual representation of the time left in an area's Timer.
|
* @brief Returns a textual representation of the time left in an area's Timer.
|
||||||
*
|
*
|
||||||
* @param area_idx The ID of the area whose timer to grab.
|
* @param area_idx The ID of the area whose timer to grab.
|
||||||
* @param timer The pointer to the area's timer.
|
* @param timer_idx The ID of the timer to grab
|
||||||
*
|
*
|
||||||
* @return A textual representation of the time left over on the Timer,
|
* @return A textual representation of the time left over on the Timer,
|
||||||
* or `"Timer is inactive"` if the timer wasn't started.
|
* or `"Timer is inactive"` if the timer wasn't started.
|
||||||
*/
|
*/
|
||||||
QString getAreaTimer(int area_idx, QTimer* timer);
|
QString getAreaTimer(int area_idx, int timer_idx);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @brief Generates a tsuserver3-style area list to be displayed to the user in the out-of-character chat.
|
* @brief Generates a tsuserver3-style area list to be displayed to the user in the out-of-character chat.
|
||||||
|
@ -664,20 +664,19 @@ void AOClient::cmdTimer(int argc, QStringList argv)
|
|||||||
{
|
{
|
||||||
AreaData* area = server->areas[current_area];
|
AreaData* area = server->areas[current_area];
|
||||||
|
|
||||||
|
// Called without arguments
|
||||||
|
// Shows a brief of all timers
|
||||||
if (argc == 0) {
|
if (argc == 0) {
|
||||||
QStringList timers;
|
QStringList timers;
|
||||||
timers.append("Currently active timers:");
|
timers.append("Currently active timers:");
|
||||||
QTimer* global_timer = server->timer;
|
for (int i = 0; i <= 4; i++) {
|
||||||
if (global_timer->isActive()) {
|
timers.append(getAreaTimer(area->index, i));
|
||||||
QTime current_time = QTime(0,0).addMSecs(global_timer->remainingTime());
|
|
||||||
timers.append("Global timer is at " + current_time.toString("hh:mm:ss.zzz"));
|
|
||||||
}
|
|
||||||
for (QTimer* timer : area->timers) {
|
|
||||||
timers.append(getAreaTimer(area->index, timer));
|
|
||||||
}
|
}
|
||||||
sendServerMessage(timers.join("\n"));
|
sendServerMessage(timers.join("\n"));
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Called with more than one argument
|
||||||
bool ok;
|
bool ok;
|
||||||
int timer_id = argv[0].toInt(&ok);
|
int timer_id = argv[0].toInt(&ok);
|
||||||
if (!ok || timer_id < 0 || timer_id > 4) {
|
if (!ok || timer_id < 0 || timer_id > 4) {
|
||||||
@ -685,22 +684,15 @@ void AOClient::cmdTimer(int argc, QStringList argv)
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Called with one argument
|
||||||
|
// Shows the status of one timer
|
||||||
if (argc == 1) {
|
if (argc == 1) {
|
||||||
if (timer_id == 0) {
|
sendServerMessage(getAreaTimer(area->index, timer_id));
|
||||||
QTimer* global_timer = server->timer;
|
return;
|
||||||
if (global_timer->isActive()) {
|
|
||||||
QTime current_time = QTime(0, 0, 0, global_timer->remainingTime());
|
|
||||||
sendServerMessage("Global timer is at " + current_time.toString("hh:mm:ss.zzz"));
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
QTimer* timer = area->timers[timer_id - 1];
|
|
||||||
sendServerMessage(getAreaTimer(area->index, timer));
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Called with more than one argument
|
||||||
|
// Updates the state of a timer
|
||||||
QTimer* requested_timer;
|
QTimer* requested_timer;
|
||||||
if (timer_id == 0) {
|
if (timer_id == 0) {
|
||||||
if (!checkAuth(ACLFlags.value("GLOBAL_TIMER"))) {
|
if (!checkAuth(ACLFlags.value("GLOBAL_TIMER"))) {
|
||||||
@ -1397,15 +1389,26 @@ void AOClient::diceThrower(int argc, QStringList argv, RollType type)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
QString AOClient::getAreaTimer(int area_idx, QTimer* timer)
|
QString AOClient::getAreaTimer(int area_idx, int timer_idx)
|
||||||
{
|
{
|
||||||
AreaData* area = server->areas[area_idx];
|
AreaData* area = server->areas[area_idx];
|
||||||
|
QTimer* timer;
|
||||||
|
QString timer_name = (timer_idx == 0) ? "Global timer" : "Timer " + QString::number(timer_idx);
|
||||||
|
|
||||||
|
if (timer_idx == 0)
|
||||||
|
timer = server->timer;
|
||||||
|
else if (timer_idx > 0 && timer_idx <= 4)
|
||||||
|
timer = area->timers[timer_idx - 1];
|
||||||
|
else
|
||||||
|
return "Invalid timer ID.";
|
||||||
|
|
||||||
if (timer->isActive()) {
|
if (timer->isActive()) {
|
||||||
QTime current_time = QTime(0,0).addMSecs(timer->remainingTime());
|
QTime current_time = QTime(0,0).addMSecs(timer->remainingTime());
|
||||||
return "Timer " + QString::number(area->timers.indexOf(timer) + 1) + " is at " + current_time.toString("hh:mm:ss.zzz");
|
|
||||||
|
return timer_name + " is at " + current_time.toString("hh:mm:ss.zzz");
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
return "Timer " + QString::number(area->timers.indexOf(timer) + 1) + " is inactive.";
|
return timer_name + " is inactive.";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user