2013-04-15 22:10:18 -04:00
|
|
|
/*
|
|
|
|
Copyright (C) 2011-2013 Paul Davis
|
|
|
|
Author: Carl Hetherington <cth@carlh.net>
|
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation; either version 2 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program; if not, write to the Free Software
|
|
|
|
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
|
|
*/
|
|
|
|
|
2013-04-04 00:32:52 -04:00
|
|
|
#include <algorithm>
|
|
|
|
#include <cfloat>
|
|
|
|
#include <cassert>
|
2013-06-24 16:28:53 -04:00
|
|
|
|
|
|
|
#include <cairomm/context.h>
|
|
|
|
|
2013-04-04 00:32:52 -04:00
|
|
|
#include "canvas/types.h"
|
|
|
|
|
|
|
|
using namespace std;
|
|
|
|
using namespace ArdourCanvas;
|
|
|
|
|
2013-04-17 10:53:17 -04:00
|
|
|
Coord const ArdourCanvas::COORD_MAX = 1.7e307;
|
2013-04-04 00:32:52 -04:00
|
|
|
|
2013-04-04 18:45:27 -04:00
|
|
|
static inline Coord
|
|
|
|
safe_add (Coord a, Coord b)
|
2013-04-04 00:32:52 -04:00
|
|
|
{
|
2013-04-05 11:27:26 -04:00
|
|
|
if (((COORD_MAX - a) <= b) || ((COORD_MAX - b) <= a)) {
|
2013-04-04 00:32:52 -04:00
|
|
|
return COORD_MAX;
|
|
|
|
}
|
|
|
|
|
|
|
|
return a + b;
|
|
|
|
}
|
|
|
|
|
|
|
|
Duple
|
|
|
|
Duple::translate (Duple t) const
|
|
|
|
{
|
|
|
|
Duple d;
|
|
|
|
|
|
|
|
d.x = safe_add (x, t.x);
|
|
|
|
d.y = safe_add (y, t.y);
|
|
|
|
|
|
|
|
return d;
|
|
|
|
}
|
|
|
|
|
|
|
|
boost::optional<Rect>
|
|
|
|
Rect::intersection (Rect const & o) const
|
|
|
|
{
|
|
|
|
Rect i;
|
|
|
|
|
|
|
|
i.x0 = max (x0, o.x0);
|
|
|
|
i.y0 = max (y0, o.y0);
|
|
|
|
i.x1 = min (x1, o.x1);
|
|
|
|
i.y1 = min (y1, o.y1);
|
|
|
|
|
|
|
|
if (i.x0 > i.x1 || i.y0 > i.y1) {
|
|
|
|
return boost::optional<Rect> ();
|
|
|
|
}
|
|
|
|
|
|
|
|
return boost::optional<Rect> (i);
|
|
|
|
}
|
|
|
|
|
|
|
|
Rect
|
|
|
|
Rect::translate (Duple t) const
|
|
|
|
{
|
|
|
|
Rect r;
|
2013-04-11 20:19:22 -04:00
|
|
|
|
2013-04-04 00:32:52 -04:00
|
|
|
r.x0 = safe_add (x0, t.x);
|
|
|
|
r.y0 = safe_add (y0, t.y);
|
|
|
|
r.x1 = safe_add (x1, t.x);
|
|
|
|
r.y1 = safe_add (y1, t.y);
|
|
|
|
return r;
|
|
|
|
}
|
|
|
|
|
|
|
|
Rect
|
|
|
|
Rect::extend (Rect const & o) const
|
|
|
|
{
|
|
|
|
Rect r;
|
|
|
|
r.x0 = min (x0, o.x0);
|
|
|
|
r.y0 = min (y0, o.y0);
|
|
|
|
r.x1 = max (x1, o.x1);
|
|
|
|
r.y1 = max (y1, o.y1);
|
|
|
|
return r;
|
|
|
|
}
|
|
|
|
|
|
|
|
Rect
|
|
|
|
Rect::expand (Distance amount) const
|
|
|
|
{
|
|
|
|
Rect r;
|
2014-03-07 11:26:27 -05:00
|
|
|
r.x0 = x0 - amount;
|
|
|
|
r.y0 = y0 - amount;
|
2013-04-04 00:32:52 -04:00
|
|
|
r.x1 = safe_add (x1, amount);
|
|
|
|
r.y1 = safe_add (y1, amount);
|
|
|
|
return r;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
Rect::contains (Duple point) const
|
|
|
|
{
|
|
|
|
return point.x >= x0 && point.x <= x1 && point.y >= y0 && point.y <= y1;
|
|
|
|
}
|
|
|
|
|
|
|
|
Rect
|
|
|
|
Rect::fix () const
|
|
|
|
{
|
|
|
|
Rect r;
|
|
|
|
|
|
|
|
r.x0 = min (x0, x1);
|
|
|
|
r.y0 = min (y0, y1);
|
|
|
|
r.x1 = max (x0, x1);
|
|
|
|
r.y1 = max (y0, y1);
|
|
|
|
|
|
|
|
return r;
|
|
|
|
}
|
|
|
|
|
2014-03-11 07:36:09 -04:00
|
|
|
bool
|
|
|
|
ArdourCanvas::operator!= (Rect const& a, Rect const& b)
|
|
|
|
{
|
|
|
|
return a.x0 != b.x0 ||
|
|
|
|
a.x1 != b.x1 ||
|
|
|
|
a.y0 != b.y0 ||
|
|
|
|
a.y1 != b.y1;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-04-04 00:32:52 -04:00
|
|
|
Duple
|
|
|
|
ArdourCanvas::operator- (Duple const & o)
|
|
|
|
{
|
|
|
|
return Duple (-o.x, -o.y);
|
|
|
|
}
|
|
|
|
|
|
|
|
Duple
|
|
|
|
ArdourCanvas::operator+ (Duple const & a, Duple const & b)
|
|
|
|
{
|
|
|
|
return Duple (safe_add (a.x, b.x), safe_add (a.y, b.y));
|
|
|
|
}
|
|
|
|
|
2013-04-17 10:53:17 -04:00
|
|
|
bool
|
|
|
|
ArdourCanvas::operator== (Duple const & a, Duple const & b)
|
|
|
|
{
|
|
|
|
return a.x == b.x && a.y == b.y;
|
|
|
|
}
|
|
|
|
|
2014-03-11 07:36:09 -04:00
|
|
|
bool
|
|
|
|
ArdourCanvas::operator!= (Duple const & a, Duple const & b)
|
|
|
|
{
|
|
|
|
return a.x != b.x || a.y != b.y;
|
|
|
|
}
|
|
|
|
|
2013-04-04 00:32:52 -04:00
|
|
|
Duple
|
|
|
|
ArdourCanvas::operator- (Duple const & a, Duple const & b)
|
|
|
|
{
|
|
|
|
return Duple (a.x - b.x, a.y - b.y);
|
|
|
|
}
|
|
|
|
|
|
|
|
Duple
|
|
|
|
ArdourCanvas::operator/ (Duple const & a, double b)
|
|
|
|
{
|
|
|
|
return Duple (a.x / b, a.y / b);
|
|
|
|
}
|
|
|
|
|
|
|
|
ostream &
|
|
|
|
ArdourCanvas::operator<< (ostream & s, Duple const & r)
|
|
|
|
{
|
|
|
|
s << "(" << r.x << ", " << r.y << ")";
|
|
|
|
return s;
|
|
|
|
}
|
|
|
|
|
|
|
|
ostream &
|
|
|
|
ArdourCanvas::operator<< (ostream & s, Rect const & r)
|
|
|
|
{
|
2013-04-05 11:27:26 -04:00
|
|
|
s << "[(" << r.x0 << ", " << r.y0 << "), (" << r.x1 << ", " << r.y1 << ") " << r.width() << " x " << r.height() << "]";
|
2013-04-04 00:32:52 -04:00
|
|
|
return s;
|
|
|
|
}
|
|
|
|
|