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

midi

开发平台:

Unix_Linux

  1. /*****************************************************************************
  2.  * generic_bitmap.cpp
  3.  *****************************************************************************
  4.  * Copyright (C) 2004 the VideoLAN team
  5.  * $Id: bf26bca12046de177cda27fbff28e5ccb3685607 $
  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 "generic_bitmap.hpp"
  24. GenericBitmap::GenericBitmap( intf_thread_t *pIntf, int nbFrames, int fps ):
  25.     SkinObject( pIntf ), m_nbFrames( nbFrames ), m_frameRate( fps )
  26. {
  27. }
  28. BitmapImpl::BitmapImpl( intf_thread_t *pIntf, int width, int height,
  29.                         int nbFrames, int fps ):
  30.     GenericBitmap( pIntf, nbFrames, fps ), m_width( width ),
  31.     m_height( height ), m_pData( NULL )
  32. {
  33.     m_pData = new uint8_t[width * height * 4];
  34.     memset( m_pData, 0, width * height * 4 );
  35. }
  36. BitmapImpl::~BitmapImpl()
  37. {
  38.     delete[] m_pData;
  39. }
  40. bool BitmapImpl::drawBitmap( const GenericBitmap &rSource, int xSrc, int ySrc,
  41.                              int xDest, int yDest, int width, int height )
  42. {
  43.     int srcWidth = rSource.getWidth();
  44.     uint32_t *pSrc = (uint32_t*)rSource.getData() + ySrc * srcWidth + xSrc;
  45.     if( !pSrc )
  46.     {
  47.         return false;
  48.     }
  49.     if( xSrc < 0 || xSrc + width > srcWidth ||
  50.         ySrc < 0 || ySrc + height > rSource.getHeight() )
  51.     {
  52.         msg_Warn( getIntf(), "drawBitmap: source rect too small, ignoring" );
  53.         return false;
  54.     }
  55.     if( xDest < 0 || xDest + width > m_width ||
  56.         yDest < 0 || yDest + height > m_height )
  57.     {
  58.         msg_Warn( getIntf(), "drawBitmap: dest rect too small, ignoring" );
  59.         return false;
  60.     }
  61.     uint32_t *pDest = (uint32_t*)m_pData + yDest * m_width + xDest ;
  62.     for( int y = 0; y < height; y++ )
  63.     {
  64.         memcpy( pDest, pSrc, 4 * width );
  65.         pSrc += srcWidth;
  66.         pDest += m_width;
  67.     }
  68.     return true;
  69. }