Chronometre.cpp 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156
  1. /*
  2. * Chronometre.cpp
  3. * This file is part of ChronoCheckMate
  4. *
  5. * Copyright (C) 2010 - François Drouhard
  6. *
  7. * ChronoCheckMate is free software; you can redistribute it and/or modify
  8. * it under the terms of the GNU General Public License as published by
  9. * the Free Software Foundation; either version 2 of the License, or
  10. * (at your option) any later version.
  11. *
  12. * ChronoCheckMate is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  15. * GNU General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU General Public License
  18. * along with ChronoCheckMate; if not, write to the Free Software
  19. * Foundation, Inc., 51 Franklin St, Fifth Floor,
  20. * Boston, MA 02110-1301 USA
  21. */
  22. #include "Chronometre.h"
  23. #include <QTimer>
  24. #include <QtWidgets>
  25. #include <QLabel>
  26. #include <QObject>
  27. #include <QHBoxLayout>
  28. #include <QDebug>
  29. #include <QFont>
  30. #include <QTime>
  31. #include <QGroupBox>
  32. #include <QDebug>
  33. Chronometre::Chronometre (const QString & nom, Couleur unecouleur, QTime const& tempsDepart, QWidget * parent = nullptr) :
  34. QWidget (parent),
  35. couleur(unecouleur),
  36. temps(tempsDepart),
  37. msTempsDepart(tempsDepart)
  38. {
  39. QHBoxLayout *layoutPrincipal = new QHBoxLayout;
  40. labelPion = new QLabel;
  41. pion = new QPixmap();
  42. setCouleur(couleur);
  43. labelPion->setPixmap(*pion);
  44. groupBox = new QGroupBox(nom);
  45. groupBox->setFlat(false);
  46. groupBox->setFont(QFont(groupBox->font().family(), 15));
  47. QFont font("Arial" , 25, 75);
  48. ecranTemps = new QLabel(temps.toString("hh:mm:ss:zzz"));
  49. ecranTemps->setMinimumWidth(200);
  50. ecranTemps->setFont(font);
  51. ecranLayout = new QHBoxLayout;
  52. ecranLayout->addSpacing(40);
  53. ecranLayout->addStretch(1);
  54. ecranLayout->addWidget(ecranTemps, 0);
  55. ecranLayout->addStretch(1);
  56. ecranLayout->addSpacing(40);
  57. layoutPrincipal->addWidget(labelPion,0);
  58. layoutPrincipal->addWidget(groupBox,1);
  59. groupBox->setLayout (ecranLayout);
  60. setLayout(layoutPrincipal);
  61. timer = new QTimer (this);
  62. timer->setInterval (INTERVAL);
  63. QObject::connect (timer , &QTimer::timeout , this , &Chronometre::refresh);
  64. }
  65. void Chronometre::modifierNomJoueur(QString const& joueur) {
  66. groupBox->setTitle(joueur);
  67. }
  68. void Chronometre::definirTemps(QTime const& tempsDepart) {
  69. msTempsDepart = tempsDepart;
  70. }
  71. void Chronometre::echangerCouleur(Chronometre & chrono) {
  72. Couleur temp = couleur;
  73. setCouleur(chrono.couleur);
  74. chrono.setCouleur(temp);
  75. }
  76. void Chronometre::setCouleur (Couleur const& color) {
  77. couleur = color;
  78. QString stringCouleur;
  79. if (couleur == Blanc)
  80. stringCouleur = "white";
  81. else
  82. stringCouleur = "black";
  83. pion->load(QString (":/ressources/pawn_%1.svg").arg(stringCouleur));
  84. labelPion->setPixmap(*pion);
  85. }
  86. Couleur Chronometre::getCouleur() const {
  87. return couleur;
  88. }
  89. void Chronometre::refresh () {
  90. temps = temps.addMSecs(-INTERVAL);
  91. affichage ();
  92. if (temps <= QTime (0,0,0,0)) {
  93. emit fin();
  94. }
  95. }
  96. void Chronometre::start () {
  97. timer->start ();
  98. }
  99. void Chronometre::stop () {
  100. timer->stop();
  101. }
  102. void Chronometre::affichage () {
  103. QString chaineTemps = temps.toString("hh:mm:ss:zzz");
  104. ecranTemps->setText(chaineTemps);
  105. //qDebug() << "Taille : " << ecranTemps->width();
  106. }
  107. void Chronometre::reinit () {
  108. if (timer->isActive()) {
  109. timer->stop();
  110. }
  111. temps = msTempsDepart;
  112. affichage();
  113. }
  114. void Chronometre::basculer () {
  115. if (timer->isActive()) {
  116. stop();
  117. }
  118. else {
  119. start ();
  120. }
  121. }
  122. void Chronometre::basculer(Chronometre & Chrono) {
  123. basculer();
  124. Chrono.basculer();
  125. }
  126. QString Chronometre::operator+=(Chronometre const& joueur) const {
  127. if (temps <= QTime (0,0,0,0)) {
  128. return joueur.groupBox->title();
  129. } else if (joueur.temps <= QTime(0,0,0,0)) {
  130. return groupBox->title();
  131. }
  132. return "Nope";
  133. }