]> Pileus Git - grits/blob - src/objects/grits-object.c
Add grits_object_queue_draw function
[grits] / src / objects / grits-object.c
1 /*
2  * Copyright (C) 2009-2010 Andy Spencer <andy753421@gmail.com>
3  *
4  * This program is free software: you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License as published by
6  * the Free Software Foundation, either version 3 of the License, or
7  * (at your option) any later version.
8  *
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  * GNU General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
16  */
17
18 /**
19  * SECTION:grits-object
20  * @short_description: Base class for drawing operations
21  *
22  * Objects in grits are things which can be added to the viewer and will be
23  * displayed to the user. Each object has information such as it's location and
24  * level of detail which are used by the viewer to determine which objects
25  * should be drawn.
26  *
27  * Each #GritsObject is also a #GObject, but not every GObject in grits is a
28  * GritsObject. The "Object" part of the name is just coincidence.
29  */
30
31 #include <config.h>
32 #include <math.h>
33 #include <GL/gl.h>
34
35 #include "grits-object.h"
36
37
38 /**
39  * grits_object_draw:
40  * @object: the object
41  * @opengl: the viewer the object is being displayed in
42  *
43  * Perform any OpenGL commands necessasairy to draw the object.
44  *
45  * The GL_PROJECTION and GL_MODELVIEW matricies and GL_ALL_ATTRIB_BITS will be
46  * restored to the default state after the call to draw.
47  */
48 void grits_object_draw(GritsObject *object, GritsOpenGL *opengl)
49 {
50         GritsObjectClass *klass = GRITS_OBJECT_GET_CLASS(object);
51         if (!klass->draw) {
52                 g_warning("GritsObject: draw - Unimplemented");
53                 return;
54         }
55
56         /* Skip hidden objects */
57         if (object->hidden)
58                 return;
59
60         /* Skip out of range objects */
61         if (object->lod > 0) {
62                 /* LOD test */
63                 gdouble eye[3], obj[3];
64                 grits_viewer_get_location(GRITS_VIEWER(opengl), &eye[0], &eye[1], &eye[2]);
65                 gdouble elev = eye[2];
66                 lle2xyz(eye[0], eye[1], eye[2], &eye[0], &eye[1], &eye[2]);
67                 lle2xyz(object->center.lat, object->center.lon, object->center.elev,
68                         &obj[0], &obj[1], &obj[2]);
69                 gdouble dist = distd(obj, eye);
70                 if (object->lod < dist)
71                         return;
72
73                 /* Horizon testing */
74                 gdouble c = EARTH_R+elev;
75                 gdouble a = EARTH_R;
76                 gdouble horizon = sqrt(c*c - a*a);
77                 if (dist > horizon)
78                         return;
79         }
80
81         /* Save state, draw, restore state */
82         g_mutex_lock(opengl->sphere_lock);
83         glPushAttrib(GL_ALL_ATTRIB_BITS);
84         glMatrixMode(GL_PROJECTION); glPushMatrix();
85         glMatrixMode(GL_MODELVIEW);  glPushMatrix();
86
87         klass->draw(object, opengl);
88
89         glPopAttrib();
90         glMatrixMode(GL_PROJECTION); glPopMatrix();
91         glMatrixMode(GL_MODELVIEW);  glPopMatrix();
92         g_mutex_unlock(opengl->sphere_lock);
93 }
94
95 void grits_object_queue_draw(GritsObject *object)
96 {
97         if (object->viewer)
98                 gtk_widget_queue_draw(GTK_WIDGET(object->viewer));
99 }
100
101 /* GObject stuff */
102 G_DEFINE_ABSTRACT_TYPE(GritsObject, grits_object, G_TYPE_OBJECT);
103 static void grits_object_init(GritsObject *object)
104 {
105 }
106
107 static void grits_object_class_init(GritsObjectClass *klass)
108 {
109 }