anchor.cpp
上传用户:kjfoods
上传日期:2020-07-06
资源大小:29949k
文件大小:3k
源码类别:

midi

开发平台:

Unix_Linux

  1. /*****************************************************************************
  2.  * anchor.cpp
  3.  *****************************************************************************
  4.  * Copyright (C) 2003 the VideoLAN team
  5.  * $Id: 24e80516c0c9a35badedc17484955d8d3a619cde $
  6.  *
  7.  * Authors: Cyril Deguet     <asmax@via.ecp.fr>
  8.  *          Olivier Teulière <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., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, 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. }