HistorieStatistik.cpp 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177
  1. #include "HistorieStatistik.h"
  2. #include <Knopf.h>
  3. #include <MausEreignis.h>
  4. #include <Bildschirm.h>
  5. #include "../Initialisierung/Initialisierung.h"
  6. #include <InitDatei.h>
  7. #include <DateiSystem.h>
  8. //#include "StatistikLeser.h"
  9. // Inhalt der HistorieStatistik Klasse aus HistorieStatistik.h
  10. // Konstruktor
  11. HistorieStatistik::HistorieStatistik()
  12. {
  13. schrift = 0;
  14. screen = 0;
  15. gss = new Array< SSDSpieler* >();
  16. gts = new Array< SSDTeam* >();
  17. tabelle = 0;
  18. fertig = 0;
  19. geladen = 0;
  20. geschlossen = 0;
  21. alpha = 0;
  22. sichtbar = 0;
  23. tickVal = 0;
  24. rend = 0;
  25. ref = 1;
  26. }
  27. // Destruktor
  28. HistorieStatistik::~HistorieStatistik()
  29. {
  30. if( schrift )
  31. schrift->release();
  32. if( !geladen )
  33. {
  34. gss->release();
  35. gts->release();
  36. }
  37. else
  38. {
  39. int anz = gss->getEintragAnzahl();
  40. for( int i = 0; i < anz; i++ )
  41. {
  42. if( gss->hat( i ) )
  43. delete gss->get( i );
  44. }
  45. gss->release();
  46. anz = gts->getEintragAnzahl();
  47. for( int i = 0; i < anz; i++ )
  48. {
  49. if( gts->hat( i ) )
  50. delete gts->get( i );
  51. }
  52. gts->release();
  53. }
  54. if( tabelle )
  55. tabelle->release();
  56. if( fertig )
  57. fertig->release();
  58. }
  59. // nicht constant
  60. void HistorieStatistik::setSchrift( Schrift *schrift )
  61. {
  62. if( this->schrift )
  63. this->schrift->release();
  64. this->schrift = schrift;
  65. }
  66. void HistorieStatistik::setBildschirm( Bildschirm *zScreen )
  67. {
  68. screen = zScreen;
  69. }
  70. void HistorieStatistik::ladeDaten( int spielId )
  71. {
  72. if( geladen )
  73. return;
  74. //StatistikLeser *reader = new StatistikLeser( spielId );
  75. //for( int i = 0; i < reader->getSpielerAnzahl(); i++ )
  76. // gss->set( reader->getSSDGS( i ), i );
  77. //for( int i = 0; i < reader->getTeamAnzahl(); i++ )
  78. // gts->set( reader->getSSDGT( i ), i );
  79. //reader->release();
  80. tabelle = new StatistikTabelle( gss->getThis(), gts->getThis(), schrift, screen, 1 );
  81. fertig = initKnopf( 600, 390, 100, 20, schrift, Knopf::Style::Sichtbar, "Zurück" );
  82. geladen = 1;
  83. }
  84. void HistorieStatistik::setSichtbar( bool sichtbar )
  85. {
  86. this->sichtbar = sichtbar;
  87. }
  88. void HistorieStatistik::doMausEreignis( MausEreignis &me )
  89. {
  90. if( !geladen )
  91. return;
  92. bool vera = me.verarbeitet;
  93. fertig->doMausEreignis( me );
  94. if( !vera && me.verarbeitet && me.id == ME_RLinks )
  95. geschlossen = 1;
  96. tabelle->doMausEreignis( me );
  97. }
  98. void HistorieStatistik::doTastaturEreignis( TastaturEreignis &te )
  99. {
  100. }
  101. bool HistorieStatistik::tick( double tickVal )
  102. {
  103. if( !geladen )
  104. return 0;
  105. rend |= tabelle->tick( tickVal );
  106. rend |= fertig->tick( tickVal );
  107. this->tickVal += tickVal * 150;
  108. int val = ( int )this->tickVal;
  109. this->tickVal -= val;
  110. if( val )
  111. {
  112. if( sichtbar && alpha != 255 )
  113. {
  114. if( alpha + val > 255 )
  115. alpha = 255;
  116. else
  117. alpha += val;
  118. rend = 1;
  119. }
  120. if( !sichtbar && alpha )
  121. {
  122. if( alpha - val < 0 )
  123. alpha = 0;
  124. else
  125. alpha -= val;
  126. rend = 1;
  127. }
  128. }
  129. bool ret = rend;
  130. rend = 0;
  131. return ret;
  132. }
  133. void HistorieStatistik::render( Bild &zRObj )
  134. {
  135. if( !geladen )
  136. return;
  137. zRObj.setAlpha( alpha );
  138. tabelle->render( zRObj );
  139. fertig->render( zRObj );
  140. zRObj.releaseAlpha();
  141. }
  142. // constant
  143. bool HistorieStatistik::istNochSichtbar() const
  144. {
  145. return alpha != 0 || sichtbar;
  146. }
  147. bool HistorieStatistik::wurdeGeschlossen() const
  148. {
  149. return geschlossen;
  150. }
  151. // Reference Counting
  152. AccountHistorieStatistikV *HistorieStatistik::getThis()
  153. {
  154. ref++;
  155. return this;
  156. }
  157. AccountHistorieStatistikV *HistorieStatistik::release()
  158. {
  159. ref--;
  160. if( !ref )
  161. delete this;
  162. return 0;
  163. }