anim_bitmap.cpp
上传用户:kjfoods
上传日期:2020-07-06
资源大小:29949k
文件大小:3k
源码类别:

midi

开发平台:

Unix_Linux

  1. /*****************************************************************************
  2.  * anim_bitmap.cpp
  3.  *****************************************************************************
  4.  * Copyright (C) 2005 the VideoLAN team
  5.  * $Id: 2f66deccdf650320cbe29fd7b63fa4a13b144ae9 $
  6.  *
  7.  * Authors: Cyril Deguet     <asmax@via.ecp.fr>
  8.  *
  9.  * This program is free software; you can redistribute it and/or modify
  10.  * it under the terms of the GNU General Public License as published by
  11.  * the Free Software Foundation; either version 2 of the License, or
  12.  * (at your option) any later version.
  13.  *
  14.  * This program is distributed in the hope that it will be useful,
  15.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  16.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  17.  * GNU General Public License for more details.
  18.  *
  19.  * You should have received a copy of the GNU General Public License
  20.  * along with this program; if not, write to the Free Software
  21.  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
  22.  *****************************************************************************/
  23. #include "anim_bitmap.hpp"
  24. #include "generic_bitmap.hpp"
  25. #include "os_factory.hpp"
  26. #include "os_graphics.hpp"
  27. #include "os_timer.hpp"
  28. AnimBitmap::AnimBitmap( intf_thread_t *pIntf, const GenericBitmap &rBitmap ):
  29.     SkinObject( pIntf ), m_pImage( NULL ), m_curFrame( 0 ), m_pTimer( NULL ),
  30.     m_cmdNextFrame( this ), m_rBitmap( rBitmap )
  31. {
  32.     // Build the graphics
  33.     OSFactory *pOsFactory = OSFactory::instance( pIntf );
  34.     m_pImage = pOsFactory->createOSGraphics( rBitmap.getWidth(),
  35.                                              rBitmap.getHeight() );
  36.     m_pImage->drawBitmap( rBitmap, 0, 0 );
  37.     m_nbFrames = rBitmap.getNbFrames();
  38.     m_frameRate = rBitmap.getFrameRate();
  39.     // Create the timer
  40.     m_pTimer = pOsFactory->createOSTimer( m_cmdNextFrame );
  41. }
  42. AnimBitmap::~AnimBitmap()
  43. {
  44.     delete m_pImage;
  45.     delete m_pTimer;
  46. }
  47. void AnimBitmap::startAnim()
  48. {
  49.     if( m_nbFrames > 1 && m_frameRate > 0 )
  50.     {
  51.         m_pTimer->start( 1000 / m_frameRate, false );
  52.     }
  53. }
  54. void AnimBitmap::stopAnim()
  55. {
  56.     m_pTimer->stop();
  57. }
  58. void AnimBitmap::draw( OSGraphics &rImage, int xDest, int yDest )
  59. {
  60.     // Draw the current frame
  61.     int height = m_pImage->getHeight() / m_nbFrames;
  62.     int ySrc = height * m_curFrame;
  63.     // The old way .... transparency was not taken care of
  64.     // rImage.drawGraphics( *m_pImage, 0, ySrc, xDest, yDest,
  65.     //                      m_pImage->getWidth(), height );
  66.     // A new way .... needs to be tested thoroughly
  67.     rImage.drawBitmap( m_rBitmap, 0, ySrc, xDest, yDest,
  68.                        m_pImage->getWidth(), height, true );
  69. }
  70. bool AnimBitmap::hit( int x, int y ) const
  71. {
  72.     int height = m_pImage->getHeight() / m_nbFrames;
  73.     if( y >= 0 && y < height )
  74.     {
  75.         return m_pImage->hit( x, m_curFrame * height + y );
  76.     }
  77.     else
  78.     {
  79.         return false;
  80.     }
  81. }
  82. int AnimBitmap::getWidth() const
  83. {
  84.     return m_pImage->getWidth();
  85. }
  86. int AnimBitmap::getHeight() const
  87. {
  88.     return m_pImage->getHeight() / m_nbFrames;
  89. }
  90. void AnimBitmap::CmdNextFrame::execute()
  91. {
  92.     // Go the next frame
  93.     m_pParent->m_curFrame = ( m_pParent->m_curFrame + 1 ) %
  94.         m_pParent->m_nbFrames;
  95.     // Notify the observer so that it can display the next frame
  96.     m_pParent->notify();
  97. }