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

midi

开发平台:

Unix_Linux

  1. /*****************************************************************************
  2.  * win32_graphics.cpp
  3.  *****************************************************************************
  4.  * Copyright (C) 2003 the VideoLAN team
  5.  * $Id: 00a4f9b57785d80fed3ce252f3918a178478fc97 $
  6.  *
  7.  * Authors: Cyril Deguet     <asmax@via.ecp.fr>
  8.  *          Olivier Teulière <ipkiss@via.ecp.fr>
  9.  *
  10.  * This program is free software; you can redistribute it and/or modify
  11.  * it under the terms of the GNU General Public License as published by
  12.  * the Free Software Foundation; either version 2 of the License, or
  13.  * (at your option) any later version.
  14.  *
  15.  * This program is distributed in the hope that it will be useful,
  16.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  17.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  18.  * GNU General Public License for more details.
  19.  *
  20.  * You should have received a copy of the GNU General Public License
  21.  * along with this program; if not, write to the Free Software
  22.  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
  23.  *****************************************************************************/
  24. #ifdef WIN32_SKINS
  25. #define WINVER 0x500
  26. #include "win32_factory.hpp"
  27. #include "win32_graphics.hpp"
  28. #include "win32_window.hpp"
  29. #include "../src/generic_bitmap.hpp"
  30. #ifndef AC_SRC_ALPHA
  31. #define AC_SRC_ALPHA 1
  32. #endif
  33. Win32Graphics::Win32Graphics( intf_thread_t *pIntf, int width, int height ):
  34.     OSGraphics( pIntf ), m_width( width ), m_height( height ), m_hDC( NULL )
  35. {
  36.     HBITMAP hBmp;
  37.     HDC hDC = GetDC( NULL );
  38.     hBmp = CreateCompatibleBitmap( hDC, m_width, m_height );
  39.     ReleaseDC( NULL, hDC );
  40.     m_hDC = CreateCompatibleDC( NULL );
  41.     SelectObject( m_hDC, hBmp );
  42.     DeleteObject( hBmp );
  43.     // Create the mask
  44.     m_mask = CreateRectRgn( 0, 0, 0, 0 );
  45. }
  46. Win32Graphics::~Win32Graphics()
  47. {
  48.     DeleteDC( m_hDC );
  49.     DeleteObject( m_mask );
  50. }
  51. void Win32Graphics::clear()
  52. {
  53.     // Clear the transparency mask
  54.     DeleteObject( m_mask );
  55.     m_mask = CreateRectRgn( 0, 0, 0, 0 );
  56. }
  57. void Win32Graphics::drawBitmap( const GenericBitmap &rBitmap,
  58.                                 int xSrc, int ySrc, int xDest, int yDest,
  59.                                 int width, int height, bool blend )
  60. {
  61.     // Get the bitmap size if necessary
  62.     if( width == -1 )
  63.     {
  64.         width = rBitmap.getWidth();
  65.     }
  66.     if( height == -1 )
  67.     {
  68.         height = rBitmap.getHeight();
  69.     }
  70.     if( xDest + width > m_width || yDest + height > m_height )
  71.     {
  72.         msg_Err( getIntf(), "Bitmap too large !" );
  73.         return;
  74.     }
  75.     // Get a buffer on the image data
  76.     uint8_t *pBmpData = rBitmap.getData();
  77.     if( pBmpData == NULL )
  78.     {
  79.         // Nothing to draw
  80.         return;
  81.     }
  82.     void *pBits;     // pointer to DIB section
  83.     // Fill a BITMAPINFO structure
  84.     BITMAPINFO bmpInfo;
  85.     memset( &bmpInfo, 0, sizeof( bmpInfo ) );
  86.     bmpInfo.bmiHeader.biSize = sizeof( BITMAPINFOHEADER );
  87.     bmpInfo.bmiHeader.biWidth = width;
  88.     bmpInfo.bmiHeader.biHeight = -height;
  89.     bmpInfo.bmiHeader.biPlanes = 1;
  90.     bmpInfo.bmiHeader.biBitCount = 32;
  91.     bmpInfo.bmiHeader.biCompression = BI_RGB;
  92.     bmpInfo.bmiHeader.biSizeImage = width * height * 4;
  93.     // Create a DIB (Device Independent Bitmap) and associate it with
  94.     // a temporary DC
  95.     HDC hDC = CreateCompatibleDC( m_hDC );
  96.     HBITMAP hBmp = CreateDIBSection( hDC, &bmpInfo, DIB_RGB_COLORS,
  97.                                      &pBits, NULL, 0 );
  98.     SelectObject( hDC, hBmp );
  99.     // Mask for transparency
  100.     HRGN mask = CreateRectRgn( 0, 0, 0, 0 );
  101.     // Skip the first lines of the image
  102.     pBmpData += 4 * ySrc * rBitmap.getWidth();
  103.     // Copy the bitmap on the image and compute the mask
  104.     for( int y = 0; y < height; y++ )
  105.     {
  106.         // Skip uninteresting bytes at the beginning of the line
  107.         pBmpData += 4 * xSrc;
  108.         // Flag to say whether the previous pixel on the line was visible
  109.         bool wasVisible = false;
  110.         // Beginning of the current visible segment on the line
  111.         int visibleSegmentStart = 0;
  112.         for( int x = 0; x < width; x++ )
  113.         {
  114.             uint8_t b = *(pBmpData++);
  115.             uint8_t g = *(pBmpData++);
  116.             uint8_t r = *(pBmpData++);
  117.             uint8_t a = *(pBmpData++);
  118.             // Draw the pixel
  119.             ((UINT32 *)pBits)[x + y * width] =
  120.                 (a << 24) | (r << 16) | (g << 8) | b;
  121.             if( a > 0 )
  122.             {
  123.                 // Pixel is visible
  124.                 if( ! wasVisible )
  125.                 {
  126.                     // Beginning of a visible segment
  127.                     visibleSegmentStart = x;
  128.                 }
  129.                 wasVisible = true;
  130.             }
  131.             else
  132.             {
  133.                 // Pixel is transparent
  134.                 if( wasVisible )
  135.                 {
  136.                     // End of a visible segment: add it to the mask
  137.                     addSegmentInRegion( mask, visibleSegmentStart, x, y );
  138.                 }
  139.                 wasVisible = false;
  140.             }
  141.         }
  142.         if( wasVisible )
  143.         {
  144.             // End of a visible segment: add it to the mask
  145.             addSegmentInRegion( mask, visibleSegmentStart, width, y );
  146.         }
  147.         // Skip uninteresting bytes at the end of the line
  148.         pBmpData += 4 * (rBitmap.getWidth() - width - xSrc);
  149.     }
  150.     // Apply the mask to the internal DC
  151.     OffsetRgn( mask, xDest, yDest );
  152.     SelectClipRgn( m_hDC, mask );
  153.     BLENDFUNCTION bf;      // structure for alpha blending
  154.     bf.BlendOp = AC_SRC_OVER;
  155.     bf.BlendFlags = 0;
  156.     bf.SourceConstantAlpha = 0xff;  // don't use constant alpha
  157.     bf.AlphaFormat = AC_SRC_ALPHA;
  158.     // Blend the image onto the internal DC
  159.     BOOL (WINAPI *AlphaBlend)( HDC, int, int, int, int, HDC, int, int,
  160.                                int, int, BLENDFUNCTION );
  161.     AlphaBlend = ((Win32Factory*)OSFactory::instance( getIntf() ))->AlphaBlend;
  162.     if( AlphaBlend &&
  163.         !AlphaBlend( m_hDC, xDest, yDest, width, height, hDC, 0, 0,
  164.                      width, height, bf ) )
  165.     {
  166.         msg_Err( getIntf(), "AlphaBlend() failed" );
  167.     }
  168.     else if( !AlphaBlend )
  169.     {
  170.         // Copy the image onto the internal DC
  171.         BitBlt( m_hDC, xDest, yDest, width, height, hDC, 0, 0, SRCCOPY );
  172.     }
  173.     // Add the bitmap mask to the global graphics mask
  174.     CombineRgn( m_mask, m_mask, mask, RGN_OR );
  175.     // Do cleanup
  176.     DeleteObject( hBmp );
  177.     DeleteObject( mask );
  178.     DeleteDC( hDC );
  179. }
  180. void Win32Graphics::drawGraphics( const OSGraphics &rGraphics, int xSrc,
  181.                                   int ySrc, int xDest, int yDest, int width,
  182.                                   int height )
  183. {
  184.     if( width == -1 )
  185.     {
  186.         width = rGraphics.getWidth();
  187.     }
  188.     if( height == -1 )
  189.     {
  190.         height = rGraphics.getHeight();
  191.     }
  192.     // Create the mask for transparency
  193.     HRGN mask = CreateRectRgn( xSrc, ySrc, xSrc + width, ySrc + height );
  194.     CombineRgn( mask, ((Win32Graphics&)rGraphics).getMask(), mask, RGN_AND );
  195.     OffsetRgn( mask, xDest - xSrc, yDest - ySrc );
  196.     // Copy the image
  197.     HDC srcDC = ((Win32Graphics&)rGraphics).getDC();
  198.     SelectClipRgn( m_hDC, mask );
  199.     BitBlt( m_hDC, xDest, yDest, width, height, srcDC, xSrc, ySrc, SRCCOPY );
  200.     // Add the source mask to the mask of the graphics
  201.     CombineRgn( m_mask, mask, m_mask, RGN_OR );
  202.     DeleteObject( mask );
  203. }
  204. void Win32Graphics::fillRect( int left, int top, int width, int height,
  205.                               uint32_t color )
  206. {
  207.     // Update the mask with the rectangle area
  208.     HRGN newMask = CreateRectRgn( left, top, left + width, top + height );
  209.     CombineRgn( m_mask, m_mask, newMask, RGN_OR );
  210.     SelectClipRgn( m_hDC, m_mask );
  211.     DeleteObject( newMask );
  212.     // Create a brush with the color
  213.     int red = (color & 0xff0000) >> 16;
  214.     int green = (color & 0xff00) >> 8;
  215.     int blue = color & 0xff;
  216.     HBRUSH hBrush = CreateSolidBrush( RGB( red, green, blue ) );
  217.     // Draw the rectangle
  218.     RECT r;
  219.     r.left = left;
  220.     r.top = top;
  221.     r.right = left + width;
  222.     r.bottom = top + height;
  223.     FillRect( m_hDC, &r, hBrush );
  224.     DeleteObject( hBrush );
  225. }
  226. void Win32Graphics::drawRect( int left, int top, int width, int height,
  227.                               uint32_t color )
  228. {
  229.     // Update the mask with the rectangle
  230.     HRGN l1 = CreateRectRgn( left, top, left + width, top + 1 );
  231.     HRGN l2 = CreateRectRgn( left + width - 1, top,
  232.                              left + width, top + height );
  233.     HRGN l3 = CreateRectRgn( left, top + height - 1,
  234.                              left + width, top + height );
  235.     HRGN l4 = CreateRectRgn( left, top, left + 1, top + height );
  236.     CombineRgn( m_mask, m_mask, l1, RGN_OR );
  237.     CombineRgn( m_mask, m_mask, l2, RGN_OR );
  238.     CombineRgn( m_mask, m_mask, l3, RGN_OR );
  239.     CombineRgn( m_mask, m_mask, l4, RGN_OR );
  240.     DeleteObject( l1 );
  241.     DeleteObject( l2 );
  242.     DeleteObject( l3 );
  243.     DeleteObject( l4 );
  244.     SelectClipRgn( m_hDC, m_mask );
  245.     // Create a pen with the color
  246.     int red = (color & 0xff0000) >> 16;
  247.     int green = (color & 0xff00) >> 8;
  248.     int blue = color & 0xff;
  249.     HPEN hPen = CreatePen( PS_SOLID, 0, RGB( red, green, blue ) );
  250.     SelectObject( m_hDC, hPen );
  251.     // Draw the rectangle
  252.     MoveToEx( m_hDC, left, top, NULL );
  253.     LineTo( m_hDC, left + width - 1, top );
  254.     LineTo( m_hDC, left + width - 1, top + height - 1 );
  255.     LineTo( m_hDC, left, top + height - 1 );
  256.     LineTo( m_hDC, left, top );
  257.     // Delete the pen
  258.     DeleteObject( hPen );
  259. }
  260. void Win32Graphics::applyMaskToWindow( OSWindow &rWindow )
  261. {
  262.     // Get window handle
  263.     HWND hWnd = ((Win32Window&)rWindow).getHandle();
  264.     // Apply the mask
  265.     // We need to copy the mask, because SetWindowRgn modifies it in our back
  266.     HRGN mask = CreateRectRgn( 0, 0, 0, 0 );
  267.     CombineRgn( mask, m_mask, NULL, RGN_COPY );
  268.     SetWindowRgn( hWnd, mask, TRUE );
  269. }
  270. void Win32Graphics::copyToWindow( OSWindow &rWindow, int xSrc, int ySrc,
  271.                                   int width, int height, int xDest, int yDest )
  272. {
  273.     // Initialize painting
  274.     HWND hWnd = ((Win32Window&)rWindow).getHandle();
  275.     HDC wndDC = GetWindowDC( hWnd );
  276.     HDC srcDC = m_hDC;
  277.     // Draw image on window
  278.     BitBlt( wndDC, xDest, yDest, width, height, srcDC, xSrc, ySrc, SRCCOPY );
  279.     // Release window device context
  280.     ReleaseDC( hWnd, wndDC );
  281. }
  282. bool Win32Graphics::hit( int x, int y ) const
  283. {
  284.     return PtInRegion( m_mask, x, y ) != 0;
  285. }
  286. void Win32Graphics::addSegmentInRegion( HRGN &rMask, int start,
  287.                                         int end, int line )
  288. {
  289.     HRGN buffer = CreateRectRgn( start, line, end, line + 1 );
  290.     CombineRgn( rMask, buffer, rMask, RGN_OR );
  291.     DeleteObject( buffer );
  292. }
  293. #endif