HistorieStatistik.cpp 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210
  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< SSDGesamtSpieler* >();
  16. gts = new Array< SSDGesamtTeam* >();
  17. rs = new Array< SSDRunde* >();
  18. runde = 0;
  19. tabelle = 0;
  20. fertig = 0;
  21. geladen = 0;
  22. geschlossen = 0;
  23. alpha = 0;
  24. sichtbar = 0;
  25. tickVal = 0;
  26. rend = 0;
  27. ref = 1;
  28. }
  29. // Destruktor
  30. HistorieStatistik::~HistorieStatistik()
  31. {
  32. if( schrift )
  33. schrift->release();
  34. if( !geladen )
  35. {
  36. gss->release();
  37. gts->release();
  38. rs->release();
  39. }
  40. else
  41. {
  42. int anz = gss->getEintragAnzahl();
  43. for( int i = 0; i < anz; i++ )
  44. {
  45. if( gss->hat( i ) )
  46. delete gss->get( i );
  47. }
  48. gss->release();
  49. anz = gts->getEintragAnzahl();
  50. for( int i = 0; i < anz; i++ )
  51. {
  52. if( gts->hat( i ) )
  53. delete gts->get( i );
  54. }
  55. gts->release();
  56. anz = rs->getEintragAnzahl();
  57. for( int i = 0; i < anz; i++ )
  58. {
  59. if( rs->hat( i ) )
  60. {
  61. int anz2 = rs->get( i )->spieler.getEintragAnzahl();
  62. for( int j = 0; j < anz2; j++ )
  63. {
  64. if( rs->get( i )->spieler.hat( j ) )
  65. delete rs->get( i )->spieler.get( j );
  66. }
  67. anz2 = rs->get( i )->teams.getEintragAnzahl();
  68. for( int j = 0; j < anz2; j++ )
  69. {
  70. if( rs->get( i )->teams.hat( j ) )
  71. delete rs->get( i )->teams.get( j );
  72. }
  73. delete rs->get( i );
  74. }
  75. }
  76. rs->release();
  77. }
  78. if( runde )
  79. runde->release();
  80. if( tabelle )
  81. tabelle->release();
  82. if( fertig )
  83. fertig->release();
  84. }
  85. // nicht constant
  86. void HistorieStatistik::setSchrift( Schrift *schrift )
  87. {
  88. if( this->schrift )
  89. this->schrift->release();
  90. this->schrift = schrift;
  91. }
  92. void HistorieStatistik::setBildschirm( Bildschirm *zScreen )
  93. {
  94. screen = zScreen;
  95. }
  96. void HistorieStatistik::ladeDaten( int spielId )
  97. {
  98. if( geladen )
  99. return;
  100. StatistikLeser *reader = new StatistikLeser( spielId );
  101. for( int i = 0; i < reader->getSpielerAnzahl(); i++ )
  102. gss->set( reader->getSSDGS( i ), i );
  103. for( int i = 0; i < reader->getTeamAnzahl(); i++ )
  104. gts->set( reader->getSSDGT( i ), i );
  105. for( int i = 0; i < reader->getRundenAnzahl(); i++ )
  106. rs->set( reader->getSSDR( i ), i );
  107. reader->release();
  108. tabelle = new StatistikTabelle( gss->getThis(), gts->getThis(), rs->getThis(), schrift, screen, 1 );
  109. runde = new StatistikRunde( schrift, rs->getThis(), 1 );
  110. fertig = initKnopf( 600, 390, 100, 20, schrift, Knopf::Style::Sichtbar, "Zurück" );
  111. geladen = 1;
  112. }
  113. void HistorieStatistik::setSichtbar( bool sichtbar )
  114. {
  115. this->sichtbar = sichtbar;
  116. }
  117. void HistorieStatistik::doMausEreignis( MausEreignis &me )
  118. {
  119. if( !geladen )
  120. return;
  121. tabelle->doMausEreignis( me );
  122. runde->doMausEreignis( me );
  123. bool vera = me.verarbeitet;
  124. fertig->doMausEreignis( me );
  125. if( !vera && me.verarbeitet && me.id == ME_RLinks )
  126. geschlossen = 1;
  127. }
  128. void HistorieStatistik::doTastaturEreignis( TastaturEreignis &te )
  129. {
  130. }
  131. bool HistorieStatistik::tick( double tickVal )
  132. {
  133. if( !geladen )
  134. return 0;
  135. runde->setRunde( tabelle->getRunde() );
  136. rend |= tabelle->tick( tickVal );
  137. rend |= runde->tick( tickVal );
  138. rend |= fertig->tick( tickVal );
  139. this->tickVal += tickVal * 150;
  140. int val = ( int )this->tickVal;
  141. this->tickVal -= val;
  142. if( val )
  143. {
  144. if( sichtbar && alpha != 255 )
  145. {
  146. if( alpha + val > 255 )
  147. alpha = 255;
  148. else
  149. alpha += val;
  150. rend = 1;
  151. }
  152. if( !sichtbar && alpha )
  153. {
  154. if( alpha - val < 0 )
  155. alpha = 0;
  156. else
  157. alpha -= val;
  158. rend = 1;
  159. }
  160. }
  161. bool ret = rend;
  162. rend = 0;
  163. return ret;
  164. }
  165. void HistorieStatistik::render( Bild &zRObj )
  166. {
  167. if( !geladen )
  168. return;
  169. zRObj.setAlpha( alpha );
  170. tabelle->render( zRObj );
  171. runde->render( zRObj );
  172. fertig->render( zRObj );
  173. zRObj.releaseAlpha();
  174. }
  175. // constant
  176. bool HistorieStatistik::istNochSichtbar() const
  177. {
  178. return alpha != 0 || sichtbar;
  179. }
  180. bool HistorieStatistik::wurdeGeschlossen() const
  181. {
  182. return geschlossen;
  183. }
  184. // Reference Counting
  185. AccountHistorieStatistikV *HistorieStatistik::getThis()
  186. {
  187. ref++;
  188. return this;
  189. }
  190. AccountHistorieStatistikV *HistorieStatistik::release()
  191. {
  192. ref--;
  193. if( !ref )
  194. delete this;
  195. return 0;
  196. }