]> Pileus Git - grits/blob - src/plugins/env.c
Switch from GtkGLExt to internal OpenGL handling
[grits] / src / plugins / env.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:env
20  * @short_description: Environment plugin
21  *
22  * #GritsPluginEnv provides environmental information such as sky images. It can
23  * also paint a blank overlay on the surface so that other plugins can draw
24  * transparent overlays nicely.
25  */
26
27 #include <math.h>
28 #include <GL/gl.h>
29
30 #include <grits.h>
31
32 #include "env.h"
33
34 /***********
35  * Helpers *
36  ***********/
37 static void expose(GritsCallback *callback, GritsOpenGL *opengl, gpointer _env)
38 {
39         GritsPluginEnv *env = GRITS_PLUGIN_ENV(_env);
40         g_debug("GritsPluginEnv: expose");
41
42         gdouble lat, lon, elev;
43         grits_viewer_get_location(env->viewer, &lat, &lon, &elev);
44
45         /* Misc */
46         gdouble rg   = MAX(0, 1-(elev/40000));
47         gdouble blue = MAX(0, 1-(elev/100000));
48         glClearColor(MIN(0.4,rg), MIN(0.4,rg), MIN(1,blue), 1.0f);
49         glClear(GL_COLOR_BUFFER_BIT);
50
51         /* Attempt to render an atmosphere */
52         glEnable(GL_COLOR_MATERIAL);
53         glDisable(GL_CULL_FACE);
54         glDisable(GL_LIGHTING);
55         glMatrixMode(GL_MODELVIEW);
56         glBlendFunc(GL_SRC_ALPHA, GL_DST_ALPHA);
57         grits_viewer_center_position(env->viewer, lat, lon, -EARTH_R);
58
59         gdouble ds  = EARTH_R+elev;     // distance to self
60         gdouble da  = EARTH_R+300000;   // distance to top of atmosphere
61         gdouble dg  = EARTH_R-100000;   // distance to top of atmosphere
62         gdouble ang = acos(EARTH_R/ds); // angle to horizon
63         ang = MAX(ang,0.1);
64
65         gdouble ar  = sin(ang)*da;      // top of quad fan "atomosphere"j
66         gdouble az  = cos(ang)*da;      //
67
68         gdouble gr  = sin(ang)*dg;      // bottom of quad fan "ground"
69         gdouble gz  = cos(ang)*dg;      //
70
71         glBegin(GL_QUAD_STRIP);
72         for (gdouble i = 0; i <= 2*G_PI; i += G_PI/30) {
73                 glColor4f(0.3, 0.3, 1.0, 1.0); glVertex3f(gr*sin(i), gr*cos(i), gz);
74                 glColor4f(0.3, 0.3, 1.0, 0.0); glVertex3f(ar*sin(i), ar*cos(i), az);
75         }
76         glEnd();
77 }
78
79
80 /***********
81  * Methods *
82  ***********/
83 /**
84  * grits_plugin_env_new:
85  * @viewer: the #GritsViewer to use for drawing
86  * @prefs:  the #GritsPrefs for storing configurations
87  *
88  * Create a new instance of the environment plugin.
89  *
90  * Returns: the new #GritsPluginEnv
91  */
92 GritsPluginEnv *grits_plugin_env_new(GritsViewer *viewer, GritsPrefs *prefs)
93 {
94         g_debug("GritsPluginEnv: new");
95         GritsPluginEnv *env = g_object_new(GRITS_TYPE_PLUGIN_ENV, NULL);
96         env->viewer = g_object_ref(viewer);
97
98         /* Create objects */
99         GritsCallback *callback   = grits_callback_new(expose, env);
100         GritsTile     *background = grits_tile_new(NULL, NORTH, SOUTH, EAST, WEST);
101         glGenTextures(1, &env->tex);
102         background->data = &env->tex;
103
104         /* Add renderers */
105         gpointer ref1, ref2;
106         ref1 = grits_viewer_add(viewer, GRITS_OBJECT(callback),   GRITS_LEVEL_BACKGROUND, FALSE);
107         ref2 = grits_viewer_add(viewer, GRITS_OBJECT(background), GRITS_LEVEL_BACKGROUND, FALSE);
108         env->refs = g_list_prepend(env->refs, ref1);
109         env->refs = g_list_prepend(env->refs, ref2);
110
111         return env;
112 }
113
114
115 /****************
116  * GObject code *
117  ****************/
118 /* Plugin init */
119 static void grits_plugin_env_plugin_init(GritsPluginInterface *iface);
120 G_DEFINE_TYPE_WITH_CODE(GritsPluginEnv, grits_plugin_env, G_TYPE_OBJECT,
121                 G_IMPLEMENT_INTERFACE(GRITS_TYPE_PLUGIN,
122                         grits_plugin_env_plugin_init));
123 static void grits_plugin_env_plugin_init(GritsPluginInterface *iface)
124 {
125         g_debug("GritsPluginEnv: plugin_init");
126         /* Add methods to the interface */
127 }
128 /* Class/Object init */
129 static void grits_plugin_env_init(GritsPluginEnv *env)
130 {
131         g_debug("GritsPluginEnv: init");
132         /* Set defaults */
133 }
134 static void grits_plugin_env_dispose(GObject *gobject)
135 {
136         g_debug("GritsPluginEnv: dispose");
137         GritsPluginEnv *env = GRITS_PLUGIN_ENV(gobject);
138         /* Drop references */
139         if (env->viewer) {
140                 for (GList *cur = env->refs; cur; cur = cur->next)
141                         grits_viewer_remove(env->viewer, cur->data);
142                 g_list_free(env->refs);
143                 g_object_unref(env->viewer);
144                 glDeleteTextures(1, &env->tex);
145                 env->viewer = NULL;
146         }
147         G_OBJECT_CLASS(grits_plugin_env_parent_class)->dispose(gobject);
148 }
149 static void grits_plugin_env_class_init(GritsPluginEnvClass *klass)
150 {
151         g_debug("GritsPluginEnv: class_init");
152         GObjectClass *gobject_class = (GObjectClass*)klass;
153         gobject_class->dispose = grits_plugin_env_dispose;
154 }