NachrichtenListe.cpp 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816
  1. #include "NachrichtenListe.h"
  2. #include <Punkt.h>
  3. #include <MausEreignis.h>
  4. #include <Bild.h>
  5. #include "../../Global/Initialisierung.h"
  6. #include <Scroll.h>
  7. #include "../../Global/Variablen.h"
  8. #include <Rahmen.h>
  9. #include <DateiSystem.h>
  10. #include <KSGTDatei.h>
  11. #include <ToolTip.h>
  12. #include <GSLDateiV.h>
  13. typedef GSL::GSLDateiV *( *GetGSLDatei )( );
  14. // Inhalt der Nachricht Klasse aus NachrichtListe.h
  15. // Konstruktor
  16. Nachricht::Nachricht( Schrift *zSchrift, Text *titel, Text *nachricht, Text *positiv, Text *negativ, char type, void *param )
  17. {
  18. rahmen = new LRahmen();
  19. rahmen->setRamenBreite( 1 );
  20. rahmen->setFarbe( 0xFFFFFFFF );
  21. this->titel = initTextFeld( 1, 1, 208, 20, zSchrift, TextFeld::Style::Text | TextFeld::Style::Center, titel->getText() );
  22. titel = titel->release();
  23. close = initKnopf( 208, 1, 20, 20, 0, 0, "" );
  24. close->setStyle( Knopf::Style::Sichtbar | Knopf::Style::Erlaubt | Knopf::Style::Hintergrund | Knopf::Style::HBild | Knopf::Style::HAlpha | Knopf::Style::KlickBuffer );
  25. Bild *closeBild = bilder->get( "chat.ltdb/entfernen.png" );
  26. if( !closeBild )
  27. {
  28. LTDBDatei *datei = new LTDBDatei();
  29. datei->setDatei( new Text( "data/client/bilder/chat.ltdb" ) );
  30. datei->leseDaten( 0 );
  31. closeBild = datei->laden( 0, new Text( "entfernen.png" ) );
  32. datei->release();
  33. bilder->add( "chat.ltdb/entfernen.png", closeBild->getThis() );
  34. }
  35. close->setHintergrundBildZ( closeBild );
  36. initToolTip( close, "Nachricht ignorieren.", zSchrift->getThis(), hauptScreen );
  37. Text *result = new Text( nachricht->getText() );
  38. int län = nachricht->getLength();
  39. char *txt = nachricht->getText();
  40. int x = 0;
  41. int y = 0;
  42. zSchrift->lock();
  43. zSchrift->setSchriftSize( 12 );
  44. Alphabet *tmp = zSchrift->getAlphabet( 12 );
  45. int zeilenHöhe = tmp->getZeilenHeight() + tmp->getZeilenAbstand();
  46. int lastPos = -1;
  47. for( int i = 0; i < län; i++ )
  48. {
  49. char c = txt[ i ];
  50. if( c == ' ' )
  51. {
  52. lastPos = i;
  53. x += 6;
  54. continue;
  55. }
  56. if( c == '\n' )
  57. {
  58. x = 0;
  59. y += zeilenHöhe;
  60. lastPos = -1;
  61. continue;
  62. }
  63. Buchstabe *b = tmp->getBuchstabe( (unsigned)c );
  64. if( b )
  65. {
  66. x += b->getBreite();
  67. if( x > 228 && lastPos > -1 )
  68. {
  69. result->ersetzen( lastPos, lastPos + 1, "\n" );
  70. x = 0;
  71. y += zeilenHöhe;
  72. i = lastPos;
  73. lastPos = -1;
  74. }
  75. b = b->release();
  76. }
  77. }
  78. y += zeilenHöhe;
  79. tmp = tmp->release();
  80. zSchrift->unlock();
  81. nachricht = nachricht->release();
  82. text = initTextFeld( 1, 22, 228, y, zSchrift, TextFeld::Style::Text, result->getText() );
  83. result = result->release();
  84. if( positiv )
  85. {
  86. this->positiv = initKnopf( 10, 20 + y, 100, 20, zSchrift, Knopf::Style::Sichtbar, positiv->getText() );
  87. positiv = positiv->release();
  88. }
  89. else
  90. this->positiv = 0;
  91. if( negativ )
  92. {
  93. this->negativ = initKnopf( 120, 20 + y, 100, 20, zSchrift, Knopf::Style::Sichtbar, negativ->getText() );
  94. negativ = negativ->release();
  95. }
  96. else
  97. this->negativ = 0;
  98. typ = type;
  99. this->param = param;
  100. maxHöhe = 50 + y;
  101. ref = 1;
  102. animation = 1;
  103. ausgewählt = 0;
  104. tickVal = 0;
  105. rend = 0;
  106. höhe = 0;
  107. }
  108. // Destruktor
  109. Nachricht::~Nachricht()
  110. {
  111. switch( typ )
  112. {
  113. case 1:
  114. delete ( (int*)param );
  115. break;
  116. case 2:
  117. delete ( (int*)param );
  118. break;
  119. case 3:
  120. delete ( (SpielEinladungParam*)param );
  121. break;
  122. case 4:
  123. delete ( (ChatroomEinladungParam*)param );
  124. break;
  125. }
  126. titel = titel->release();
  127. text = text->release();
  128. close = close->release();
  129. if( positiv )
  130. positiv = positiv->release();
  131. if( negativ )
  132. negativ = negativ->release();
  133. rahmen = rahmen->release();
  134. }
  135. // nicht constant
  136. void Nachricht::entfernen()
  137. {
  138. animation = 3;
  139. }
  140. void Nachricht::setAusgewählt( bool ausw )
  141. {
  142. if( animation != 3 )
  143. {
  144. ausgewählt = ausw;
  145. if( ausw )
  146. animation = 2;
  147. else
  148. animation = 1;
  149. }
  150. }
  151. void Nachricht::doMausEreignis( MausEreignis &me )
  152. {
  153. if( animation != 3 )
  154. {
  155. bool tmp = 0;
  156. if( me.my > höhe || !ausgewählt )
  157. {
  158. tmp = me.verarbeitet;
  159. me.verarbeitet = 1;
  160. }
  161. char aktion = 0;
  162. if( positiv )
  163. positiv->doMausEreignis( me );
  164. aktion = me.verarbeitet ? 1 : 0;
  165. if( negativ )
  166. negativ->doMausEreignis( me );
  167. if( !aktion )
  168. aktion = me.verarbeitet ? 2 : 0;
  169. close->doMausEreignis( me );
  170. if( !aktion )
  171. aktion = me.verarbeitet ? 3 : 0;
  172. if( me.my > höhe || !ausgewählt )
  173. {
  174. me.verarbeitet = tmp;
  175. return;
  176. }
  177. if( me.id != ME_RLinks )
  178. return;
  179. if( aktion )
  180. animation = 3;
  181. switch( aktion )
  182. {
  183. case 1:
  184. // positiv
  185. switch( typ )
  186. {
  187. case 1: // freund entfernen
  188. chatKlient->freundschaftBeenden( *( (int*)param ) );
  189. break;
  190. case 2: // freund einladung
  191. chatKlient->freundesAnfrageBeantworten( *( (int*)param ), 1 );
  192. break;
  193. case 3: // spiel einladung
  194. if( 1 )
  195. {
  196. int karteId = infoKlient->getGruppenKarteId( ( (SpielEinladungParam*)param )->gruppeId );
  197. int spielArt = infoKlient->getSpielId( karteId );
  198. KSGTDatei *dgt = new KSGTDatei( "data/dg.ksgt" );
  199. dgt->laden();
  200. bool sak = 0;
  201. int dgSId = infoKlient->getDateiGruppeIdVonSpiel( spielArt );
  202. bool sgf = 0;
  203. for( int i = 0; i < dgt->getZeilenAnzahl(); i++ )
  204. {
  205. if( dgt->zFeld( i, 0 ) && TextZuInt( dgt->zFeld( i, 0 )->getText(), 10 ) == dgSId )
  206. {
  207. sgf = 1;
  208. int lv = dgt->zFeld( i, 2 ) ? TextZuInt( dgt->zFeld( i, 2 )->getText(), 10 ) : 0;
  209. int ov = infoKlient->getSpielVersion( spielArt );
  210. if( lv == ov )
  211. {
  212. sak = 1;
  213. break;
  214. }
  215. }
  216. }
  217. dgt->release();
  218. if( !sak )
  219. {
  220. anmeldungKlient->gruppeEinladungAblehnen( ( (SpielEinladungParam*)param )->gruppeId );
  221. nachLogin->zNachrichtenListe()->addNachricht( new Text( "Fehler" ), new Text( "Deine Spiel Version ist nicht aktuell. Sie wird beim nächsten Spielstart aktualisiert." ), new Text( "Ok" ), 0, NachrichtType::nachricht, 0 );
  222. if( !sgf )
  223. {
  224. Text *pfad = infoKlient->getDateiGruppePfad( dgSId );
  225. Text *idT = new Text();
  226. idT->append( dgSId );
  227. if( pfad )
  228. {
  229. KSGTDatei *dg = new KSGTDatei( "data/dg.ksgt" );
  230. dg->laden();
  231. RCArray< Text > *zeile = new RCArray< Text >();
  232. zeile->add( idT );
  233. zeile->add( pfad );
  234. zeile->add( new Text( "0" ) );
  235. zeile->add( new Text( "0" ) );
  236. dg->addZeile( 4, zeile );
  237. zeile->release();
  238. dg->speichern();
  239. dg->release();
  240. }
  241. else
  242. idT->release();
  243. }
  244. }
  245. else
  246. {
  247. MausEreignis me;
  248. me.verarbeitet = 0;
  249. me.id = ME_RLinks;
  250. nachLogin->zTitelLeiste()->druckSpielen( me );
  251. Array< int > *spieler = new Array< int >();
  252. int anzahl = 0;
  253. if( anmeldungKlient->gruppeBetreten( ( (SpielEinladungParam*)param )->gruppeId, spieler, &anzahl ) )
  254. {
  255. nachLogin->zSpielenFenster()->gruppeBetreten( ( (SpielEinladungParam*)param )->gruppeId );
  256. for( int i = 0; i < anzahl; i++ )
  257. nachLogin->zSpielenFenster()->spielerBetrittGruppe( ( (SpielEinladungParam*)param )->gruppeId, spieler->hat( i ) ? spieler->get( i ) : 0 );
  258. }
  259. else
  260. nachLogin->zNachrichtenListe()->addNachricht( new Text( "Fehler" ), new Text( anmeldungKlient->getLetzterFehler() ), new Text( "Ok" ), 0, NachrichtType::nachricht, 0 );
  261. }
  262. }
  263. break;
  264. case 4: // chatroom einladung
  265. nachLogin->zChatLeiste()->addChat( 0, ( (ChatroomEinladungParam*)param )->chatroomId );
  266. chatKlient->chatroomBetreten( ( (ChatroomEinladungParam*)param )->chatroomId );
  267. break;
  268. case 5: // logout
  269. ::aktion = 3;
  270. break;
  271. case 6: // close
  272. nachLogin->zChatLeiste()->removeAll();
  273. loginKlient->logout();
  274. PostQuitMessage( 0 );
  275. break;
  276. }
  277. break;
  278. case 2:
  279. // schließn
  280. case 3:
  281. // negativ
  282. switch( typ )
  283. {
  284. case 2:
  285. chatKlient->freundesAnfrageBeantworten( *( (int*)param ), 0 );
  286. break;
  287. case 3: // spiel einladung
  288. anmeldungKlient->gruppeEinladungAblehnen( ( (SpielEinladungParam*)param )->gruppeId );
  289. break;
  290. case 4:
  291. chatKlient->chatroomEinladungAblehnen( ( (ChatroomEinladungParam*)param )->vonAccount, ( (ChatroomEinladungParam*)param )->chatroomId );
  292. break;
  293. }
  294. break;
  295. }
  296. }
  297. }
  298. bool Nachricht::tick( double tickVal )
  299. {
  300. rend |= close->tick( tickVal );
  301. rend |= positiv ? positiv->tick( tickVal ) : 0;
  302. rend |= negativ ? negativ->tick( tickVal ) : 0;
  303. rend |= text->tick( tickVal );
  304. if( !animation )
  305. {
  306. bool ret = rend;
  307. rend = 0;
  308. return ret;
  309. }
  310. this->tickVal += tickVal * 100;
  311. int val = ( int )this->tickVal;
  312. if( val < 1 )
  313. {
  314. bool ret = rend;
  315. rend = 0;
  316. return ret;
  317. }
  318. if( val > 4 )
  319. val = 4;
  320. this->tickVal -= val;
  321. switch( animation )
  322. {
  323. case 1:
  324. if( höhe != 20 )
  325. {
  326. if( höhe > 20 )
  327. {
  328. höhe -= val;
  329. if( höhe < 20 )
  330. höhe = 20;
  331. }
  332. else
  333. {
  334. höhe += val;
  335. if( höhe > 20 )
  336. höhe = 20;
  337. }
  338. rend = 1;
  339. }
  340. else
  341. animation = 0;
  342. break;
  343. case 2:
  344. if( höhe != maxHöhe )
  345. {
  346. höhe += val;
  347. if( höhe > maxHöhe )
  348. höhe = maxHöhe;
  349. rend = 1;
  350. }
  351. else
  352. animation = 0;
  353. break;
  354. case 3:
  355. höhe -= val;
  356. if( höhe <= 0 )
  357. {
  358. nachLogin->zNachrichtenListe()->removeNachricht( this ); // delete this
  359. return 1;
  360. }
  361. rend = 1;
  362. break;
  363. }
  364. bool ret = rend;
  365. rend = 0;
  366. return ret;
  367. }
  368. void Nachricht::render( int yPos, Bild &zRObj )
  369. {
  370. int y = yPos;
  371. int br = 228;
  372. int hö = höhe;
  373. if( !zRObj.setDrawOptions( 0, y, br, hö ) )
  374. return;
  375. rahmen->setSize( br, hö );
  376. rahmen->render( zRObj );
  377. int rbr = rahmen->getRBreite();
  378. if( !zRObj.setDrawOptions( rbr, rbr, br - rbr * 2, hö - rbr * 2 ) )
  379. {
  380. zRObj.releaseDrawOptions();
  381. return;
  382. }
  383. titel->render( zRObj );
  384. text->render( zRObj );
  385. close->render( zRObj );
  386. if( positiv )
  387. positiv->render( zRObj );
  388. if( negativ )
  389. negativ->render( zRObj );
  390. zRObj.releaseDrawOptions();
  391. zRObj.releaseDrawOptions();
  392. }
  393. // contant
  394. bool Nachricht::istAusgewählt() const
  395. {
  396. return ausgewählt;
  397. }
  398. int Nachricht::getHeight() const
  399. {
  400. return höhe;
  401. }
  402. // Reference Counting
  403. Nachricht *Nachricht::getThis()
  404. {
  405. ref++;
  406. return this;
  407. }
  408. Nachricht *Nachricht::release()
  409. {
  410. ref--;
  411. if( !ref )
  412. delete this;
  413. return 0;
  414. }
  415. // Inhalt der NachrichtenListeObj Klasse aus NachrichtListe.h
  416. // Konstruktor
  417. NachrichtenListeObj::NachrichtenListeObj( Schrift *zSchrift )
  418. : Zeichnung()
  419. {
  420. members = new RCArray< Nachricht >();
  421. schrift = zSchrift->getThis();
  422. vsb = new VScrollBar();
  423. vsb->setKlickScroll( 10 );
  424. bildschirmGröße = BildschirmGröße();
  425. vsb->update( 0, bildschirmGröße.y - 122 );
  426. anzahl = 0;
  427. gr = Punkt( 250, bildschirmGröße.y - 122 );
  428. ref = 1;
  429. }
  430. // Destruktor
  431. NachrichtenListeObj::~NachrichtenListeObj()
  432. {
  433. schrift = schrift->release();
  434. vsb = (VScrollBar*)vsb->release();
  435. members = members->release();
  436. }
  437. // nicht constant
  438. void NachrichtenListeObj::addNachricht( Text *titel, Text *nachricht, Text *positiv, Text *negativ, char type, void *param )
  439. {
  440. Nachricht *tmp = new Nachricht( schrift, titel, nachricht, positiv, negativ, type, param );
  441. members->add( tmp, anzahl );
  442. anzahl++;
  443. rend = 1;
  444. }
  445. void NachrichtenListeObj::removeNachricht( Nachricht *zNachricht )
  446. {
  447. for( int i = 0; i < anzahl; i++ )
  448. {
  449. if( members->z( i ) == zNachricht )
  450. {
  451. members->remove( i );
  452. anzahl--;
  453. rend = 1;
  454. break;
  455. }
  456. }
  457. }
  458. void NachrichtenListeObj::removeAll()
  459. {
  460. lockZeichnung();
  461. members->leeren();
  462. anzahl = 0;
  463. rend = 1;
  464. unlockZeichnung();
  465. }
  466. bool NachrichtenListeObj::tick( double tickVal )
  467. {
  468. lockZeichnung();
  469. rend |= vsb->getRend();
  470. rend |= nachLogin->zNachrichtenListe()->tick( tickVal );
  471. for( int i = 0; i < anzahl; i++ )
  472. {
  473. Nachricht *tmp = members->z( i );
  474. if( tmp )
  475. rend |= tmp->tick( tickVal );
  476. }
  477. unlockZeichnung();
  478. bool ret = rend;
  479. rend = 0;
  480. return ret;
  481. }
  482. void NachrichtenListeObj::doMausEreignis( MausEreignis &me )
  483. {
  484. lockZeichnung();
  485. int my = me.my;
  486. me.my -= 20;
  487. if( me.mx <= 229 && me.mx > 0 && me.my >= 0 )
  488. {
  489. me.my += vsb->getScroll();
  490. for( int i = 0; i < anzahl; i++ )
  491. {
  492. Nachricht *tmp = members->z( i );
  493. if( tmp )
  494. {
  495. if( me.my > 0 && me.my < tmp->getHeight() )
  496. tmp->setAusgewählt( 1 );
  497. else
  498. tmp->setAusgewählt( 0 );
  499. tmp->doMausEreignis( me );
  500. me.my -= tmp->getHeight();
  501. }
  502. }
  503. me.my -= vsb->getScroll();
  504. }
  505. else
  506. {
  507. me.my += vsb->getScroll();
  508. for( int i = 0; i < anzahl; i++ )
  509. {
  510. Nachricht *tmp = members->z( i );
  511. if( tmp )
  512. {
  513. tmp->setAusgewählt( 0 );
  514. tmp->doMausEreignis( me );
  515. me.my -= tmp->getHeight();
  516. }
  517. }
  518. me.my -= vsb->getScroll();
  519. }
  520. me.my = my;
  521. vsb->doMausMessage( 229, 20, 20, bildschirmGröße.y - 122, me );
  522. unlockZeichnung();
  523. }
  524. void NachrichtenListeObj::render( Bild &zrObj )
  525. {
  526. lockZeichnung();
  527. int x = pos.x;
  528. int y = pos.y;
  529. int br = gr.x;
  530. int hö = gr.y;
  531. if( !zrObj.setDrawOptions( x, y, br, hö ) )
  532. {
  533. unlockZeichnung();
  534. return;
  535. }
  536. int höhe = 0;
  537. for( int i = 0; i < anzahl; i++ )
  538. {
  539. Nachricht *tmp = members->z( i );
  540. tmp->render( höhe - ( vsb ? vsb->getScroll() : 0 ), zrObj );
  541. höhe += tmp->getHeight();
  542. }
  543. if( vsb )
  544. {
  545. vsb->update( höhe, bildschirmGröße.y - 122 );
  546. vsb->render( 229, 0, 20, bildschirmGröße.y - 122, zrObj );
  547. }
  548. zrObj.releaseDrawOptions();
  549. unlockZeichnung();
  550. }
  551. // contant
  552. // Reference Counting
  553. NachrichtenListeObj *NachrichtenListeObj::getThis()
  554. {
  555. ref++;
  556. return this;
  557. }
  558. NachrichtenListeObj *NachrichtenListeObj::release()
  559. {
  560. ref--;
  561. if( !ref )
  562. delete this;
  563. return 0;
  564. }
  565. // Inhalt der NachrichtenListe Klasse aus NachrichtListe.h
  566. // Konstruktor
  567. NachrichtenListe::NachrichtenListe( Schrift *zSchrift, Fenster *zNachLoginFenster )
  568. {
  569. minimierenBild = bilder->get( "chat.ltdb/minimieren.png" );
  570. if( !minimierenBild )
  571. {
  572. LTDBDatei *datei = new LTDBDatei();
  573. datei->setDatei( new Text( "data/client/bilder/chat.ltdb" ) );
  574. datei->leseDaten( 0 );
  575. minimierenBild = datei->laden( 0, new Text( "minimieren.png" ) );
  576. datei->release();
  577. bilder->add( "chat.ltdb/minimieren.png", minimierenBild->getThis() );
  578. }
  579. maximierenBild = bilder->get( "chat.ltdb/maximieren.png" );
  580. if( !maximierenBild )
  581. {
  582. LTDBDatei *datei = new LTDBDatei();
  583. datei->setDatei( new Text( "data/client/bilder/chat.ltdb" ) );
  584. datei->leseDaten( 0 );
  585. maximierenBild = datei->laden( 0, new Text( "maximieren.png" ) );
  586. datei->release();
  587. bilder->add( "chat.ltdb/maximieren.png", maximierenBild->getThis() );
  588. }
  589. bildschirmGröße = BildschirmGröße();
  590. fenster = initFenster( bildschirmGröße.x - 21, 100, 250, 22, zSchrift, Fenster::Style::Sichtbar | Fenster::Style::Erlaubt | Fenster::Style::Rahmen | Fenster::Style::BodyHintergrund, "" );
  591. fenster->setKBgFarbe( 0xFF000000 );
  592. überschrift = initTextFeld( 1, 1, 248, 20, zSchrift, TextFeld::Style::Text | TextFeld::Style::Center | TextFeld::Style::Sichtbar, "Nachrichten" );
  593. überschrift->setSchriftSize( 15 );
  594. fenster->addMember( überschrift );
  595. minMax = initKnopf( 1, 1, 20, 20, 0, 0, "" );
  596. minMax->setStyle( Knopf::Style::Sichtbar | Knopf::Style::Erlaubt | Knopf::Style::Hintergrund | Knopf::Style::HBild | Knopf::Style::HAlpha | Knopf::Style::KlickBuffer );
  597. minMax->setMausEreignisParameter( this );
  598. minMax->setMausEreignis( NachrichtenListeMinMaxME );
  599. minMax->setHintergrundBildZ( minimierenBild->getThis() );
  600. initToolTip( minMax, "Nachrichten Leiste minimieren.", zSchrift->getThis(), hauptScreen );
  601. fenster->addMember( minMax );
  602. nachrichtenListe = new NachrichtenListeObj( zSchrift );
  603. nachrichtenListe->setPosition( 1, 21 );
  604. nachrichtenListe->setSize( 248, bildschirmGröße.y - 122 );
  605. fenster->addMember( nachrichtenListe );
  606. zNachLoginFenster->addMember( fenster );
  607. tickVal = 0;
  608. animation = 1;
  609. rend = 0;
  610. msgSound = 0;
  611. errSound = 0;
  612. HMODULE dll = dllDateien->ladeDLL( "GSL.dll", "data/bin/GSL.dll" );
  613. if( dll )
  614. {
  615. GetGSLDatei getGSLDatei = (GetGSLDatei)GetProcAddress( dll, "getGSLDatei" );
  616. if( getGSLDatei )
  617. {
  618. GSL::GSLDateiV *sDat = getGSLDatei();
  619. sDat->setDatei( "data/sounds/popup.gsl" );
  620. sDat->leseDaten();
  621. msgSound = sDat->getSound( "info.wav" );
  622. errSound = sDat->getSound( "error.wav" );
  623. sDat->release();
  624. if( msgSound )
  625. msgSound->setVolume( 0xFFFF, 0xFFFF );
  626. if( errSound )
  627. errSound->setVolume( 0xFFFF, 0xFFFF );
  628. }
  629. if( !msgSound && !errSound )
  630. dllDateien->releaseDLL( "GSL.dll" );
  631. }
  632. ref = 1;
  633. }
  634. // Destruktor
  635. NachrichtenListe::~NachrichtenListe()
  636. {
  637. if( msgSound || errSound )
  638. {
  639. if( msgSound )
  640. {
  641. msgSound->stopSound();
  642. msgSound->release();
  643. }
  644. if( errSound )
  645. {
  646. errSound->stopSound();
  647. errSound->release();
  648. }
  649. dllDateien->releaseDLL( "GSL.dll" );
  650. }
  651. überschrift = überschrift->release();
  652. fenster = fenster->release();
  653. minMax = minMax->release();
  654. nachrichtenListe = nachrichtenListe->release();
  655. minimierenBild = minimierenBild->release();
  656. maximierenBild = maximierenBild->release();
  657. }
  658. // nicht constant
  659. void NachrichtenListe::addNachricht( Text *titel, Text *nachricht, Text *positiv, Text *negativ, char type, void *param )
  660. {
  661. if( titel && titel->hat( "Fehler" ) && errSound )
  662. errSound->playSound();
  663. else if( msgSound )
  664. msgSound->playSound();
  665. nachrichtenListe->addNachricht( titel, nachricht, positiv, negativ, type, param );
  666. }
  667. void NachrichtenListe::removeNachricht( Nachricht *zNachricht )
  668. {
  669. nachrichtenListe->removeNachricht( zNachricht );
  670. }
  671. void NachrichtenListe::removeAll()
  672. {
  673. nachrichtenListe->removeAll();
  674. }
  675. bool NachrichtenListe::druckMinMax( MausEreignis &me )
  676. {
  677. if( me.id == ME_RLinks )
  678. {
  679. if( minMax->zHintergrundBild() == minimierenBild )
  680. {
  681. animation = 2;
  682. minMax->setHintergrundBildZ( maximierenBild->getThis() );
  683. minMax->zToolTip()->setText( "Nachrichten Leiste maximieren." );
  684. }
  685. else
  686. {
  687. animation = 1;
  688. minMax->setHintergrundBildZ( minimierenBild->getThis() );
  689. minMax->zToolTip()->setText( "Nachrichten Leiste minimieren." );
  690. }
  691. }
  692. return 1;
  693. }
  694. bool NachrichtenListe::tick( double tickVal )
  695. {
  696. if( !animation )
  697. {
  698. bool ret = rend;
  699. rend = 0;
  700. return ret;
  701. }
  702. this->tickVal += tickVal * 400;
  703. int val = ( int )this->tickVal;
  704. if( val < 1 )
  705. {
  706. bool ret = rend;
  707. rend = 0;
  708. return ret;
  709. }
  710. if( val > 14 )
  711. val = 14;
  712. this->tickVal -= val;
  713. switch( animation )
  714. {
  715. case 1: // maximieren
  716. if( fenster->getX() > bildschirmGröße.x - 250 )
  717. {
  718. fenster->setPosition( fenster->getX() - val, fenster->getY() );
  719. minMax->setPosition( minMax->getX() + val, minMax->getY() );
  720. if( fenster->getX() < bildschirmGröße.x - 250 )
  721. {
  722. fenster->setPosition( bildschirmGröße.x - 250, fenster->getY() );
  723. minMax->setPosition( 229, minMax->getY() );
  724. }
  725. rend = 1;
  726. }
  727. else if( fenster->getHeight() < bildschirmGröße.y - 100 )
  728. {
  729. fenster->setSize( fenster->getBreite(), fenster->getHeight() + val );
  730. if( fenster->getHeight() >= bildschirmGröße.y - 100 )
  731. {
  732. fenster->setSize( fenster->getBreite(), bildschirmGröße.y - 100 );
  733. animation = 0;
  734. }
  735. rend = 1;
  736. }
  737. break;
  738. case 2: // minimieren
  739. if( fenster->getHeight() > 22 )
  740. {
  741. fenster->setSize( fenster->getBreite(), fenster->getHeight() - val );
  742. if( fenster->getHeight() < 22 )
  743. fenster->setSize( fenster->getBreite(), 22 );
  744. rend = 1;
  745. }
  746. else if( fenster->getX() < bildschirmGröße.x - 21 )
  747. {
  748. minMax->setPosition( minMax->getX() - val, minMax->getY() );
  749. fenster->setPosition( fenster->getX() + val, fenster->getY() );
  750. if( fenster->getX() >= bildschirmGröße.x - 21 )
  751. {
  752. minMax->setPosition( 1, minMax->getY() );
  753. fenster->setPosition( bildschirmGröße.x - 21, fenster->getY() );
  754. animation = 0;
  755. }
  756. rend = 1;
  757. }
  758. break;
  759. }
  760. bool ret = rend;
  761. rend = 0;
  762. return ret;
  763. }
  764. // contant
  765. // Reference Counting
  766. NachrichtenListe *NachrichtenListe::getThis()
  767. {
  768. ref++;
  769. return this;
  770. }
  771. NachrichtenListe *NachrichtenListe::release()
  772. {
  773. ref--;
  774. if( !ref )
  775. delete this;
  776. return 0;
  777. }
  778. // Nachrichten
  779. bool NachrichtenListeMinMaxME( void *p, void *obj, MausEreignis me )
  780. {
  781. return ( (NachrichtenListe*)p )->druckMinMax( me );
  782. }