Chronometre.cpp 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172
  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, Placement placement, QWidget * parent) :
  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", 45, QFont::Black);
  48. ecranTemps = new QLabel();
  49. ecranTemps->setMinimumWidth(200);
  50. ecranTemps->setFont(font);
  51. ecranLayout = new QHBoxLayout;
  52. //ecranLayout->addSpacing(10);
  53. //ecranLayout->addStretch(1);
  54. ecranLayout->addWidget(ecranTemps, 0, Qt::AlignHCenter);
  55. //ecranLayout->addStretch(1);
  56. //ecranLayout->addSpacing(10);
  57. if (placement == Placement::Gauche)
  58. {
  59. layoutPrincipal->addWidget(labelPion,0);
  60. layoutPrincipal->addWidget(groupBox,1);
  61. } else
  62. {
  63. layoutPrincipal->addWidget(groupBox,1);
  64. layoutPrincipal->addWidget(labelPion,0);
  65. }
  66. groupBox->setLayout (ecranLayout);
  67. setLayout(layoutPrincipal);
  68. timer = new QTimer (this);
  69. timer->setInterval (INTERVAL);
  70. QObject::connect (timer , &QTimer::timeout , this , &Chronometre::refresh);
  71. }
  72. void Chronometre::modifierNomJoueur(QString const& joueur) {
  73. groupBox->setTitle(joueur);
  74. }
  75. void Chronometre::definirTemps(QTime const& tempsDepart) {
  76. msTempsDepart = tempsDepart;
  77. }
  78. void Chronometre::echangerCouleur(Chronometre & chrono) {
  79. Couleur temp = couleur;
  80. setCouleur(chrono.couleur);
  81. chrono.setCouleur(temp);
  82. }
  83. void Chronometre::setCouleur (Couleur const& color) {
  84. couleur = color;
  85. QString stringCouleur;
  86. if (couleur == Blanc)
  87. stringCouleur = "white";
  88. else
  89. stringCouleur = "black";
  90. pion->load(QString (":/ressources/pawn_%1.svg").arg(stringCouleur));
  91. labelPion->setPixmap(*pion);
  92. }
  93. Couleur Chronometre::getCouleur() const {
  94. return couleur;
  95. }
  96. void Chronometre::refresh () {
  97. temps = temps.addMSecs(-INTERVAL);
  98. affichage ();
  99. if (temps <= QTime (0,0,0,0)) {
  100. emit fin();
  101. }
  102. }
  103. void Chronometre::start () {
  104. timer->start ();
  105. }
  106. void Chronometre::stop () {
  107. timer->stop();
  108. }
  109. void Chronometre::affichage () {
  110. QString chaineTemps = temps.toString("hh:mm:ss");
  111. ecranTemps->setText(chaineTemps);
  112. //qDebug() << "Taille : " << ecranTemps->width();
  113. }
  114. void Chronometre::reinit () {
  115. if (timer->isActive()) {
  116. timer->stop();
  117. }
  118. temps = msTempsDepart;
  119. affichage();
  120. }
  121. void Chronometre::basculer () {
  122. if (timer->isActive()) {
  123. stop();
  124. emit is_paused(this);
  125. }
  126. else {
  127. start ();
  128. }
  129. }
  130. void Chronometre::basculer(Chronometre & Chrono) {
  131. basculer();
  132. Chrono.basculer();
  133. }
  134. // TODO pas clair cet opérateur
  135. QString Chronometre::operator+=(Chronometre const& joueur) const {
  136. if (temps <= QTime (0,0,0,0)) {
  137. return joueur.groupBox->title();
  138. } else if (joueur.temps <= QTime(0,0,0,0)) {
  139. return groupBox->title();
  140. }
  141. return "Nope";
  142. }
  143. /**
  144. * @brief Ajouter du temps, prévu pour plus que des secondes
  145. */
  146. void Chronometre::addTime(QTime const& temps_ajout)
  147. {
  148. temps = temps.addSecs(temps_ajout.second() + temps_ajout.minute()*60 + temps_ajout.hour()*3600 );
  149. }