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

midi

开发平台:

Unix_Linux

  1. /*****************************************************************************
  2.  * anim_bitmap.hpp
  3.  *****************************************************************************
  4.  * Copyright (C) 2005 the VideoLAN team
  5.  * $Id: 58fd30a9845649c4c63c69f29766d56a5af0a887 $
  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. #ifndef ANIM_BITMAP_HPP
  24. #define ANIM_BITMAP_HPP
  25. #include "../commands/cmd_generic.hpp"
  26. #include "../utils/observer.hpp"
  27. #include "../utils/position.hpp"
  28. class GenericBitmap;
  29. class OSGraphics;
  30. class OSTimer;
  31. /// Animated bitmap
  32. class AnimBitmap: public SkinObject, public Box,
  33.                   public Subject<AnimBitmap>
  34. {
  35.     public:
  36.         AnimBitmap( intf_thread_t *pIntf, const GenericBitmap &rBitmap );
  37.         virtual ~AnimBitmap();
  38.         /// Start the animation
  39.         void startAnim();
  40.         /// Stop the animation
  41.         void stopAnim();
  42.         /// Draw the current frame on another graphics
  43.         void draw( OSGraphics &rImage, int xDest, int yDest );
  44.         /// Tell whether the pixel at the given position is visible
  45.         bool hit( int x, int y ) const;
  46.         /// Get the size of the current frame
  47.         virtual int getWidth() const;
  48.         virtual int getHeight() const;
  49.     private:
  50.         /// Bitmap stored
  51.         const GenericBitmap &m_rBitmap;
  52.         /// Graphics to store the bitmap
  53.         OSGraphics *m_pImage;
  54.         /// Number of frames
  55.         int m_nbFrames;
  56.         /// Frame rate
  57.         int m_frameRate;
  58.         /// Curent frame
  59.         int m_curFrame;
  60.          /// Timer for the animation
  61.         OSTimer *m_pTimer;
  62.         /// Callback for the timer
  63.         DEFINE_CALLBACK( AnimBitmap, NextFrame );
  64. };
  65. #endif