]> Pileus Git - grits/blob - src/plugins/env.c
Add blank background color to env
[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 #include <math.h>
19 #include <gtk/gtkgl.h>
20 #include <GL/gl.h>
21
22 #include <gis/gis.h>
23
24 #include "env.h"
25
26 /***********
27  * Helpers *
28  ***********/
29 static gpointer expose(GisCallback *callback, gpointer _self)
30 {
31         GisPluginEnv *self = GIS_PLUGIN_ENV(_self);
32         g_debug("GisPluginEnv: expose");
33
34         gdouble lat, lon, elev;
35         gis_viewer_get_location(self->viewer, &lat, &lon, &elev);
36
37         /* Misc */
38         gdouble rg   = MAX(0, 1-(elev/20000));
39         gdouble blue = MAX(0, 1-(elev/50000));
40         glClearColor(MIN(0.65,rg), MIN(0.65,rg), MIN(1,blue), 1.0f);
41         glClear(GL_COLOR_BUFFER_BIT);
42
43         /* Clear the earth */
44         gis_viewer_render_tile(self->viewer, self->background);
45
46         /* Attempt to render an atmosphere */
47         /*
48         glEnable(GL_COLOR_MATERIAL);
49         glDisable(GL_CULL_FACE);
50         glDisable(GL_LIGHTING);
51
52         glBlendFunc(GL_ONE, GL_ONE);
53
54         glMatrixMode(GL_MODELVIEW);
55
56         elev = -EARTH_R;
57         for (elev = -EARTH_R; elev < 0; elev += EARTH_R/10) {
58                 glPushMatrix();
59                 glColor4f(0.3, 0.3, 1.0, 0.2);
60                 gis_viewer_center_position(self->viewer, lat, lon, elev);
61
62                 glBegin(GL_TRIANGLE_FAN);
63                 glVertex3f(0, 0, 0);
64                 for (gdouble i = 0; i <= 2*G_PI; i += G_PI/10) {
65                         gint rad = 1*EARTH_R + 300000;
66                         glVertex3f(rad*sin(i), rad*cos(i), 0);
67                         g_message("%f %f %f", 3*EARTH_R*sin(i), 3*EARTH_R*cos(i), 0.);
68                 }
69                 glEnd();
70                 glPopMatrix();
71         }
72         */
73
74         return NULL;
75 }
76
77
78 /***********
79  * Methods *
80  ***********/
81 GisPluginEnv *gis_plugin_env_new(GisViewer *viewer, GisPrefs *prefs)
82 {
83         g_debug("GisPluginEnv: new");
84         GisPluginEnv *self = g_object_new(GIS_TYPE_PLUGIN_ENV, NULL);
85         self->viewer = viewer;
86
87         /* Load blank background texture */
88         glGenTextures(1, &self->tex);
89         self->background = gis_tile_new(NULL, NORTH, SOUTH, EAST, WEST);
90         self->background->data = &self->tex;
91
92         /* Add renderers */
93         GisCallback *callback = gis_callback_new(expose, self);
94         gis_viewer_add(viewer, GIS_OBJECT(callback), GIS_LEVEL_BACKGROUND, 0);
95
96         return self;
97 }
98
99
100 /****************
101  * GObject code *
102  ****************/
103 /* Plugin init */
104 static void gis_plugin_env_plugin_init(GisPluginInterface *iface);
105 G_DEFINE_TYPE_WITH_CODE(GisPluginEnv, gis_plugin_env, G_TYPE_OBJECT,
106                 G_IMPLEMENT_INTERFACE(GIS_TYPE_PLUGIN,
107                         gis_plugin_env_plugin_init));
108 static void gis_plugin_env_plugin_init(GisPluginInterface *iface)
109 {
110         g_debug("GisPluginEnv: plugin_init");
111         /* Add methods to the interface */
112 }
113 /* Class/Object init */
114 static void gis_plugin_env_init(GisPluginEnv *self)
115 {
116         g_debug("GisPluginEnv: init");
117         /* Set defaults */
118 }
119 static void gis_plugin_env_dispose(GObject *gobject)
120 {
121         g_debug("GisPluginEnv: dispose");
122         GisPluginEnv *self = GIS_PLUGIN_ENV(gobject);
123         /* Drop references */
124         G_OBJECT_CLASS(gis_plugin_env_parent_class)->dispose(gobject);
125 }
126 static void gis_plugin_env_class_init(GisPluginEnvClass *klass)
127 {
128         g_debug("GisPluginEnv: class_init");
129         GObjectClass *gobject_class = (GObjectClass*)klass;
130         gobject_class->dispose  = gis_plugin_env_dispose;
131 }