macrgbblt.cpp
上传用户:zhongxx05
上传日期:2007-06-06
资源大小:33641k
文件大小:5k
源码类别:

Symbian

开发平台:

C/C++

  1. /* ***** BEGIN LICENSE BLOCK ***** 
  2.  * Version: RCSL 1.0/RPSL 1.0 
  3.  *  
  4.  * Portions Copyright (c) 1995-2002 RealNetworks, Inc. All Rights Reserved. 
  5.  *      
  6.  * The contents of this file, and the files included with this file, are 
  7.  * subject to the current version of the RealNetworks Public Source License 
  8.  * Version 1.0 (the "RPSL") available at 
  9.  * http://www.helixcommunity.org/content/rpsl unless you have licensed 
  10.  * the file under the RealNetworks Community Source License Version 1.0 
  11.  * (the "RCSL") available at http://www.helixcommunity.org/content/rcsl, 
  12.  * in which case the RCSL will apply. You may also obtain the license terms 
  13.  * directly from RealNetworks.  You may not use this file except in 
  14.  * compliance with the RPSL or, if you have a valid RCSL with RealNetworks 
  15.  * applicable to this file, the RCSL.  Please see the applicable RPSL or 
  16.  * RCSL for the rights, obligations and limitations governing use of the 
  17.  * contents of the file.  
  18.  *  
  19.  * This file is part of the Helix DNA Technology. RealNetworks is the 
  20.  * developer of the Original Code and owns the copyrights in the portions 
  21.  * it created. 
  22.  *  
  23.  * This file, and the files included with this file, is distributed and made 
  24.  * available on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER 
  25.  * EXPRESS OR IMPLIED, AND REALNETWORKS HEREBY DISCLAIMS ALL SUCH WARRANTIES, 
  26.  * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, FITNESS 
  27.  * FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT. 
  28.  * 
  29.  * Technology Compatibility Kit Test Suite(s) Location: 
  30.  *    http://www.helixcommunity.org/content/tck 
  31.  * 
  32.  * Contributor(s): 
  33.  *  
  34.  * ***** END LICENSE BLOCK ***** */ 
  35. #include "hxcom.h"
  36. #include "hxtypes.h"
  37. #include "hxwintyp.h"
  38. #include "hxvsurf.h"
  39. #include "colormap.h"
  40. #include "macrgbblt.h"
  41. CMacRGBBlt::CMacRGBBlt()
  42.  :  CMacBlt()
  43.  , m_GWorld(NULL)
  44.  , m_Window(NULL)
  45. {
  46. }
  47. CMacRGBBlt::~CMacRGBBlt()
  48. {
  49.     DestroySurface(0);
  50. }
  51. HX_RESULT CMacRGBBlt::CreateSurface(int cidIn, int& cidOut,
  52.                                  int nWidth, int nHeight,
  53.                                  int nFlags, HWND hWnd,
  54.                                  int nCountIn, int& nCountOut)
  55. {
  56. #if defined (HELIX_FEATURE_CC_RGB32out)
  57.     m_nCID = CID_RGB32;
  58. #elif defined (HELIX_FEATURE_CC_RGB565out)
  59.     m_nCID = CID_RGB565;
  60.     nSize += 3 * sizeof(ULONG32);
  61. #endif
  62.     
  63.     cidOut = m_nCID;
  64.     
  65.     m_Window = (WindowPtr)hWnd;
  66.     // build a gworld and return OK!
  67.     
  68.     short depth = 32; // if CID_RGB32
  69.     Rect r;
  70.     r.left = 0;
  71.     r.top = 0;
  72.     r.right = nWidth;
  73.     r.bottom = nHeight;
  74.     
  75.     ::NewGWorld( &m_GWorld, depth, &r, nil, nil, 0 );
  76.     
  77.     if (!m_GWorld) return HXR_FAIL;
  78.     
  79.     return HXR_OK;
  80. }
  81. HX_RESULT CMacRGBBlt::LockSurface(UCHAR** ppDestPtr,
  82.                               LONG32* pnDestPitch,
  83.                               int& cid,
  84.                               REF(HXxSize) srcSize,
  85.                               int nIndex)
  86. {
  87.     PixMapHandle theGWorldPixMap = ::GetPortPixMap( m_GWorld );
  88.     ::LockPixels( theGWorldPixMap );
  89.     
  90.     *ppDestPtr = (UCHAR*) ::GetPixBaseAddr( theGWorldPixMap );
  91.     *pnDestPitch = (**theGWorldPixMap).rowBytes & 0x3fff; // xxxbobclark lose the top two bits.
  92.     cid = CID_RGB32;
  93.     return HXR_OK;
  94. }
  95. HX_RESULT CMacRGBBlt::FillSurface(int cidIn,
  96.                                UCHAR* pSrcBuffer,
  97.                                HXxSize* pSrcSize,
  98.                                HXxRect* prSrcRect,
  99.                                UCHAR* pDstBuffer,
  100.                                LONG32 nDstPitch,
  101.                                HXxRect* prDestRect)
  102. {
  103.     
  104.     return HXR_NOTIMPL;
  105. }
  106. HX_RESULT CMacRGBBlt::UnlockSurface(UCHAR* pSurfPtr, int nIndex)
  107. {
  108.     PixMapHandle theGWorldPixMap = ::GetPortPixMap( m_GWorld );
  109.     ::UnlockPixels( theGWorldPixMap );
  110.     return HXR_OK;
  111. }
  112. HX_RESULT CMacRGBBlt::RenderSurface(HXxSize* pSrcSize,
  113.                                  HXxRect* prSrcRect,
  114.                                  HXxRect* prDestRect,
  115.                                  int nIndex)
  116. {
  117.     // xxxbobclark so is the src rect gonna be based on 0,0 like we assumed
  118.     // when we created the gworld???
  119.     
  120.     GrafPtr savePort;
  121.     ::GetPort( &savePort );
  122.     GrafPtr theWindowPort = ::GetWindowPort( m_Window );
  123.     ::SetPort( theWindowPort );
  124.     
  125.     PixMapHandle theGWorldPixMap = ::GetPortPixMap( m_GWorld );
  126.     
  127.     // convert HXxRect to OS specific Rect. (HXxRect's fields are long, Rect's fields are short)
  128.     
  129.     Rect srcR, dstR;
  130.     
  131.     srcR.left = prSrcRect->left;
  132.     srcR.top = prSrcRect->top;
  133.     srcR.right = prSrcRect->right;
  134.     srcR.bottom = prSrcRect->bottom;
  135.     
  136.     dstR.left = prDestRect->left;
  137.     dstR.top = prDestRect->top;
  138.     dstR.right = prDestRect->right;
  139.     dstR.bottom = prDestRect->bottom;
  140.     
  141.     ::CopyBits( (BitMap*)*theGWorldPixMap, ::GetPortBitMapForCopyBits( theWindowPort ),
  142. &srcR, &dstR, srcCopy, NULL );
  143.     
  144.     ::QDFlushPortBuffer( theWindowPort, NULL );
  145.     
  146.     ::SetPort( savePort );
  147.     
  148.     return HXR_OK;
  149. }
  150. HX_RESULT CMacRGBBlt::DestroySurface(int cid)
  151. {
  152.     ::DisposeGWorld( m_GWorld );
  153.     // destroy gworld
  154.     
  155.     return HXR_OK;
  156. }