]> git.mxchange.org Git - flightgear.git/blob - Clipper/clipper.hxx
Renamed main.cxx to testclipper.cxx
[flightgear.git] / Clipper / clipper.hxx
1 // clipper.hxx -- top level routines to take a series of arbitrary areas and
2 //                produce a tight fitting puzzle pieces that combine to make a
3 //                tile
4 //
5 // Written by Curtis Olson, started February 1999.
6 //
7 // Copyright (C) 1999  Curtis L. Olson  - curt@flightgear.org
8 //
9 // This program is free software; you can redistribute it and/or modify
10 // it under the terms of the GNU General Public License as published by
11 // the Free Software Foundation; either version 2 of the License, or
12 // (at your option) any later version.
13 //
14 // This program is distributed in the hope that it will be useful,
15 // but WITHOUT ANY WARRANTY; without even the implied warranty of
16 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17 // GNU General Public License for more details.
18 //
19 // You should have received a copy of the GNU General Public License
20 // along with this program; if not, write to the Free Software
21 // Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
22 //
23 // $Id$
24 // (Log is kept at end of this file)
25  
26
27
28 #ifndef _CLIPPER_HXX
29 #define _CLIPPER_HXX
30
31
32 #ifndef __cplusplus                                                          
33 # error This library requires C++
34 #endif                                   
35
36
37 #include <Include/compiler.h>
38
39
40 // include Generic Polygon Clipping Library
41 //
42 //    http://www.cs.man.ac.uk/aig/staff/alan/software/
43 //
44 extern "C" {
45 #include <gpc.h>
46 }
47
48 #include STL_STRING
49 #include <vector>
50
51 typedef vector < gpc_polygon * > polylist;
52 typedef polylist::iterator polylist_iterator;
53
54 #define FG_MAX_AREAS 20
55 #define EXTRA_SAFETY_CLIP
56 #define FG_MAX_VERTICES 100000
57
58 class point2d {
59 public:
60     double x, y;
61 };
62
63
64 class FGPolyList {
65 public:
66     polylist polys[FG_MAX_AREAS];
67     gpc_polygon safety_base;
68 };
69
70
71 class FGClipper {
72
73 private:
74
75     gpc_vertex_list v_list;
76     // static gpc_polygon poly;
77     FGPolyList polys_in, polys_out;
78
79 public:
80
81     // Constructor
82     FGClipper( void );
83
84     // Destructor
85     ~FGClipper( void );
86
87     // Initialize Clipper (allocate and/or connect structures)
88     bool init();
89
90     // Load a polygon definition file
91     bool load_polys(const string& path);
92
93     // Do actually clipping work
94     bool clip_all(const point2d& min, const point2d& max);
95 };
96
97
98 #endif // _CLIPPER_HXX
99
100
101 // $Log$
102 // Revision 1.2  1999/03/13 23:51:34  curt
103 // Renamed main.cxx to testclipper.cxx
104 // Converted clipper routines to a class FGClipper.
105 //
106 // Revision 1.1  1999/03/01 15:39:39  curt
107 // Initial revision.
108 //