]> Pileus Git - grits/blob - src/gis-opengl.h
37099a7d93b873d28c295fd0ad2b024076818b1d
[grits] / src / gis-opengl.h
1 /*
2  * Copyright (C) 2009 Andy Spencer <spenceal@rose-hulman.edu>
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 #ifndef __GIS_OPENGL_H__
19 #define __GIS_OPENGL_H__
20
21 #include <gtk/gtk.h>
22 #include <gtk/gtkgl.h>
23 #include <glib-object.h>
24
25 /* Type macros */
26 #define GIS_TYPE_OPENGL            (gis_opengl_get_type())
27 #define GIS_OPENGL(obj)            (G_TYPE_CHECK_INSTANCE_CAST((obj),   GIS_TYPE_OPENGL, GisOpenGL))
28 #define GIS_IS_OPENGL(obj)         (G_TYPE_CHECK_INSTANCE_TYPE((obj),   GIS_TYPE_OPENGL))
29 #define GIS_OPENGL_CLASS(klass)    (G_TYPE_CHECK_CLASS_CAST   ((klass), GIS_TYPE_OPENGL, GisOpenGLClass))
30 #define GIS_IS_OPENGL_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE   ((klass), GIS_TYPE_OPENGL))
31 #define GIS_OPENGL_GET_CLASS(obj)  (G_TYPE_INSTANCE_GET_CLASS ((obj),   GIS_TYPE_OPENGL, GisOpenGLClass))
32
33 typedef struct _GisOpenGL      GisOpenGL;
34 typedef struct _GisOpenGLClass GisOpenGLClass;
35
36 #include "gis-view.h"
37 #include "gis-world.h"
38 #include "gis-plugin.h"
39 #include "gis-tile.h"
40 #include "roam.h"
41
42 struct _GisOpenGL {
43         GtkDrawingArea parent_instance;
44
45         /* instance members */
46         GisWorld   *world;
47         GisView    *view;
48         GisPlugins *plugins;
49         RoamSphere *sphere;
50         guint       sm_source;
51
52         /* for testing */
53         gboolean    wireframe;
54 };
55
56 struct _GisOpenGLClass {
57         GtkDrawingAreaClass parent_class;
58
59         /* class members */
60 };
61
62 GType gis_opengl_get_type(void);
63
64 /* Methods */
65 GisOpenGL *gis_opengl_new(GisWorld *world, GisView *view, GisPlugins *plugins);
66
67 void gis_opengl_center_position(GisOpenGL *opengl,
68                 gdouble lat, gdouble lon, gdouble elev);
69
70 void gis_opengl_render_tile(GisOpenGL *opengl, GisTile *tile);
71
72 void gis_opengl_render_tiles(GisOpenGL *opengl, GisTile *root);
73
74 void gis_opengl_set_height_func(GisOpenGL *self, GisTile *tile,
75                 RoamHeightFunc height_func, gpointer user_data, gboolean update);
76
77 void gis_opengl_redraw(GisOpenGL *opengl);
78
79 void gis_opengl_begin(GisOpenGL *opengl);
80 void gis_opengl_end(GisOpenGL *opengl);
81 void gis_opengl_flush(GisOpenGL *opengl);
82
83 #endif