]> git.mxchange.org Git - flightgear.git/blob - Scenery/tile.hxx
Working first pass at material proporty sorting.
[flightgear.git] / Scenery / tile.hxx
1 // tile.hxx -- routines to handle a scenery tile
2 //
3 // Written by Curtis Olson, started May 1998.
4 //
5 // Copyright (C) 1998  Curtis L. Olson  - curt@infoplane.com
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 #ifndef _TILE_HXX
26 #define _TILE_HXX
27
28
29 #ifndef __cplusplus                                                          
30 # error This library requires C++
31 #endif                                   
32
33 #ifdef HAVE_CONFIG_H
34 #  include <config.h>
35 #endif
36
37 #ifdef HAVE_WINDOWS_H
38 #  include <windows.h>
39 #endif
40
41 #include <GL/glut.h>
42 #include <XGL/xgl.h>
43
44 #include <list>         // STL list
45
46 #include <Bucket/bucketutils.h>
47 #include <Include/fg_types.h>
48
49
50 // Object fragment data class
51 class fgFRAGMENT {
52
53 public:
54     // culling data for this object fragment (fine grain culling)
55     fgCartesianPoint3d center;
56     double bounding_radius;
57
58     // variable offset data for this object fragment for this frame
59     fgCartesianPoint3d tile_offset;
60
61     // saved transformation matrix for this fragment (used by renderer)
62     // GLfloat matrix[16];
63
64     // material property pointer
65     void *material_ptr;
66
67     // OpenGL display list for fragment data
68     GLint display_list;
69
70     // Constructor
71     fgFRAGMENT ( void );
72
73     // Destructor
74     ~fgFRAGMENT ( void );
75 };
76
77
78 // Scenery tile class
79 class fgTILE {
80
81 public:
82
83     // culling data for whole tile (course grain culling)
84     fgCartesianPoint3d center;
85     double bounding_radius;
86     fgCartesianPoint3d offset;
87
88     // this tile's official location in the world
89     struct fgBUCKET tile_bucket;
90
91     // the tile cache will mark here if the tile is being used
92     int used;
93
94     list < fgFRAGMENT > fragment_list;
95
96     // Constructor
97     fgTILE ( void );
98
99     // Destructor
100     ~fgTILE ( void );
101 };
102
103
104 #endif // _TILE_HXX 
105
106
107 // $Log$
108 // Revision 1.6  1998/06/08 17:57:54  curt
109 // Working first pass at material proporty sorting.
110 //
111 // Revision 1.5  1998/06/06 01:09:32  curt
112 // I goofed on the log message in the last commit ... now fixed.
113 //
114 // Revision 1.4  1998/06/06 01:07:18  curt
115 // Increased per material fragment list size from 100 to 400.
116 // Now correctly draw viewable fragments in per material order.
117 //
118 // Revision 1.3  1998/06/05 22:39:54  curt
119 // Working on sorting by, and rendering by material properties.
120 //
121 // Revision 1.2  1998/06/03 00:47:50  curt
122 // No .h for STL includes.
123 // Minor view culling optimizations.
124 //
125 // Revision 1.1  1998/05/23 14:09:21  curt
126 // Added tile.cxx and tile.hxx.
127 // Working on rewriting the tile management system so a tile is just a list
128 // fragments, and the fragment record contains the display list for that fragment.
129 //