animsand.h
上传用户:zhongxx05
上传日期:2007-06-06
资源大小:33641k
文件大小:6k
源码类别:

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. #ifndef ANIMSAND_H
  36. #define ANIMSAND_H
  37. // Forward declarations
  38. class CSmilAnimateElement;
  39. class CAttr;
  40. class CHXString;
  41. class CHXSimpleList;
  42. class CSmilParser;
  43. #if defined(HELIX_FEATURE_SMIL2_ANIMATION)
  44. class CAnimationSandwichLayer
  45. {
  46. public:
  47.     CAnimationSandwichLayer(CSmilAnimateElement* pElement,
  48.                             UINT32               ulAttrName,
  49.                             CSmilParser*         pParser);
  50.     virtual ~CAnimationSandwichLayer();
  51.     const char*          GetTargetElementID() const;
  52.     const char*          GetAnimationElementID() const;
  53.     SMILNodeTag          GetTargetElementTag() const;
  54.     SMILNodeTag          GetAnimationElementTag() const;
  55.     UINT32               GetAttributeName() const { return m_ulAttrName; }
  56.     BOOL                 IsActive(UINT32 ulTime) const;
  57.     BOOL                 IsFrozen(UINT32 ulTime) const;
  58.     BOOL                 IsActiveZeroBased(UINT32 ulTime) const;
  59.     BOOL                 IsFrozenZeroBased(UINT32 ulTime) const;
  60.     BOOL                 IsAdditive() const;
  61.     BOOL                 IsToAnimation() const;
  62.     CAttr                AnimationEffectFunction(UINT32 ulTime, CAttr* pUnder,
  63.                                                  CAttr* pDepend = NULL);
  64.     BOOL                 HigherPriority(CAnimationSandwichLayer* pLayer);
  65.     void                 AdjustActiveDuration(UINT32 ulTime);
  66. protected:
  67.     CSmilAnimateElement* m_pElement;
  68.     UINT32               m_ulAttrName;
  69.     double*              m_pdPacedDist;
  70.     double*              m_pdPacedTime;
  71.     CSmilParser*         m_pSmilParser;
  72.     UINT32               m_ulLastTime;
  73.     UINT32               m_ulDelay;
  74.     UINT32               m_ulActiveDuration;
  75.     // ONLY HX_BITFIELD MEMBERS SHOULD GO BELOW THIS LINE!
  76.     // ALL OTHER MEMBER TYPES SHOULD GO ABOVE THIS LINE!
  77.     HX_BITFIELD          m_bRecomputePace : 1;
  78.     HX_BITFIELD          m_bFirstTime : 1;
  79.     CAttr  SimpleAnimationFunction(UINT32 ulTime, CAttr* pUnder, CAttr* pDepend);
  80.     CAttr  CumulativeAnimationFunction(UINT32 ulTime, CAttr* pUnder, CAttr* pDepend);
  81.     void   RecomputePace(CAttr* pDepend);
  82.     UINT32 ComputeFilteredSimpleTime(UINT32 ulUnfilteredActiveTime);
  83.     double ComputeRunRate(double dT, double dAccel, double dDecel, double dDur);
  84. #if defined(XXXMEH_SPLINE_ANIMATION)
  85.     double ComputeSpline(double t,  double t1, double t2,
  86.                          double v1, double v2,
  87.                          double x1, double y1, double x2, double y2);
  88.     double ComputeBezierOutputTime(double t, double x1, double y1,
  89.                                    double x2, double y2);
  90.     double SolveForBezierT(double x, double x1, double x2, double tol);
  91.     double ComputeBezier(double t, double a1, double a2);
  92. #endif
  93. };
  94. class CAnimationSandwich
  95. {
  96. public:
  97.     CAnimationSandwich(const char* pszTargetElementID,
  98.                        SMILNodeTag eTargetElementTag,
  99.                        UINT32      ulAttrName);
  100.     virtual ~CAnimationSandwich();
  101.     const char* GetTargetElementID() const;
  102.     SMILNodeTag GetTargetElementTag() const { return m_eTargetElementTag; }
  103.     UINT32      GetAttributeName() const    { return m_ulAttrName; }
  104.     HX_RESULT   AddLayer(CAnimationSandwichLayer* pLayer);
  105.     void        RemoveLayer(const char* pszAnimID);
  106.     void        FreezeLayers(const char* pszAnimID, UINT32 ulCurTime);
  107.     CAttr       GetValue(UINT32 ulTime, CAttr* pUnder, CAttr* pDepend = NULL);
  108.     void        AdjustLayers(UINT32 ulTime);
  109.     UINT32      GetNumLayers() const;
  110.     BOOL        MatchingSandwich(CSmilAnimateElement* pAnim);
  111.     BOOL        AtLeastOneActiveLayer(UINT32 ulTime);
  112. protected:
  113.     CHXString*     m_pTargetElementID;
  114.     SMILNodeTag    m_eTargetElementTag;
  115.     UINT32         m_ulAttrName;
  116.     CHXSimpleList* m_pLayerList;
  117.     void ClearAllLayers();
  118. };
  119. class CSmilAnimateInfo
  120. {
  121. public:
  122.     CSmilAnimateInfo();
  123.     virtual ~CSmilAnimateInfo();
  124.     CAnimationSandwich* m_pSandwich;
  125.     CAttr*              m_pUnder;
  126.     CAttr*              m_pDepend;
  127. };
  128. #endif /* #if defined(HELIX_FEATURE_SMIL2_ANIMATION) */
  129. #endif