]> Pileus Git - grits/blob - src/gis-opengl.h
Fix naming for the GisView/GisWorld -> GisViewer merge
[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-viewer.h"
37 #include "gis-plugin.h"
38 #include "gis-tile.h"
39 #include "roam.h"
40
41 struct _GisOpenGL {
42         GtkDrawingArea parent_instance;
43
44         /* instance members */
45         GisViewer  *viewer;
46         GisPlugins *plugins;
47         RoamSphere *sphere;
48         guint       sm_source[2];
49
50         /* for testing */
51         gboolean    wireframe;
52 };
53
54 struct _GisOpenGLClass {
55         GtkDrawingAreaClass parent_class;
56
57         /* class members */
58 };
59
60 GType gis_opengl_get_type(void);
61
62 /* Methods */
63 GisOpenGL *gis_opengl_new(GisViewer *viewer, GisPlugins *plugins);
64
65 void gis_opengl_center_position(GisOpenGL *opengl,
66                 gdouble lat, gdouble lon, gdouble elev);
67
68 void gis_opengl_project(GisOpenGL *opengl,
69                 gdouble lat, gdouble lon, gdouble elev,
70                 gdouble *px, gdouble *py, gdouble *pz);
71
72 void gis_opengl_render_tile(GisOpenGL *opengl, GisTile *tile);
73
74 void gis_opengl_render_tiles(GisOpenGL *opengl, GisTile *root);
75
76 void gis_opengl_set_height_func(GisOpenGL *self, GisTile *tile,
77                 RoamHeightFunc height_func, gpointer user_data, gboolean update);
78
79 void gis_opengl_clear_height_func(GisOpenGL *self);
80
81 void gis_opengl_redraw(GisOpenGL *opengl);
82
83 void gis_opengl_begin(GisOpenGL *opengl);
84 void gis_opengl_end(GisOpenGL *opengl);
85 void gis_opengl_flush(GisOpenGL *opengl);
86
87 #endif