Animation.cpp 8.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451
  1. #include "Animation.h"
  2. #include "Bild.h"
  3. #include "DateiSystem.h"
  4. #include "Text.h"
  5. #include "InitDatei.h"
  6. #include "ToolTip.h"
  7. #include "Rahmen.h"
  8. using namespace Framework;
  9. // Inhalt der Animation2DData Klasse aus Animation.h
  10. // Konstruktor
  11. Animation2DData::Animation2DData()
  12. : bilder( 0 ),
  13. bildAnzahl( 0 ),
  14. fps( 0 ),
  15. wiederhohlen( 0 ),
  16. transparent( 0 ),
  17. ref( 1 )
  18. {
  19. InitializeCriticalSection( &cs );
  20. }
  21. // Destruktor
  22. Animation2DData::~Animation2DData()
  23. {
  24. reset();
  25. DeleteCriticalSection( &cs );
  26. }
  27. // nicht constant
  28. void Animation2DData::lock()
  29. {
  30. EnterCriticalSection( &cs );
  31. }
  32. void Animation2DData::unlock()
  33. {
  34. LeaveCriticalSection( &cs );
  35. }
  36. void Animation2DData::ladeAnimation( InitDatei *datei )
  37. {
  38. if( !datei )
  39. return;
  40. reset();
  41. int anz = datei->getWertAnzahl();
  42. lock();
  43. if( datei->wertExistiert( "fps" ) )
  44. {
  45. --anz;
  46. fps = TextZuInt( datei->zWert( "fps" )->getText(), 10 );
  47. }
  48. if( datei->wertExistiert( "wiederhohlen" ) )
  49. {
  50. --anz;
  51. wiederhohlen = datei->zWert( "wiederhohlen" )->istGleich( "true" );
  52. }
  53. if( datei->wertExistiert( "transparent" ) )
  54. {
  55. --anz;
  56. transparent = datei->zWert( "transparent" )->istGleich( "true" );
  57. }
  58. Bild **bilder = new Bild*[ anz ];
  59. int j = 0;
  60. for( int i = 0; i < anz; ++i )
  61. {
  62. if( datei->zName( i )->istGleich( "fps" ) ||
  63. datei->zName( i )->istGleich( "wiederhohlen" ) ||
  64. datei->zName( i )->istGleich( "transparent" ) )
  65. continue;
  66. bilder[ j ] = 0;
  67. Text pfad = datei->zWert( i )->getText();
  68. if( pfad.hat( ".ltdb/" ) && pfad.getLänge() > 7 )
  69. {
  70. Text *name = pfad.getTeilText( pfad.positionVon( ".ltdb/", pfad.anzahlVon( ".ltdb/" ) - 1 ) + 6 );
  71. pfad.setText( pfad.getTeilText( 0, pfad.getLänge() - name->getLänge() - 1 ) );
  72. LTDBDatei *dat = new LTDBDatei();
  73. dat->setDatei( pfad.getThis() );
  74. dat->leseDaten( 0 );
  75. bilder[ j ] = dat->laden( 0, name );
  76. dat->release();
  77. }
  78. ++j;
  79. }
  80. this->bilder = new Bild*[ bildAnzahl ];
  81. j = 0;
  82. for( int i = 0; i < anz; ++i )
  83. {
  84. if( !bilder[ i ] )
  85. ++j;
  86. else
  87. this->bilder[ i - j ] = bilder[ i ];
  88. }
  89. delete[] bilder;
  90. unlock();
  91. datei->release();
  92. }
  93. void Animation2DData::ladeAnimation( LTDBDatei *datei )
  94. {
  95. if( !datei )
  96. return;
  97. reset();
  98. datei->leseDaten( 0 );
  99. int anz = datei->getBildAnzahl();
  100. RCArray< Text > *list = datei->zBildListe();
  101. lock();
  102. Bild **bilder = new Bild*[ anz ];
  103. for( int i = 0; i < anz; ++i )
  104. {
  105. bilder[ i ] = datei->laden( 0, list->get( i ) );
  106. if( bilder[ i ] )
  107. ++bildAnzahl;
  108. }
  109. this->bilder = new Bild*[ bildAnzahl ];
  110. int j = 0;
  111. for( int i = 0; i < anz; ++i )
  112. {
  113. if( !bilder[ i ] )
  114. ++j;
  115. else
  116. this->bilder[ i - j ] = bilder[ i ];
  117. }
  118. delete[] bilder;
  119. unlock();
  120. datei->release();
  121. }
  122. void Animation2DData::setFPS( int fps )
  123. {
  124. this->fps = fps;
  125. }
  126. void Animation2DData::setWiederhohlend( bool wh )
  127. {
  128. wiederhohlen = wh;
  129. }
  130. void Animation2DData::setTransparent( bool trp )
  131. {
  132. transparent = trp;
  133. }
  134. void Animation2DData::reset()
  135. {
  136. lock();
  137. for( int i = 0; i < bildAnzahl; ++i )
  138. bilder[ i ] = bilder[ i ]->release();
  139. delete[] bilder;
  140. bilder = 0;
  141. bildAnzahl = 0;
  142. fps = 30;
  143. wiederhohlen = 0;
  144. transparent = 0;
  145. unlock();
  146. }
  147. // constant
  148. Bild *Animation2DData::getBild( int i ) const
  149. {
  150. return ( i >= 0 && i < bildAnzahl ) ? bilder[ i ]->getThis() : 0;
  151. }
  152. Bild *Animation2DData::zBild( int i ) const
  153. {
  154. return ( i >= 0 && i < bildAnzahl ) ? bilder[ i ] : 0;
  155. }
  156. int Animation2DData::getBildAnzahl() const
  157. {
  158. return bildAnzahl;
  159. }
  160. int Animation2DData::getFPS() const
  161. {
  162. return fps;
  163. }
  164. bool Animation2DData::istWiederhohlend() const
  165. {
  166. return wiederhohlen;
  167. }
  168. bool Animation2DData::istTransparent() const
  169. {
  170. return transparent;
  171. }
  172. // Reference Counting
  173. Animation2DData *Animation2DData::getThis()
  174. {
  175. ++ref;
  176. return this;
  177. }
  178. Animation2DData *Animation2DData::release()
  179. {
  180. --ref;
  181. if( !ref )
  182. delete this;
  183. return 0;
  184. }
  185. // Inhalt der Animation2D Klasse aus Animation.h
  186. // Konstruktor
  187. Animation2D::Animation2D()
  188. : Zeichnung(),
  189. data( 0 ),
  190. jetzt( 0 ),
  191. ausgleich( 0 ),
  192. alpha( 0 ),
  193. maxAlpha( 255 ),
  194. rahmen( 0 ),
  195. ram( 0 ),
  196. aps( 255 * 60 ),
  197. sichtbar( 0 ),
  198. ref( 1 )
  199. {}
  200. // Destruktor
  201. Animation2D::~Animation2D()
  202. {
  203. if( data )
  204. data->release();
  205. if( ram )
  206. ram->release();
  207. }
  208. // nicht constant
  209. void Animation2D::setRahmen( bool ram )
  210. {
  211. rahmen = ram;
  212. }
  213. void Animation2D::setRahmenZ( LRahmen *ram )
  214. {
  215. if( this->ram )
  216. this->ram->release();
  217. this->ram = ram;
  218. }
  219. void Animation2D::setRahmenBreite( int br )
  220. {
  221. if( !ram )
  222. ram = new LRahmen();
  223. ram->setRamenBreite( br );
  224. }
  225. void Animation2D::setRahmenFarbe( int f )
  226. {
  227. if( !ram )
  228. ram = new LRahmen();
  229. ram->setFarbe( f );
  230. }
  231. void Animation2D::setAnimationDataZ( Animation2DData *data )
  232. {
  233. lockZeichnung();
  234. if( this->data )
  235. this->data->release();
  236. this->data = data;
  237. if( alpha )
  238. rend = 1;
  239. unlockZeichnung();
  240. }
  241. void Animation2D::setAlphaMaske( unsigned char alpha )
  242. {
  243. maxAlpha = alpha;
  244. }
  245. void Animation2D::setAPS( int aps )
  246. {
  247. this->aps = aps;
  248. }
  249. void Animation2D::setSichtbar( bool sichtbar )
  250. {
  251. this->sichtbar = sichtbar;
  252. }
  253. bool Animation2D::tick( double zeit )
  254. {
  255. lockZeichnung();
  256. if( !data || ( !alpha && !sichtbar ) )
  257. {
  258. bool ret = rend;
  259. rend = 0;
  260. unlockZeichnung();
  261. return ret;
  262. }
  263. if( sichtbar && alpha < maxAlpha )
  264. {
  265. if( alpha + aps * zeit >= maxAlpha )
  266. alpha = maxAlpha;
  267. else
  268. alpha += (unsigned char)( aps * zeit );
  269. rend = 1;
  270. }
  271. else if( !sichtbar && alpha > 0 )
  272. {
  273. if( alpha - aps * zeit <= 0 )
  274. alpha = 0;
  275. else
  276. alpha -= (unsigned char)( aps * zeit );
  277. rend = 1;
  278. }
  279. ausgleich += zeit;
  280. int tmp = jetzt;
  281. data->lock();
  282. if( ausgleich >= 1.0 / data->getFPS() )
  283. {
  284. ausgleich -= 1.0 / data->getFPS();
  285. ++jetzt;
  286. if( jetzt >= data->getBildAnzahl() )
  287. {
  288. if( data->istWiederhohlend() )
  289. jetzt = 0;
  290. else
  291. jetzt = data->getBildAnzahl();
  292. }
  293. }
  294. data->unlock();
  295. if( tmp != jetzt )
  296. rend = 1;
  297. bool ret = rend;
  298. rend = 0;
  299. unlockZeichnung();
  300. return ret;
  301. }
  302. void Animation2D::render( Bild &zRObj )
  303. {
  304. lockZeichnung();
  305. if( !data )
  306. {
  307. unlockZeichnung();
  308. return;
  309. }
  310. __super::render( zRObj );
  311. data->lock();
  312. if( data->zBild( jetzt ) )
  313. {
  314. zRObj.setAlpha( alpha );
  315. if( data->istTransparent() )
  316. zRObj.alphaBild( pos.x, pos.y, gr.x, gr.y, *data->zBild( jetzt ) );
  317. else
  318. zRObj.drawBild( pos.x, pos.y, gr.x, gr.y, *data->zBild( jetzt ) );
  319. if( ram && rahmen )
  320. {
  321. ram->setPosition( pos );
  322. ram->setGröße( gr );
  323. ram->render( zRObj );
  324. }
  325. zRObj.releaseAlpha();
  326. }
  327. data->unlock();
  328. unlockZeichnung();
  329. }
  330. // constant
  331. Animation2DData *Animation2D::getAnimationData() const
  332. {
  333. return data ? data->getThis() : 0;
  334. }
  335. Animation2DData *Animation2D::zAnimationData() const
  336. {
  337. return data;
  338. }
  339. bool Animation2D::istSichtbar() const
  340. {
  341. return sichtbar;
  342. }
  343. int Animation2D::getJetzt() const
  344. {
  345. return jetzt;
  346. }
  347. unsigned char Animation2D::getAlphaMaske() const
  348. {
  349. return maxAlpha;
  350. }
  351. bool Animation2D::hatRahmen() const
  352. {
  353. return rahmen;
  354. }
  355. LRahmen *Animation2D::getRahmen() const
  356. {
  357. return ram ? ram->getThis() : 0;
  358. }
  359. LRahmen *Animation2D::zRahmen() const
  360. {
  361. return ram;
  362. }
  363. int Animation2D::getRahmenBreite() const
  364. {
  365. return ram ? ram->getRBreite() : 0;
  366. }
  367. int Animation2D::getRahmenFarbe() const
  368. {
  369. return ram ? ram->getFarbe() : 0;
  370. }
  371. Zeichnung *Animation2D::dublizieren() const
  372. {
  373. Animation2D *ret = new Animation2D();
  374. ret->setPosition( pos );
  375. ret->setGröße( gr );
  376. ret->setMausEreignisParameter( makParam );
  377. ret->setTastaturEreignisParameter( takParam );
  378. ret->setMausEreignis( Mak );
  379. ret->setTastaturEreignis( Tak );
  380. if( toolTip )
  381. ret->setToolTipText( toolTip->zText()->getText(), toolTip->zBildschirm() );
  382. if( data )
  383. ret->setAnimationDataZ( data->getThis() );
  384. ret->setAPS( aps );
  385. ret->setSichtbar( sichtbar );
  386. ret->setAlphaMaske( maxAlpha );
  387. ret->setRahmen( rahmen );
  388. if( ram )
  389. {
  390. ret->setRahmenBreite( ram->getRBreite() );
  391. ret->setRahmenFarbe( ram->getFarbe() );
  392. }
  393. return ret;
  394. }
  395. // Reference Counting
  396. Animation2D *Animation2D::getThis()
  397. {
  398. ++ref;
  399. return this;
  400. }
  401. Animation2D *Animation2D::release()
  402. {
  403. --ref;
  404. if( !ref )
  405. delete this;
  406. return 0;
  407. }