statuswidget.cpp 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238
  1. #include "statuswidget.h"
  2. #include "ui_statuswidget.h"
  3. #include "widgets/mainwindow.h"
  4. #include "models/patchdownloader.h"
  5. #include "models/lotrodatmanager.h"
  6. #include "constants.h"
  7. #include <QDesktopServices>
  8. #include <QUrl>
  9. #include <QDebug>
  10. #include <QMessageBox>
  11. StatusWidget::StatusWidget(QSettings* settings, PatchDownloader* patch_downloader, LotroDatManager* lotro_dat_manager, QWidget *parent) :
  12. QWidget(parent), app_settings(settings), patch_updater(patch_downloader), lotro_manager(lotro_dat_manager),
  13. ui(new Ui::StatusWidget)
  14. {
  15. ui->setupUi(this);
  16. ui->server_status_widget->setupUpdater(settings->value("Network/game_servers_status", "http://translate.lotros.ru/servers.txt").toUrl(),
  17. settings->value("Network/game_servers_message", "http://translate.lotros.ru/profmessage.txt").toUrl());
  18. last_progress_update_time.start();
  19. connect(patch_updater, &PatchDownloader::checkForUpdatesStarted, this, &StatusWidget::onPatchDownloaderStarted, Qt::QueuedConnection);
  20. connect(patch_updater, &PatchDownloader::progressChanged, this, &StatusWidget::onPatchDownloaderProgressChanged, Qt::QueuedConnection);
  21. connect(patch_updater, &PatchDownloader::checkForUpdatesFinished, this, &StatusWidget::onPatchDownloaderFinished, Qt::QueuedConnection);
  22. connect(patch_updater, &PatchDownloader::changePatchStatus, this, &StatusWidget::updatePatchStatus);
  23. connect(ui->weekly_code_widget, &WeeklyCodeWidget::showCompletedTooltip, this, &StatusWidget::setToolTipToWeeklyCodeComplete);
  24. connect(ui->weekly_code_widget, &WeeklyCodeWidget::showHelpTooltip, this, &StatusWidget::setToolTipToWeeklyCodeHelp);
  25. connect(ui->weekly_code_widget, &WeeklyCodeWidget::showNoTooltip, this, &StatusWidget::resetToolTip);
  26. connect(ui->news_list, &NewsListWidget::showHelpToolTip, this, &StatusWidget::setToolTipToNewsHelp);
  27. connect(ui->news_list, &NewsListWidget::showNoToolTip, this, &StatusWidget::resetToolTip);
  28. connect(ui->server_status_widget, &ServerStatusWidget::updateServersTooltip, ui->server_status_tooltip, &QLabel::setText);
  29. connect(ui->server_status_widget, &ServerStatusWidget::showServersTooltip, this, &StatusWidget::setToolTipToServersStatus);
  30. connect(ui->server_status_widget, &ServerStatusWidget::showNoTooltip, this, &StatusWidget::resetToolTip);
  31. tooltip_effects[ui->news_tooltip->objectName()] = new QGraphicsOpacityEffect(ui->news_tooltip);
  32. tooltip_effects[ui->weekly_code_tooltip_1->objectName()] = new QGraphicsOpacityEffect(ui->weekly_code_tooltip_1);
  33. tooltip_effects[ui->weekly_code_tooltip_2->objectName()] = new QGraphicsOpacityEffect(ui->weekly_code_tooltip_2);
  34. tooltip_effects[ui->patches_status->objectName()] = new QGraphicsOpacityEffect(ui->patches_status);
  35. tooltip_effects[ui->server_status_tooltip->objectName()] = new QGraphicsOpacityEffect(ui->server_status_tooltip);
  36. tooltip_animations[ui->news_tooltip->objectName()] = new QPropertyAnimation(tooltip_effects[ui->news_tooltip->objectName()], "opacity");
  37. tooltip_animations[ui->weekly_code_tooltip_1->objectName()] = new QPropertyAnimation(tooltip_effects[ui->weekly_code_tooltip_1->objectName()], "opacity");
  38. tooltip_animations[ui->weekly_code_tooltip_2->objectName()] = new QPropertyAnimation(tooltip_effects[ui->weekly_code_tooltip_2->objectName()], "opacity");
  39. tooltip_animations[ui->patches_status->objectName()] = new QPropertyAnimation(tooltip_effects[ui->patches_status->objectName()], "opacity");
  40. tooltip_animations[ui->server_status_tooltip->objectName()] = new QPropertyAnimation(tooltip_effects[ui->server_status_tooltip->objectName()], "opacity");
  41. ui->news_tooltip->setGraphicsEffect(tooltip_effects[ui->news_tooltip->objectName()]);
  42. ui->weekly_code_tooltip_1->setGraphicsEffect(tooltip_effects[ui->weekly_code_tooltip_1->objectName()]);
  43. ui->weekly_code_tooltip_2->setGraphicsEffect(tooltip_effects[ui->weekly_code_tooltip_2->objectName()]);
  44. ui->patches_status->setGraphicsEffect(tooltip_effects[ui->patches_status->objectName()]);
  45. ui->server_status_tooltip->setGraphicsEffect(tooltip_effects[ui->server_status_tooltip->objectName()]);
  46. foreach (QPropertyAnimation* animation, tooltip_animations) {
  47. animation->setDuration(350);
  48. animation->setStartValue(0);
  49. animation->setEndValue(1);
  50. animation->setDirection(QAbstractAnimation::Forward);
  51. }
  52. foreach (QGraphicsOpacityEffect* effect, tooltip_effects) {
  53. effect->setOpacity(0);
  54. }
  55. active_tooltip = nullptr;
  56. resetToolTip();
  57. }
  58. StatusWidget::~StatusWidget()
  59. {
  60. delete ui;
  61. }
  62. void StatusWidget::updateFontsSizes()
  63. {
  64. QFont pt10_font = QFont(ui->news_label->font());
  65. pt10_font.setPixelSize(pixels_in_10_pt);
  66. QFont pt9_font = QFont(ui->progress_label->font());
  67. pt9_font.setPixelSize(pixels_in_9_pt);
  68. QFont pt11_font = QFont(ui->game_button->font());
  69. pt11_font.setPixelSize(pixels_in_11_pt);
  70. QFont pt8_font = QFont(ui->images_label->font());
  71. pt8_font.setPixelSize(pixels_in_8_pt);
  72. ui->progress_label->setFont(crimson_10pt);
  73. ui->game_button->setFont(trajan_11pt);
  74. ui->news_label->setFont(trajan_10pt);
  75. ui->images_label->setFont(crimson_11pt);
  76. ui->images_status->setFont(crimson_11pt);
  77. ui->sounds_label->setFont(crimson_11pt);
  78. ui->sounds_status->setFont(crimson_11pt);
  79. ui->texts_label->setFont(crimson_11pt);
  80. ui->texts_status->setFont(crimson_11pt);
  81. ui->videos_label->setFont(crimson_11pt);
  82. ui->videos_status->setFont(crimson_11pt);
  83. ui->news_tooltip->setFont(garamond_11pt);
  84. ui->weekly_code_tooltip_1->setFont(garamond_11pt);
  85. ui->weekly_code_tooltip_2->setFont(garamond_11pt);
  86. ui->server_status_tooltip->setFont(garamond_11pt);
  87. }
  88. void StatusWidget::resizeEvent(QResizeEvent *event)
  89. {
  90. double coefficient = window_width / default_window_width;
  91. ui->game_button->move(QPoint(820, 460) * coefficient);
  92. ui->game_button->resize(QSize(150, 60) * coefficient);
  93. ui->progressBar->move(QPoint(320, 480) * coefficient);
  94. ui->progressBar->resize(QSize(470, 40) * coefficient);
  95. ui->progress_label->move(QPoint(330, 390) * coefficient);
  96. ui->progress_label->resize(QSize(380, 90) * coefficient);
  97. ui->news_label->move(QPoint(45, 33)* coefficient);
  98. ui->news_label->resize(QSize(180, 21) * coefficient);
  99. ui->news_scroll_area->move(QPoint(40, 75) * coefficient);
  100. ui->news_scroll_area->resize(QSize(240, 440) * coefficient);
  101. ui->server_status_widget->move(QPoint(820, 90) * coefficient);
  102. ui->server_status_widget->resize(QSize(155, 320) * coefficient);
  103. ui->weekly_code_widget->move(QPoint(810, 13) * coefficient);
  104. ui->weekly_code_widget->resize(QSize(173, 57) * coefficient);
  105. ui->galadriel_widget->move(QPoint(320, 20) * coefficient);
  106. ui->galadriel_widget->resize(QSize(531, 461) * coefficient);
  107. ui->news_tooltip->move(QPoint(38, 13) * coefficient);
  108. ui->news_tooltip->resize(QSize(365, 114) * coefficient);
  109. ui->weekly_code_tooltip_1->move(QPoint(38, 13) * coefficient);
  110. ui->weekly_code_tooltip_1->resize(QSize(365, 114) * coefficient);
  111. ui->weekly_code_tooltip_2->move(QPoint(38, 13) * coefficient);
  112. ui->weekly_code_tooltip_2->resize(QSize(365, 114) * coefficient);
  113. ui->server_status_tooltip->move(QPoint(38, 13) * coefficient);
  114. ui->server_status_tooltip->resize(QSize(365, 114) * coefficient);
  115. ui->patches_status->move(QPoint(38, 13) * coefficient);
  116. ui->patches_status->resize(QSize(365, 114) * coefficient);
  117. updateFontsSizes();
  118. }
  119. void StatusWidget::onPatchDownloaderStarted()
  120. {
  121. qDebug() << "Status widget received DownloadStarted signal!";
  122. ui->game_button->setDisabled(true);
  123. ui->progress_label->setText("Проверка обновлений...");
  124. ui->progressBar->setValue(0);
  125. }
  126. void StatusWidget::onPatchDownloaderFinished()
  127. {
  128. ui->progress_label->setText("Все патчи загружены!");
  129. ui->progressBar->setValue(100);
  130. ui->game_button->setDisabled(false);
  131. }
  132. void StatusWidget::onPatchDownloaderProgressChanged(QList<PatchDownloadData> patches_data)
  133. {
  134. if (last_progress_update_time.elapsed() < 200) {
  135. return;
  136. } else {
  137. last_progress_update_time.restart();
  138. }
  139. foreach (PatchDownloadData data, patches_data) {
  140. if (data.patch_name == "general") {
  141. ui->progress_label->setText("Скачивание переводов " + data.download_speed_formatted + ".\nЗагружено "
  142. + Downloader::getSizeFormatted(data.bytesDownloaded) + " из " + Downloader::getSizeFormatted(data.bytesTotal)
  143. + " (" + QString::number(double(data.bytesDownloaded) * 100.0 / double(data.bytesTotal), 'f', 1) + "%) "
  144. + "\nОставшееся время: " + data.elapsed_time_formatted);
  145. ui->progressBar->setValue(data.bytesDownloaded * 100 / data.bytesTotal);
  146. } else {
  147. updatePatchStatus(data.patch_name, "Скачивание " + QString::number(double(data.bytesDownloaded) * 100.0 / double(data.bytesTotal), 'f', 1) + "% (" + data.download_speed_formatted + ")");
  148. }
  149. }
  150. }
  151. void StatusWidget::updatePatchStatus(QString patch_name, QString status)
  152. {
  153. QString status_label_name = patch_name + "s_status";
  154. QLabel* status_label = findChild<QLabel*>(status_label_name);
  155. if (!status_label)
  156. return;
  157. status_label->setText(status);
  158. }
  159. void StatusWidget::on_game_button_clicked()
  160. {
  161. MainWindow* window = qobject_cast<MainWindow*>(parentWidget()->parentWidget()->parentWidget());
  162. window->showChooseVersionDialog();
  163. }
  164. void StatusWidget::setToolTipToWeeklyCodeHelp()
  165. {
  166. fadeBetweenToolTips(ui->weekly_code_tooltip_1);
  167. }
  168. void StatusWidget::setToolTipToWeeklyCodeComplete()
  169. {
  170. fadeBetweenToolTips(ui->weekly_code_tooltip_2);
  171. }
  172. void StatusWidget::setToolTipToNewsHelp()
  173. {
  174. fadeBetweenToolTips(ui->news_tooltip);
  175. }
  176. void StatusWidget::setToolTipToServersStatus()
  177. {
  178. fadeBetweenToolTips(ui->server_status_tooltip);
  179. }
  180. void StatusWidget::resetToolTip()
  181. {
  182. fadeBetweenToolTips(ui->patches_status);
  183. }
  184. void StatusWidget::fadeBetweenToolTips(QWidget* next_tooltip)
  185. {
  186. if (active_tooltip) {
  187. QPropertyAnimation* active_tooltip_anim = tooltip_animations[active_tooltip->objectName()];
  188. active_tooltip_anim->setDirection(QAbstractAnimation::Backward);
  189. if (active_tooltip_anim->state() == QAbstractAnimation::Stopped)
  190. active_tooltip_anim->start();
  191. }
  192. QPropertyAnimation* next_active_tooltip_anim = tooltip_animations[next_tooltip->objectName()];
  193. next_active_tooltip_anim->setDirection(QAbstractAnimation::Forward);
  194. if (next_active_tooltip_anim->state() == QAbstractAnimation::Stopped)
  195. next_active_tooltip_anim->start();
  196. active_tooltip = next_tooltip;
  197. }