atrooney-online-2/src/aoclocklabel.cpp
TrickyLeifa c9f52b7223 Ported to CMake, ...
* Ported the project to CMake
  * Android and Mac support dropped for the time
being.
  * Tests, BASS and Discord-RPC are now options
* Restructured and reformated the project.
  * Merged `include` and `src`
  * Renamed `resource` to `data`
  * Renamed various files
  * External libraries headers are no longer included in `src`
  * Replaced header guards with #pragma once
  * Multiple refactors (keywords, headers)
  * Added Qt6 compatibility
* Removed various unused functions and headers
* Reworked AOPacket
  * When content is passed to AOPacket, it should be ensured that the content is already decoded.
  * Encoding/decoding are now static methods.
* Fixed various memory leaks
* Removed animation code for AOImage
  * AOImage is always using static images
* Simplified ChatLogPiece
2024-05-15 00:04:16 +02:00

78 lines
1.6 KiB
C++

#include "aoclocklabel.h"
AOClockLabel::AOClockLabel(QWidget *parent)
: QLabel(parent)
{}
void AOClockLabel::start()
{
m_timer.start(1000 / 60, this);
}
void AOClockLabel::start(qint64 msecs)
{
this->set(msecs);
this->start();
}
void AOClockLabel::set(qint64 msecs, bool update_text)
{
m_target_time = QDateTime::currentDateTime().addMSecs(msecs);
if (update_text)
{
if (QDateTime::currentDateTime() >= m_target_time)
{
this->setText("00:00:00.000");
}
else
{
qint64 ms_left = QDateTime::currentDateTime().msecsTo(m_target_time);
QTime timeleft = QTime(0, 0).addMSecs(ms_left % (1000 * 3600 * 24));
QString timestring = timeleft.toString("hh:mm:ss.zzz");
this->setText(timestring);
}
}
}
void AOClockLabel::pause()
{
m_timer.stop();
}
void AOClockLabel::stop()
{
this->setText("00:00:00.000");
m_timer.stop();
}
void AOClockLabel::skip(qint64 msecs)
{
qint64 ms_left = QDateTime::currentDateTime().msecsTo(m_target_time);
this->set(ms_left - msecs, true);
}
bool AOClockLabel::active()
{
return m_timer.isActive();
}
void AOClockLabel::timerEvent(QTimerEvent *event)
{
if (event->timerId() == m_timer.timerId())
{
if (QDateTime::currentDateTime() >= m_target_time)
{
this->stop();
return;
}
qint64 ms_left = QDateTime::currentDateTime().msecsTo(m_target_time);
QTime timeleft = QTime(0, 0).addMSecs(ms_left % (1000 * 3600 * 24));
QString timestring = timeleft.toString("hh:mm:ss.zzz");
this->setText(timestring);
}
else
{
QWidget::timerEvent(event);
}
}