merge (with conflict fixes) with master (even against rgareus' recommendation)
[ardour.git] / libs / canvas / polygon.cc
1 /*
2     Copyright (C) 2011-2013 Paul Davis
3     Author: Carl Hetherington <cth@carlh.net>
4
5     This program is free software; you can redistribute it and/or modify
6     it under the terms of the GNU General Public License as published by
7     the Free Software Foundation; either version 2 of the License, or
8     (at your option) any later version.
9
10     This program is distributed in the hope that it will be useful,
11     but WITHOUT ANY WARRANTY; without even the implied warranty of
12     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13     GNU General Public License for more details.
14
15     You should have received a copy of the GNU General Public License
16     along with this program; if not, write to the Free Software
17     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
18 */
19
20 #include "canvas/polygon.h"
21
22 using namespace ArdourCanvas;
23
24 Polygon::Polygon (Group* parent)
25         : Item (parent)
26         , PolyItem (parent)
27         , Fill (parent)
28         , multiple (0)
29         , constant (0)
30         , cached_size (0)
31 {
32
33 }
34
35 Polygon::~Polygon ()
36 {
37         delete [] multiple;
38         delete [] constant;
39 }
40
41 void
42 Polygon::render (Rect const & area, Cairo::RefPtr<Cairo::Context> context) const
43 {
44         if (_outline) {
45                 setup_outline_context (context);
46                 render_path (area, context);
47                 
48                 if (!_points.empty ()) {
49                         /* close path */
50                         Duple p = item_to_window (Duple (_points.front().x, _points.front().y));
51                         context->move_to (p.x, p.y);
52                 }
53
54                 context->stroke_preserve ();
55         }
56
57         if (_fill) {
58                 setup_fill_context (context);
59                 context->fill ();
60         }
61 }
62
63 void 
64 Polygon::cache_shape_computation () const
65 {
66         Points::size_type npoints = _points.size();
67
68         if (npoints == 0) {
69                 return;
70         }
71
72         Points::size_type i;
73         Points::size_type j = npoints -1;
74
75         if (cached_size < npoints) {
76                 cached_size = npoints;
77                 delete [] multiple;
78                 multiple = new float[cached_size];
79                 delete [] constant;
80                 constant = new float[cached_size];
81         }
82
83         for (i = 0; i < npoints; i++) {
84                 if (_points[j].y == _points[i].y) {
85                         constant[i] = _points[i].x;
86                         multiple[i] = 0; 
87                 } else {
88                         constant[i] = _points[i].x-(_points[i].y*_points[j].x)/(_points[j].y-_points[i].y)+(_points[i].y*_points[i].x)/(_points[j].y-_points[i].y);
89                         multiple[i] = (_points[j].x-_points[i].x)/(_points[j].y-_points[i].y); 
90                 }
91
92                 j = i; 
93         }
94 }
95
96 bool 
97 Polygon::covers (Duple const & point) const
98 {
99         Duple p = canvas_to_item (point);
100
101         Points::size_type npoints = _points.size();
102
103         if (npoints == 0) {
104                 return false;
105         }
106
107         Points::size_type i;
108         Points::size_type j = npoints -1;
109         bool oddNodes = false;
110         
111         if (_bounding_box_dirty) {
112                 compute_bounding_box ();
113         }
114         
115         for (i = 0; i < npoints; i++) {
116                 if (((_points[i].y < p.y && _points[j].y >= p.y) || (_points[j].y < p.y && _points[i].y >= p.y))) {
117                         oddNodes ^= (p.y * multiple[i] + constant[i] < p.x); 
118                 }
119                 j = i; 
120         }
121
122         return oddNodes; 
123
124
125 void
126 Polygon::compute_bounding_box () const
127 {
128         PolyItem::compute_bounding_box ();
129         cache_shape_computation ();
130 }
131