]> git.mxchange.org Git - flightgear.git/blob - Objects/fragment.cxx
cleaned up my fragment.num_faces hack :-) to use the STL (no need in
[flightgear.git] / Objects / fragment.cxx
1 // fragment.cxx -- routines to handle "atomic" display objects
2 //
3 // Written by Curtis Olson, started August 1998.
4 //
5 // Copyright (C) 1998  Curtis L. Olson  - curt@me.umn.edu
6 //
7 // This program is free software; you can redistribute it and/or
8 // modify it under the terms of the GNU General Public License as
9 // published by the Free Software Foundation; either version 2 of the
10 // License, or (at your option) any later version.
11 //
12 // This program is distributed in the hope that it will be useful, but
13 // WITHOUT ANY WARRANTY; without even the implied warranty of
14 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15 // General Public License for more details.
16 //
17 // You should have received a copy of the GNU General Public License
18 // along with this program; if not, write to the Free Software
19 // Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
20 //
21 // $Id$
22 // (Log is kept at end of this file)
23
24
25 #include <Include/fg_constants.h>
26 #include <Include/fg_types.h>
27 #include <Math/mat3.h>
28 #include <Scenery/tile.hxx>
29
30 #include "fragment.hxx"
31
32
33 template <class T>
34 inline const int FG_SIGN(const T& x) {
35     return x < T(0) ? -1 : 1;
36 }
37
38 template <class T>
39 inline const T& FG_MIN(const T& a, const T& b) {
40     return b < a ? b : a;
41 }
42
43 template <class T>
44 inline const T& FG_MAX(const T& a, const T& b) {
45     return  a < b ? b : a;
46 }
47
48 // return the minimum of the three values
49 template <class T>
50 inline const T& fg_min3( const T& a, const T& b, const T& c)
51 {
52     return (a > b ? FG_MIN (b, c) : FG_MIN (a, c));
53 }
54
55
56 // return the maximum of the three values
57 template <class T>
58 inline const T& fg_max3 (const T& a, const T& b, const T& c)
59 {
60     return (a < b ? FG_MAX (b, c) : FG_MAX (a, c));
61 }
62
63 // Add a face to the face list
64 // Copy constructor
65 fgFRAGMENT::fgFRAGMENT ( const fgFRAGMENT & rhs ) :
66     center         ( rhs.center          ),
67     bounding_radius( rhs.bounding_radius ),
68     material_ptr   ( rhs.material_ptr    ),
69     tile_ptr       ( rhs.tile_ptr        ),
70     display_list   ( rhs.display_list    ),
71     faces          ( rhs.faces           )
72 {
73 }
74
75 fgFRAGMENT & fgFRAGMENT::operator = ( const fgFRAGMENT & rhs )
76 {
77     if(!(this == &rhs )) {
78         center          = rhs.center;
79         bounding_radius = rhs.bounding_radius;
80         material_ptr    = rhs.material_ptr;
81         tile_ptr        = rhs.tile_ptr;
82         // display_list    = rhs.display_list;
83         faces           = rhs.faces;
84     }
85     return *this;
86 }
87
88
89 // test if line intesects with this fragment.  p0 and p1 are the two
90 // line end points of the line.  If side_flag is true, check to see
91 // that end points are on opposite sides of face.  Returns 1 if it
92 // intersection found, 0 otherwise.  If it intesects, result is the
93 // point of intersection
94
95 int fgFRAGMENT::intersect( const fgPoint3d *end0,
96                            const fgPoint3d *end1,
97                            int side_flag,
98                            fgPoint3d *result) const
99 {
100     fgTILE *t;
101     MAT3vec v1, v2, n, center;
102     double p1[3], p2[3], p3[3];
103     double x, y, z;  // temporary holding spot for result
104     double a, b, c, d;
105     double x0, y0, z0, x1, y1, z1, a1, b1, c1;
106     double t1, t2, t3;
107     double xmin, xmax, ymin, ymax, zmin, zmax;
108     double dx, dy, dz, min_dim, x2, y2, x3, y3, rx, ry;
109     int side1, side2;
110
111     // find the associated tile
112     t = tile_ptr;
113
114     // printf("Intersecting\n");
115
116     // traverse the face list for this fragment
117     const_iterator last = faces.end();
118     for ( const_iterator current = faces.begin(); current != last; ++current )
119     {
120         // printf(".");
121
122         // get face vertex coordinates
123         center[0] = t->center.x;
124         center[1] = t->center.y;
125         center[2] = t->center.z;
126
127         MAT3_ADD_VEC(p1, t->nodes[(*current).n1], center);
128         MAT3_ADD_VEC(p2, t->nodes[(*current).n2], center);
129         MAT3_ADD_VEC(p3, t->nodes[(*current).n3], center);
130
131         // printf("point 1 = %.2f %.2f %.2f\n", p1[0], p1[1], p1[2]);
132         // printf("point 2 = %.2f %.2f %.2f\n", p2[0], p2[1], p2[2]);
133         // printf("point 3 = %.2f %.2f %.2f\n", p3[0], p3[1], p3[2]);
134
135         // calculate two edge vectors, and the face normal
136         MAT3_SUB_VEC(v1, p2, p1);
137         MAT3_SUB_VEC(v2, p3, p1);
138         MAT3cross_product(n, v1, v2);
139
140         // calculate the plane coefficients for the plane defined by
141         // this face.  If n is the normal vector, n = (a, b, c) and p1
142         // is a point on the plane, p1 = (x0, y0, z0), then the
143         // equation of the line is a(x-x0) + b(y-y0) + c(z-z0) = 0
144         a = n[0];
145         b = n[1];
146         c = n[2];
147         d = a * p1[0] + b * p1[1] + c * p1[2];
148         // printf("a, b, c, d = %.2f %.2f %.2f %.2f\n", a, b, c, d);
149
150         // printf("p1(d) = %.2f\n", a * p1[0] + b * p1[1] + c * p1[2]);
151         // printf("p2(d) = %.2f\n", a * p2[0] + b * p2[1] + c * p2[2]);
152         // printf("p3(d) = %.2f\n", a * p3[0] + b * p3[1] + c * p3[2]);
153
154         // calculate the line coefficients for the specified line
155         x0 = end0->x;  x1 = end1->x;
156         y0 = end0->y;  y1 = end1->y;
157         z0 = end0->z;  z1 = end1->z;
158
159         if ( fabs(x1 - x0) > FG_EPSILON ) {
160             a1 = 1.0 / (x1 - x0);
161         } else {
162             // we got a big divide by zero problem here
163             a1 = 0.0;
164         }
165         b1 = y1 - y0;
166         c1 = z1 - z0;
167
168         // intersect the specified line with this plane
169         t1 = b * b1 * a1;
170         t2 = c * c1 * a1;
171
172         // printf("a = %.2f  t1 = %.2f  t2 = %.2f\n", a, t1, t2);
173
174         if ( fabs(a + t1 + t2) > FG_EPSILON ) {
175             x = (t1*x0 - b*y0 + t2*x0 - c*z0 + d) / (a + t1 + t2);
176             t3 = a1 * (x - x0);
177             y = b1 * t3 + y0;
178             z = c1 * t3 + z0;       
179             // printf("result(d) = %.2f\n", a * x + b * y + c * z);
180         } else {
181             // no intersection point
182             continue;
183         }
184
185         if ( side_flag ) {
186             // check to see if end0 and end1 are on opposite sides of
187             // plane
188             if ( (x - x0) > FG_EPSILON ) {
189                 t1 = x;
190                 t2 = x0;
191                 t3 = x1;
192             } else if ( (y - y0) > FG_EPSILON ) {
193                 t1 = y;
194                 t2 = y0;
195                 t3 = y1;
196             } else if ( (z - z0) > FG_EPSILON ) {
197                 t1 = z;
198                 t2 = z0;
199                 t3 = z1;
200             } else {
201                 // everything is too close together to tell the difference
202                 // so the current intersection point should work as good
203                 // as any
204                 result->x = x;
205                 result->y = y;
206                 result->z = z;
207                 return(1);
208             }
209             side1 = FG_SIGN (t1 - t2);
210             side2 = FG_SIGN (t1 - t3);
211             if ( side1 == side2 ) {
212                 // same side, punt
213                 continue;
214             }
215         }
216
217         // check to see if intersection point is in the bounding
218         // cube of the face
219 #ifdef XTRA_DEBUG_STUFF
220         xmin = fg_min3 (p1[0], p2[0], p3[0]);
221         xmax = fg_max3 (p1[0], p2[0], p3[0]);
222         ymin = fg_min3 (p1[1], p2[1], p3[1]);
223         ymax = fg_max3 (p1[1], p2[1], p3[1]);
224         zmin = fg_min3 (p1[2], p2[2], p3[2]);
225         zmax = fg_max3 (p1[2], p2[2], p3[2]);
226         printf("bounding cube = %.2f,%.2f,%.2f  %.2f,%.2f,%.2f\n",
227                xmin, ymin, zmin, xmax, ymax, zmax);
228 #endif
229         // punt if outside bouding cube
230         if ( x < (xmin = fg_min3 (p1[0], p2[0], p3[0])) ) {
231             continue;
232         } else if ( x > (xmax = fg_max3 (p1[0], p2[0], p3[0])) ) {
233             continue;
234         } else if ( y < (ymin = fg_min3 (p1[1], p2[1], p3[1])) ) {
235             continue;
236         } else if ( y > (ymax = fg_max3 (p1[1], p2[1], p3[1])) ) {
237             continue;
238         } else if ( z < (zmin = fg_min3 (p1[2], p2[2], p3[2])) ) {
239             continue;
240         } else if ( z > (zmax = fg_max3 (p1[2], p2[2], p3[2])) ) {
241             continue;
242         }
243
244         // (finally) check to see if the intersection point is
245         // actually inside this face
246
247         //first, drop the smallest dimension so we only have to work
248         //in 2d.
249         dx = xmax - xmin;
250         dy = ymax - ymin;
251         dz = zmax - zmin;
252         min_dim = fg_min3 (dx, dy, dz);
253         if ( fabs(min_dim - dx) <= FG_EPSILON ) {
254             // x is the smallest dimension
255             x1 = p1[1];
256             y1 = p1[2];
257             x2 = p2[1];
258             y2 = p2[2];
259             x3 = p3[1];
260             y3 = p3[2];
261             rx = y;
262             ry = z;
263         } else if ( fabs(min_dim - dy) <= FG_EPSILON ) {
264             // y is the smallest dimension
265             x1 = p1[0];
266             y1 = p1[2];
267             x2 = p2[0];
268             y2 = p2[2];
269             x3 = p3[0];
270             y3 = p3[2];
271             rx = x;
272             ry = z;
273         } else if ( fabs(min_dim - dz) <= FG_EPSILON ) {
274             // z is the smallest dimension
275             x1 = p1[0];
276             y1 = p1[1];
277             x2 = p2[0];
278             y2 = p2[1];
279             x3 = p3[0];
280             y3 = p3[1];
281             rx = x;
282             ry = y;
283         } else {
284             // all dimensions are really small so lets call it close
285             // enough and return a successful match
286             result->x = x;
287             result->y = y;
288             result->z = z;
289             return(1);
290         }
291
292         // check if intersection point is on the same side of p1 <-> p2 as p3
293         t1 = (y1 - y2) / (x1 - x2);
294         side1 = FG_SIGN (t1 * ((x3) - x2) + y2 - (y3));
295         side2 = FG_SIGN (t1 * ((rx) - x2) + y2 - (ry));
296         if ( side1 != side2 ) {
297             // printf("failed side 1 check\n");
298             continue;
299         }
300
301         // check if intersection point is on correct side of p2 <-> p3 as p1
302         t1 = (y2 - y3) / (x2 - x3);
303         side1 = FG_SIGN (t1 * ((x1) - x3) + y3 - (y1));
304         side2 = FG_SIGN (t1 * ((rx) - x3) + y3 - (ry));
305         if ( side1 != side2 ) {
306             // printf("failed side 2 check\n");
307             continue;
308         }
309
310         // check if intersection point is on correct side of p1 <-> p3 as p2
311         t1 = (y1 - y3) / (x1 - x3);
312         side1 = FG_SIGN (t1 * ((x2) - x3) + y3 - (y2));
313         side2 = FG_SIGN (t1 * ((rx) - x3) + y3 - (ry));
314         if ( side1 != side2 ) {
315             // printf("failed side 3  check\n");
316             continue;
317         }
318
319         // printf( "intersection point = %.2f %.2f %.2f\n", x, y, z);
320         result->x = x;
321         result->y = y;
322         result->z = z;
323         return(1);
324     }
325
326     // printf("\n");
327
328     return(0);
329 }
330
331 // $Log$
332 // Revision 1.4  1998/09/15 01:35:03  curt
333 // cleaned up my fragment.num_faces hack :-) to use the STL (no need in
334 // duplicating work.)
335 // Tweaked fgTileMgrRender() do not calc tile matrix unless necessary.
336 // removed some unneeded stuff from fgTileMgrCurElev()
337 //
338 // Revision 1.3  1998/09/08 21:40:42  curt
339 // Updates from Bernie Bright.
340 //
341 // Revision 1.2  1998/09/01 19:03:07  curt
342 // Changes contributed by Bernie Bright <bbright@c031.aone.net.au>
343 //  - The new classes in libmisc.tgz define a stream interface into zlib.
344 //    I've put these in a new directory, Lib/Misc.  Feel free to rename it
345 //    to something more appropriate.  However you'll have to change the
346 //    include directives in all the other files.  Additionally you'll have
347 //    add the library to Lib/Makefile.am and Simulator/Main/Makefile.am.
348 //
349 //    The StopWatch class in Lib/Misc requires a HAVE_GETRUSAGE autoconf
350 //    test so I've included the required changes in config.tgz.
351 //
352 //    There are a fair few changes to Simulator/Objects as I've moved
353 //    things around.  Loading tiles is quicker but thats not where the delay
354 //    is.  Tile loading takes a few tenths of a second per file on a P200
355 //    but it seems to be the post-processing that leads to a noticeable
356 //    blip in framerate.  I suppose its time to start profiling to see where
357 //    the delays are.
358 //
359 //    I've included a brief description of each archives contents.
360 //
361 // Lib/Misc/
362 //   zfstream.cxx
363 //   zfstream.hxx
364 //     C++ stream interface into zlib.
365 //     Taken from zlib-1.1.3/contrib/iostream/.
366 //     Minor mods for STL compatibility.
367 //     There's no copyright associated with these so I assume they're
368 //     covered by zlib's.
369 //
370 //   fgstream.cxx
371 //   fgstream.hxx
372 //     FlightGear input stream using gz_ifstream.  Tries to open the
373 //     given filename.  If that fails then filename is examined and a
374 //     ".gz" suffix is removed or appended and that file is opened.
375 //
376 //   stopwatch.hxx
377 //     A simple timer for benchmarking.  Not used in production code.
378 //     Taken from the Blitz++ project.  Covered by GPL.
379 //
380 //   strutils.cxx
381 //   strutils.hxx
382 //     Some simple string manipulation routines.
383 //
384 // Simulator/Airports/
385 //   Load airports database using fgstream.
386 //   Changed fgAIRPORTS to use set<> instead of map<>.
387 //   Added bool fgAIRPORTS::search() as a neater way doing the lookup.
388 //   Returns true if found.
389 //
390 // Simulator/Astro/
391 //   Modified fgStarsInit() to load stars database using fgstream.
392 //
393 // Simulator/Objects/
394 //   Modified fgObjLoad() to use fgstream.
395 //   Modified fgMATERIAL_MGR::load_lib() to use fgstream.
396 //   Many changes to fgMATERIAL.
397 //   Some changes to fgFRAGMENT but I forget what!
398 //
399 // Revision 1.1  1998/08/25 16:51:23  curt
400 // Moved from ../Scenery
401 //
402 //
403