pxrect.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
  36. #include "hxtypes.h"
  37. #include "hxwintyp.h"
  38. #include "hxcom.h"
  39. #include "hxresult.h"
  40. #include "ihxpckts.h"
  41. // hxcont
  42. #include "hxbuffer.h"
  43. #include "hxstring.h"
  44. // hxmisc
  45. #include "unkimp.h"
  46. #include "baseobj.h"
  47. // pxcomlib
  48. #include "gstring.h"
  49. #include "pxutil.h"
  50. #include "pxrect.h"
  51. // hxdebug
  52. #include "hxheap.h"
  53. #ifdef _DEBUG
  54. #undef HX_THIS_FILE
  55. static char HX_THIS_FILE[] = __FILE__;
  56. #endif
  57. BEGIN_INTERFACE_LIST(PXRect)
  58. END_INTERFACE_LIST
  59. void PXRect::Pack(BYTE * &pBuffer, UINT32 ulMajVer, UINT32 ulMinVer)
  60. {
  61.     if (ulMajVer <= 1 && ulMinVer <= 1)
  62.     {
  63.         Pack32(pBuffer, m_ulX);
  64.         Pack32(pBuffer, m_ulY);
  65.         Pack32(pBuffer, m_ulW);
  66.         Pack32(pBuffer, m_ulH);
  67.     }
  68.     else
  69.     {
  70.         Pack16(pBuffer, (UINT16) m_ulX);
  71.         Pack16(pBuffer, (UINT16) m_ulY);
  72.         Pack16(pBuffer, (UINT16) m_ulW);
  73.         Pack16(pBuffer, (UINT16) m_ulH);
  74.     }
  75. }
  76. void PXRect::UnPack(BYTE * &pBuffer, UINT32 ulMajVer, UINT32 ulMinVer)
  77. {
  78.     if (ulMajVer <= 1 && ulMinVer <= 1)
  79.     {
  80.         UnPack32(pBuffer, m_ulX);
  81.         UnPack32(pBuffer, m_ulY);
  82.         UnPack32(pBuffer, m_ulW);
  83.         UnPack32(pBuffer, m_ulH);
  84.     }
  85.     else
  86.     {
  87.         UINT16 usTmp;
  88.         UnPack16(pBuffer, usTmp);
  89.         m_ulX = usTmp;
  90.         UnPack16(pBuffer, usTmp);
  91.         m_ulY = usTmp;
  92.         UnPack16(pBuffer, usTmp);
  93.         m_ulW = usTmp;
  94.         UnPack16(pBuffer, usTmp);
  95.         m_ulH = usTmp;
  96.     }
  97. }
  98. #define LINEAR_PARAM(x1, x2, t, d, d2)  ((x1) + (((x2) - (x1)) * (t) + (d2)) / (d))
  99. void PXRect::InterpolateRect(UINT32 ulTime, UINT32 ulStart, UINT32 ulEnd,
  100.                              const PXRect& rStart, const PXRect& rEnd)
  101. {
  102.     if (ulTime <= ulStart)
  103.     {
  104.         m_ulX = rStart.m_ulX;
  105.         m_ulY = rStart.m_ulY;
  106.         m_ulW = rStart.m_ulW;
  107.         m_ulH = rStart.m_ulH;
  108.     }
  109.     else if (ulTime > ulStart && ulTime < ulEnd)
  110.     {
  111.         HXxRect cStart, cEnd, cMid;
  112.         cStart.left   = rStart.GetX();
  113.         cStart.top    = rStart.GetY();
  114.         cStart.right  = rStart.GetX() + rStart.GetWidth();
  115.         cStart.bottom = rStart.GetY() + rStart.GetHeight();
  116.         cEnd.left     = rEnd.GetX();
  117.         cEnd.top      = rEnd.GetY();
  118.         cEnd.right    = rEnd.GetX() + rEnd.GetWidth();
  119.         cEnd.bottom   = rEnd.GetY() + rEnd.GetHeight();
  120.         INT32 lDur    = (INT32) (ulEnd - ulStart);
  121.         INT32 lDur2   = lDur >> 1;
  122.         INT32 lTime   = (INT32) (ulTime - ulStart);
  123.         cMid.left     = LINEAR_PARAM(cStart.left,   cEnd.left,   lTime, lDur, lDur2);
  124.         cMid.top      = LINEAR_PARAM(cStart.top,    cEnd.top,    lTime, lDur, lDur2);
  125.         cMid.right    = LINEAR_PARAM(cStart.right,  cEnd.right,  lTime, lDur, lDur2);
  126.         cMid.bottom   = LINEAR_PARAM(cStart.bottom, cEnd.bottom, lTime, lDur, lDur2);
  127.         m_ulX         = cMid.left;
  128.         m_ulY         = cMid.top;
  129.         m_ulW         = HXxRECT_WIDTH(cMid);
  130.         m_ulH         = HXxRECT_HEIGHT(cMid);
  131.     }
  132.     else if (ulTime >= ulEnd)
  133.     {
  134.         m_ulX = rEnd.m_ulX;
  135.         m_ulY = rEnd.m_ulY;
  136.         m_ulW = rEnd.m_ulW;
  137.         m_ulH = rEnd.m_ulH;
  138.     }
  139. }