]> Pileus Git - grits/blob - src/objects/grits-marker.c
148289cc9db43e3dc469618c31c41cca080ceaae
[grits] / src / objects / grits-marker.c
1 /*
2  * Copyright (C) 2009-2011 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-marker
20  * @short_description: Single point markers
21  *
22  * Each #GritsMarker represents some point on the earth with some form of
23  * content. Commonly this is used to mark geographic features such as cities or
24  * states.
25  * 
26  * While markers represent a place in three dimensions somewhere on, below, or
27  * above the surface of the earth, they are drawn in 2 dimensions so that they
28  * look normal and readable by the user. Due to this, GritsObjects should almost
29  * always be added to the GRITS_LEVEL_OVERLAY level so they are drawn "above" the
30  * actual earth.
31  */
32
33 #include <config.h>
34 #include <math.h>
35 #include "gtkgl.h"
36 #include "grits-marker.h"
37
38 /* Texture setup functions */
39 static void render_point(GritsMarker *marker)
40 {
41         /* Draw outline */
42         cairo_set_source_rgba(marker->cairo, 0, 0, 0, 1);
43         cairo_set_line_width(marker->cairo, marker->outline*2);
44
45         cairo_arc(marker->cairo, marker->xoff, marker->yoff, marker->radius,
46                   0, 2*G_PI);
47         cairo_stroke(marker->cairo);
48
49         /* Draw filler */
50         cairo_set_source_rgba(marker->cairo, 1, 1, 1, 1);
51
52         cairo_arc(marker->cairo, marker->xoff, marker->yoff, marker->radius,
53                   0, 2*G_PI);
54         cairo_fill(marker->cairo);
55 }
56
57 static void render_label(GritsMarker *marker)
58 {
59         g_assert(marker->label);
60
61         cairo_set_source_rgba(marker->cairo, 0, 0, 0, 1);
62         cairo_select_font_face(marker->cairo, "sans-serif",
63                         CAIRO_FONT_SLANT_NORMAL, CAIRO_FONT_WEIGHT_BOLD);
64         cairo_set_font_size(marker->cairo, 13);
65         cairo_move_to(marker->cairo, marker->xoff + (marker->icon_width  / 2),
66                                      marker->yoff - (marker->icon_height / 2));
67         cairo_text_path(marker->cairo, marker->label);
68         cairo_stroke(marker->cairo);
69
70         /* Draw filler */
71         cairo_set_source_rgba(marker->cairo, 1, 1, 1, 1);
72         cairo_move_to(marker->cairo, marker->xoff + (marker->icon_width  / 2),
73                                      marker->yoff - (marker->icon_height / 2));
74         cairo_show_text(marker->cairo, marker->label);
75 }
76
77 static void render_icon(GritsMarker *marker)
78 {
79         g_assert(marker->icon_img != NULL);
80
81         /* This code assumes the icon is an image pointing toward 0 degrees
82         * (ie. north/up).  If marker->flip is set, then it will rotate the
83         * icon appropriately then reflect it across the vertical axis so
84         * it's never upside down. */
85         gdouble flip = 1.0;
86         gdouble angle = marker->angle % 360;
87         if (marker->flip && (angle < 360 && angle > 180)) {
88                 /* if icon rotates to the left half it will be upside down */
89                 flip = -1.0; /* flip horizontally */
90         }
91
92         cairo_save(marker->cairo);
93
94         /* move to marker location */
95         cairo_translate(marker->cairo, marker->xoff, marker->yoff);
96
97         /* perform rotation and flip in one transformation */
98         gdouble C = cos(angle*(M_PI/180.0));
99         gdouble S = sin(angle*(M_PI/180.0));
100         gdouble fx = flip; 
101         gdouble fy = 1.0;
102         gdouble tx = 0.0;
103         gdouble ty = 0.0;
104         cairo_matrix_t matrix;
105         cairo_matrix_init(&matrix,
106                 fx*C, fx*S,
107                 -S*fy, C*fy,
108                 C*tx*(1-fx)-S*ty*(fy-1)+tx-C*tx+S*ty,
109                 S*tx*(1-fx)+C*ty*(fy-1)+ty-S*tx-C*ty);
110         cairo_transform(marker->cairo, &matrix);
111
112         /* center image */
113         cairo_translate(marker->cairo, -marker->icon_width/2,
114                                        -marker->icon_height/2);
115
116         cairo_set_source_surface(marker->cairo, marker->icon_img, 0, 0);
117
118         cairo_paint(marker->cairo);
119         cairo_restore(marker->cairo);
120 }
121
122 static void render_all(GritsMarker *marker)
123 {
124         g_assert(marker);
125         if (marker->display_mask & GRITS_MARKER_DMASK_ICON)
126                 render_icon(marker);
127
128         if (marker->display_mask & GRITS_MARKER_DMASK_POINT)
129                 render_point(marker);
130
131         if (marker->display_mask & GRITS_MARKER_DMASK_LABEL)
132                 render_label(marker);
133
134         /* Load GL texture */
135         glEnable(GL_TEXTURE_2D);
136         glGenTextures(1, &marker->tex);
137         glBindTexture(GL_TEXTURE_2D, marker->tex);
138         glPixelStorei(GL_UNPACK_ALIGNMENT, 1);
139         glPixelStorei(GL_PACK_ALIGNMENT, 1);
140         glTexImage2D(GL_TEXTURE_2D, 0, 4, marker->width, marker->height,
141                 0, GL_BGRA, GL_UNSIGNED_BYTE,
142                 cairo_image_surface_get_data(cairo_get_target(marker->cairo)));
143         glTexParameterf(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_NEAREST);
144         glTexParameterf(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_NEAREST);
145 }
146
147
148 /* Constructors */
149 /**
150  * grits_marker_new:
151  * @label: a short description of the marker
152  *
153  * Create a new GritsMarker which shows the given label when drawn.
154  *
155  * Returns: the new #GritsMarker.
156  */
157 GritsMarker *grits_marker_new(const gchar *label)
158 {
159         GritsMarker *marker = g_object_new(GRITS_TYPE_MARKER, NULL);
160
161         marker->display_mask = GRITS_MARKER_DMASK_POINT |
162                                GRITS_MARKER_DMASK_LABEL;
163
164         //g_debug("GritsMarker: new - %s", label);
165         /* specify size of point and size of surface */
166         marker->outline =   2;
167         marker->radius  =   3;
168         marker->width   = 128;
169         marker->height  =  32;
170         marker->icon_width  = marker->radius * 2;
171         marker->icon_height = marker->radius * 3;
172
173         marker->xoff  = marker->radius+marker->outline;
174         marker->yoff  = marker->height-(marker->radius+marker->outline);
175         marker->cairo = cairo_create(cairo_image_surface_create(
176                         CAIRO_FORMAT_ARGB32, marker->width, marker->height));
177
178         marker->label = g_strdup(label);
179
180         render_all(marker);
181
182         return marker;
183 }
184
185 /**
186  * grits_marker_icon_new:
187  * @label:        The label to display if GRITS_MARKER_DMASK_LABEL is set
188  * @filename:     The filename of the icon
189  * @angle:        The angle to rotate the icon (0 is north)
190  * @flip:         Whether to flip the image so that it's never upside down.
191  *                Useful for non-symmetric icons which have an "up".
192  * @display_mask: A bitmask which specifies which items to display.
193  *
194  * Create a new marker with a label, point, icon (png), or any
195  * combination of the above.
196  *
197  * Returns: the new #GritsMarker
198  */
199 GritsMarker *grits_marker_icon_new(const gchar *label, const gchar *filename,
200     guint angle, gboolean flip, guint display_mask)
201 {
202         GritsMarker *marker = g_object_new(GRITS_TYPE_MARKER, NULL);
203
204         marker->label = g_strdup(label);
205         marker->angle = angle;
206         marker->flip = flip;
207         marker->display_mask = display_mask;
208
209         if (display_mask & GRITS_MARKER_DMASK_ICON) {
210                 g_assert(filename != NULL);
211                 g_debug("GritsMarker: marker_icon_new - marker image %s",
212                         filename);
213                 marker->icon_img = cairo_image_surface_create_from_png(filename);
214                 if (cairo_surface_status(marker->icon_img)) {
215                         g_warning("GritsMarker: marker_icon_new - "
216                                   "error reading file %s", filename);
217                         /* convert it to a point, better than nothing */
218                         marker->display_mask &= ~GRITS_MARKER_DMASK_ICON;
219                         marker->display_mask |=  GRITS_MARKER_DMASK_POINT;
220                         marker->icon_width = 4;
221                         marker->icon_height = 8;
222
223                 } else {
224                         marker->icon_width =
225                             cairo_image_surface_get_width(marker->icon_img);
226                         marker->icon_height =
227                             cairo_image_surface_get_height(marker->icon_img);
228                 }
229         } else {
230                 marker->icon_img = NULL;
231                 marker->icon_width = 4; /* room for the point if there is one */
232                 marker->icon_height = 8;
233         }
234         g_debug("GritsMarker: marker_icon_new - width = %d, height = %d",
235                 marker->icon_width, marker->icon_height);
236
237         marker->outline =   2;
238         marker->radius  =   3;
239         /* this is the surface size, a guess really */
240         marker->width   = marker->icon_width  + 128;
241         marker->height  = marker->icon_height + 64;
242
243         marker->xoff  = marker->width/2;
244         marker->yoff  = marker->height/2;
245         marker->cairo = cairo_create(cairo_image_surface_create(
246                         CAIRO_FORMAT_ARGB32, marker->width, marker->height));
247         /* clear the surface just in case */
248         cairo_set_operator(marker->cairo, CAIRO_OPERATOR_SOURCE);
249         //cairo_set_source_rgba(marker->cairo, 1.0, 0.0, 0.0, 0.3); // debug
250         cairo_set_source_rgba(marker->cairo, 1.0, 0.0, 0.0, 0.0);
251         cairo_paint(marker->cairo);
252         cairo_set_operator(marker->cairo, CAIRO_OPERATOR_OVER);
253
254         render_all(marker);
255
256         if (marker->icon_img)
257                 cairo_surface_destroy(marker->icon_img);
258
259         return marker;
260 }
261
262
263 /* Drawing */
264 static void grits_marker_draw(GritsObject *_marker, GritsOpenGL *opengl)
265 {
266         GritsMarker *marker = GRITS_MARKER(_marker);
267         GritsPoint  *point  = grits_object_center(marker);
268         gdouble px, py, pz;
269         grits_viewer_project(GRITS_VIEWER(opengl),
270                         point->lat, point->lon, point->elev,
271                         &px, &py, &pz);
272
273         gint win_width  = GTK_WIDGET(opengl)->allocation.width;
274         gint win_height = GTK_WIDGET(opengl)->allocation.height;
275         py = win_height - py;
276         if (pz > 1)
277                 return;
278
279         //g_debug("GritsOpenGL: draw_marker - %s pz=%f ", marker->label, pz);
280
281         cairo_surface_t *surface = cairo_get_target(marker->cairo);
282         gdouble width  = cairo_image_surface_get_width(surface);
283         gdouble height = cairo_image_surface_get_height(surface);
284
285         glMatrixMode(GL_PROJECTION); glLoadIdentity();
286         glMatrixMode(GL_MODELVIEW);  glLoadIdentity();
287         glOrtho(0, win_width, win_height, 0, -1, 1);
288         glTranslated(px - marker->xoff,
289                      py - marker->yoff, 0);
290
291         glDisable(GL_LIGHTING);
292         glDisable(GL_COLOR_MATERIAL);
293         glDisable(GL_DEPTH_TEST);
294         glEnable(GL_TEXTURE_2D);
295         glBindTexture(GL_TEXTURE_2D, marker->tex);
296         glDisable(GL_CULL_FACE);
297         glBegin(GL_QUADS);
298         glTexCoord2f(1, 0); glVertex3f(width, 0     , 0);
299         glTexCoord2f(1, 1); glVertex3f(width, height, 0);
300         glTexCoord2f(0, 1); glVertex3f(0    , height, 0);
301         glTexCoord2f(0, 0); glVertex3f(0    , 0     , 0);
302         glEnd();
303 }
304
305
306 /* GObject code */
307 G_DEFINE_TYPE(GritsMarker, grits_marker, GRITS_TYPE_OBJECT);
308 static void grits_marker_init(GritsMarker *marker)
309 {
310 }
311
312 static void grits_marker_finalize(GObject *_marker)
313 {
314         //g_debug("GritsMarker: finalize - %s", marker->label);
315         GritsMarker *marker = GRITS_MARKER(_marker);
316         glDeleteTextures(1, &marker->tex);
317         cairo_surface_t *surface = cairo_get_target(marker->cairo);
318         cairo_surface_destroy(surface);
319         cairo_destroy(marker->cairo);
320         g_free(marker->label);
321         glDeleteTextures(1, &marker->tex);
322 }
323
324 static void grits_marker_class_init(GritsMarkerClass *klass)
325 {
326         g_debug("GritsMarker: class_init");
327         GObjectClass *gobject_class = G_OBJECT_CLASS(klass);
328         gobject_class->finalize = grits_marker_finalize;
329
330         GritsObjectClass *object_class = GRITS_OBJECT_CLASS(klass);
331         object_class->draw = grits_marker_draw;
332 }