macrgbblt.cpp
上传用户:dangjiwu
上传日期:2013-07-19
资源大小:42019k
文件大小:6k
源码类别:

Symbian

开发平台:

Visual C++

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