anchor.cpp
上传用户:riyaled888
上传日期:2009-03-27
资源大小:7338k
文件大小:3k
源码类别:

多媒体

开发平台:

MultiPlatform

  1. /*****************************************************************************
  2.  * anchor.cpp
  3.  *****************************************************************************
  4.  * Copyright (C) 2003 VideoLAN
  5.  * $Id: anchor.cpp 6961 2004-03-05 17:34:23Z sam $
  6.  *
  7.  * Authors: Cyril Deguet     <asmax@via.ecp.fr>
  8.  *          Olivier Teuli鑢e <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., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
  23.  *****************************************************************************/
  24. #include "anchor.hpp"
  25. bool Anchor::isHanging( const Anchor &rOther ) const
  26. {
  27.     if( m_priority <= rOther.m_priority )
  28.         return false;
  29.     // Compute delta coordinates between anchors, since the Bezier class
  30.     // uses coordinates relative to (0;0)
  31.     int deltaX = getXPosAbs() - rOther.getXPosAbs();
  32.     int deltaY = getYPosAbs() - rOther.getYPosAbs();
  33.     // One of the anchors (at least) must be a point, else it has no meaning
  34.     return (isPoint() && rOther.m_rCurve.getMinDist( deltaX, deltaY ) == 0) ||
  35.            (rOther.isPoint() && m_rCurve.getMinDist( -deltaX, -deltaY ) == 0);
  36. }
  37. bool Anchor::canHang( const Anchor &rOther, int &xOffset, int &yOffset ) const
  38. {
  39.     int deltaX = getXPosAbs() - (rOther.getXPosAbs() + xOffset);
  40.     int deltaY = getYPosAbs() - (rOther.getYPosAbs() + yOffset);
  41.     // One of the anchors (at least) must be a point, else it has no meaning
  42.     if( (isPoint() && rOther.m_rCurve.getMinDist( deltaX, deltaY ) < m_range) )
  43.     {
  44.         // Compute the coordinates of the nearest point of the curve
  45.         int xx, yy;
  46.         float p = rOther.m_rCurve.getNearestPercent( deltaX, deltaY );
  47.         rOther.m_rCurve.getPoint( p, xx, yy );
  48.         xOffset = getXPosAbs() - (rOther.getXPosAbs() + xx);
  49.         yOffset = getYPosAbs() - (rOther.getYPosAbs() + yy);
  50.         return true;
  51.     }
  52.     else if( (rOther.isPoint() &&
  53.               m_rCurve.getMinDist( -deltaX, -deltaY ) < m_range) )
  54.     {
  55.         // Compute the coordinates of the nearest point of the curve
  56.         int xx, yy;
  57.         float p = m_rCurve.getNearestPercent( -deltaX, -deltaY );
  58.         m_rCurve.getPoint( p, xx, yy );
  59.         xOffset = (getXPosAbs() + xx) - rOther.getXPosAbs();
  60.         yOffset = (getYPosAbs() + yy) - rOther.getYPosAbs();
  61.         return true;
  62.     }
  63.     else
  64.     {
  65.         return false;
  66.     }
  67. }