]> Pileus Git - grits/blob - src/objects/grits-tile.c
Fix bugs in GritsTile
[grits] / src / objects / grits-tile.c
1 /*
2  * Copyright (C) 2009-2010, 2012 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-tile
20  * @short_description: Latitude/longitude overlays
21  *
22  * Each #GritsTile corresponds to a latitude/longitude box on the surface of
23  * the earth. When drawn, the #GritsTile renders an images associated with it
24  * to the surface of the earth. This is primarily used to draw ground overlays.
25  *
26  * Each GritsTile can be split into subtiles in order to draw higher resolution
27  * overlays. Pointers to subtitles are stored in the parent tile and a parent
28  * pointer is stored in each child.
29  *
30  * Each #GritsTile has a data filed which must be set by the user in order for
31  * the tile to be drawn. When used with GritsOpenGL the data must be an integer
32  * representing the OpenGL texture to use when drawing the tile.
33  */
34
35 #include <config.h>
36 #include <math.h>
37 #include "gtkgl.h"
38 #include "grits-tile.h"
39
40 guint  grits_tile_mask = 0;
41
42 gchar *grits_tile_path_table[2][2] = {
43         {"00.", "01."},
44         {"10.", "11."},
45 };
46
47 /**
48  * grits_tile_new:
49  * @parent: the parent for the tile, or NULL
50  * @n:      the northern border of the tile
51  * @s:      the southern border of the tile
52  * @e:      the eastern border of the tile
53  * @w:      the western border of the tile
54  *
55  * Create a tile associated with a particular latitude/longitude box.
56  *
57  * Returns: the new #GritsTile
58  */
59 GritsTile *grits_tile_new(GritsTile *parent,
60         gdouble n, gdouble s, gdouble e, gdouble w)
61 {
62         GritsTile *tile = g_object_new(GRITS_TYPE_TILE, NULL);
63         tile->parent = parent;
64         tile->atime  = time(NULL);
65         grits_bounds_set_bounds(&tile->coords, 0, 1, 1, 0);
66         grits_bounds_set_bounds(&tile->edge, n, s, e, w);
67         if (parent)
68                 tile->proj = parent->proj;
69         return tile;
70 }
71
72 /**
73  * grits_tile_get_path:
74  * @child: the tile to generate a path for
75  *
76  * Generate a string representation of a tiles location in a group of nested
77  * tiles. The string returned consists of groups of two digits separated by a
78  * delimiter. Each group of digits the tiles location with respect to it's
79  * parent tile.
80  *
81  * Returns: the path representing the tiles's location
82  */
83 gchar *grits_tile_get_path(GritsTile *child)
84 {
85         /* This could be easily cached if necessary */
86         int x, y;
87         GList *parts = NULL;
88         for (GritsTile *parent = child->parent; parent; child = parent, parent = child->parent)
89                 grits_tile_foreach_index(child, x, y)
90                         if (parent->children[x][y] == child)
91                                 parts = g_list_prepend(parts, grits_tile_path_table[x][y]);
92         GString *path = g_string_new("");
93         for (GList *cur = parts; cur; cur = cur->next)
94                 g_string_append(path, cur->data);
95         g_list_free(parts);
96         return g_string_free(path, FALSE);
97 }
98
99 static gdouble _grits_tile_get_min_dist(GritsPoint *eye, GritsBounds *bounds)
100 {
101         GritsPoint pos = {};
102         pos.lat = eye->lat > bounds->n ? bounds->n :
103                   eye->lat < bounds->s ? bounds->s : eye->lat;
104         pos.lon = eye->lon > bounds->e ? bounds->e :
105                   eye->lon < bounds->w ? bounds->w : eye->lon;
106         //if (eye->lat == pos.lat && eye->lon == pos.lon)
107         //      return elev; /* Shortcut? */
108         gdouble a[3], b[3];
109         lle2xyz(eye->lat, eye->lon, eye->elev, a+0, a+1, a+2);
110         lle2xyz(pos.lat,  pos.lon,  pos.elev,  b+0, b+1, b+2);
111         return distd(a, b);
112 }
113
114 static gboolean _grits_tile_precise(GritsPoint *eye, GritsBounds *bounds,
115                 gdouble max_res, gint width, gint height)
116 {
117         gdouble min_dist  = _grits_tile_get_min_dist(eye, bounds);
118         gdouble view_res  = MPPX(min_dist);
119
120         gdouble lat_point = bounds->n < 0 ? bounds->n :
121                             bounds->s > 0 ? bounds->s : 0;
122         gdouble lon_dist  = bounds->e - bounds->w;
123         gdouble tile_res  = ll2m(lon_dist, lat_point)/width;
124
125         /* This isn't really right, but it helps with memory since we don't
126          * (yet?) test if the tile would be drawn */
127         gdouble scale = eye->elev / min_dist;
128         view_res /= scale;
129         //view_res /= 1.4; /* make it a little nicer, not sure why this is needed */
130         //g_message("tile=(%7.2f %7.2f %7.2f %7.2f) "
131         //          "eye=(%9.1f %9.1f %9.1f) "
132         //          "elev=%9.1f / dist=%9.1f = %f",
133         //              bounds->n, bounds->s, bounds->e, bounds->w,
134         //              eye->lat, eye->lon, eye->elev,
135         //              eye->elev, min_dist, scale);
136
137         return tile_res < max_res ||
138                tile_res < view_res;
139 }
140
141 static void _grits_tile_split_latlon(GritsTile *tile)
142 {
143         const gdouble rows = G_N_ELEMENTS(tile->children);
144         const gdouble cols = G_N_ELEMENTS(tile->children[0]);
145         const gdouble lat_dist = tile->edge.n - tile->edge.s;
146         const gdouble lon_dist = tile->edge.e - tile->edge.w;
147         const gdouble lat_step = lat_dist / rows;
148         const gdouble lon_step = lon_dist / cols;
149
150         int row, col;
151         grits_tile_foreach_index(tile, row, col)
152                 tile->children[row][col] = grits_tile_new(tile,
153                         tile->edge.n - lat_step*(row+0),  // north
154                         tile->edge.n - lat_step*(row+1),  // south
155                         tile->edge.w + lon_step*(col+1),  // east
156                         tile->edge.w + lon_step*(col+0)); // west
157 }
158
159 static void _grits_tile_split_mercator(GritsTile *tile)
160 {
161         GritsTile *child = NULL;
162         GritsBounds tmp = tile->edge;
163
164         /* Project */
165         tile->edge.n = asinh(tan(deg2rad(tile->edge.n)));
166         tile->edge.s = asinh(tan(deg2rad(tile->edge.s)));
167
168         _grits_tile_split_latlon(tile);
169
170         /* Convert back to lat-lon */
171         tile->edge = tmp;
172         grits_tile_foreach(tile, child) {
173                 child->edge.n = rad2deg(atan(sinh(child->edge.n)));
174                 child->edge.s = rad2deg(atan(sinh(child->edge.s)));
175         }
176 }
177
178 /**
179  * grits_tile_update:
180  * @root:      the root tile to split
181  * @eye:       the point the tile is viewed from, for calculating distances
182  * @res:       a maximum resolution in meters per pixel to split tiles to
183  * @width:     width in pixels of the image associated with the tile
184  * @height:    height in pixels of the image associated with the tile
185  * @load_func: function used to load the image when a new tile is created
186  * @user_data: user data to past to the load function
187  *
188  * Recursively split a tile into children of appropriate detail. The resolution
189  * of the tile in pixels per meter is compared to the resolution which the tile
190  * is being drawn at on the screen. If the screen resolution is insufficient
191  * the tile is recursively subdivided until a sufficient resolution is
192  * achieved.
193  */
194 void grits_tile_update(GritsTile *tile, GritsPoint *eye,
195                 gdouble res, gint width, gint height,
196                 GritsTileLoadFunc load_func, gpointer user_data)
197 {
198         //g_debug("GritsTile: update - %p->atime = %u",
199         //              tile, (guint)tile->atime);
200         GritsTile *child;
201
202         if (tile == NULL)
203                 return;
204
205         if (!tile->data)
206                 load_func(tile, user_data);
207
208         tile->atime = time(NULL);
209
210         /* Is this tile high enough resolution? */
211         if (_grits_tile_precise(eye, &tile->edge, res, width, height)) {
212                 grits_tile_foreach(tile, child)
213                         if (child)
214                                 GRITS_OBJECT(child)->hidden = TRUE;
215                 return;
216         }
217
218         /* Need more resolution, split tile and update recursively */
219         if (!tile->children[0][0]) {
220                 switch (tile->proj) {
221                 case GRITS_PROJ_LATLON:   _grits_tile_split_latlon(tile);   break;
222                 case GRITS_PROJ_MERCATOR: _grits_tile_split_mercator(tile); break;
223                 }
224         }
225
226         grits_tile_foreach(tile, child) {
227                 GRITS_OBJECT(child)->hidden = FALSE;
228                 grits_tile_update(child, eye, res, width, height,
229                                 load_func, user_data);
230         }
231
232 }
233
234 /**
235  * grits_tile_find:
236  * @root: the root tile to search from
237  * @lat:  target latitude
238  * @lon:  target longitude
239  *
240  * Locate the subtile with the highest resolution which contains the given
241  * lat/lon point.
242  * 
243  * Returns: the child tile
244  */
245 GritsTile *grits_tile_find(GritsTile *root, gdouble lat, gdouble lon)
246 {
247         gint    rows = G_N_ELEMENTS(root->children);
248         gint    cols = G_N_ELEMENTS(root->children[0]);
249
250         gdouble lat_step = (root->edge.n - root->edge.s) / rows;
251         gdouble lon_step = (root->edge.e - root->edge.w) / cols;
252
253         gdouble lat_offset = root->edge.n - lat;;
254         gdouble lon_offset = lon - root->edge.w;
255
256         gint    row = lat_offset / lat_step;
257         gint    col = lon_offset / lon_step;
258
259         if (lon == 180) col--;
260         if (lat == -90) row--;
261
262         //if (lon == 180 || lon == -180)
263         //      g_message("lat=%f,lon=%f step=%f,%f off=%f,%f row=%d/%d,col=%d/%d",
264         //              lat,lon, lat_step,lon_step, lat_offset,lon_offset, row,rows,col,cols);
265
266         if (row < 0 || row >= rows || col < 0 || col >= cols)
267                 return NULL;
268         else if (root->children[row][col] && root->children[row][col]->data)
269                 return grits_tile_find(root->children[row][col], lat, lon);
270         else
271                 return root;
272 }
273
274 /**
275  * grits_tile_gc:
276  * @root:      the root tile to start garbage collection at
277  * @atime:     most recent time at which tiles will be kept
278  * @free_func: function used to free the image when a new tile is collected
279  * @user_data: user data to past to the free function
280  *
281  * Garbage collect old tiles. This removes and deallocate tiles that have not
282  * been used since before @atime.
283  *
284  * Returns: a pointer to the original tile, or NULL if it was garbage collected
285  */
286 GritsTile *grits_tile_gc(GritsTile *root, time_t atime,
287                 GritsTileFreeFunc free_func, gpointer user_data)
288 {
289         if (!root)
290                 return NULL;
291         gboolean has_children = FALSE;
292         int x, y;
293         grits_tile_foreach_index(root, x, y) {
294                 root->children[x][y] = grits_tile_gc(
295                                 root->children[x][y], atime,
296                                 free_func, user_data);
297                 if (root->children[x][y])
298                         has_children = TRUE;
299         }
300         //g_debug("GritsTile: gc - %p->atime=%u < atime=%u",
301         //              root, (guint)root->atime, (guint)atime);
302         if (!has_children && root->atime < atime && root->data) {
303                 free_func(root, user_data);
304                 g_object_unref(root);
305                 return NULL;
306         }
307         return root;
308 }
309
310 /* Use GObject for this */
311 /**
312  * grits_tile_free:
313  * @root:      the root tile to free
314  * @free_func: function used to free the image when a new tile is collected
315  * @user_data: user data to past to the free function
316  *
317  * Recursively free a tile and all it's children.
318  */
319 void grits_tile_free(GritsTile *root, GritsTileFreeFunc free_func, gpointer user_data)
320 {
321         if (!root)
322                 return;
323         GritsTile *child;
324         grits_tile_foreach(root, child)
325                 grits_tile_free(child, free_func, user_data);
326         if (free_func)
327                 free_func(root, user_data);
328         g_object_unref(root);
329 }
330
331 /* Load texture mask so we can draw a texture to just a part of a triangle */
332 static guint _grits_tile_load_mask(void)
333 {
334         guint  tex;
335         guint8 byte = 0xff;
336         glGenTextures(1, &tex);
337         glBindTexture(GL_TEXTURE_2D, tex);
338
339         glTexImage2D(GL_TEXTURE_2D, 0, GL_ALPHA, 1, 1, 0,
340                         GL_ALPHA, GL_UNSIGNED_BYTE, &byte);
341
342         glTexParameterf(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_NEAREST);
343         glTexParameterf(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_NEAREST);
344
345         glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_CLAMP_TO_BORDER);
346         glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_CLAMP_TO_BORDER);
347         return tex;
348 }
349
350 /* Draw a single tile */
351 static void grits_tile_draw_one(GritsTile *tile, GritsOpenGL *opengl, GList *triangles)
352 {
353         if (!tile || !tile->data)
354                 return;
355         if (!triangles)
356                 g_warning("GritsOpenGL: _draw_tiles - No triangles to draw: edges=%f,%f,%f,%f",
357                         tile->edge.n, tile->edge.s, tile->edge.e, tile->edge.w);
358         if (!grits_tile_mask)
359                 grits_tile_mask = _grits_tile_load_mask();
360
361         //g_message("drawing %4d triangles for tile edges=%7.2f,%7.2f,%7.2f,%7.2f",
362         //              g_list_length(triangles), tile->edge.n, tile->edge.s, tile->edge.e, tile->edge.w);
363         tile->atime = time(NULL);
364
365         gdouble n = tile->edge.n;
366         gdouble s = tile->edge.s;
367         gdouble e = tile->edge.e;
368         gdouble w = tile->edge.w;
369
370         gdouble londist = e - w;
371         gdouble latdist = n - s;
372
373         gdouble xscale = tile->coords.e - tile->coords.w;
374         gdouble yscale = tile->coords.s - tile->coords.n;
375
376         for (GList *cur = triangles; cur; cur = cur->next) {
377                 RoamTriangle *tri = cur->data;
378
379                 gdouble lat[3] = {tri->p.r->lat, tri->p.m->lat, tri->p.l->lat};
380                 gdouble lon[3] = {tri->p.r->lon, tri->p.m->lon, tri->p.l->lon};
381
382                 if (lon[0] < -90 || lon[1] < -90 || lon[2] < -90) {
383                         if (lon[0] > 90) lon[0] -= 360;
384                         if (lon[1] > 90) lon[1] -= 360;
385                         if (lon[2] > 90) lon[2] -= 360;
386                 }
387
388                 gdouble xy[3][2] = {
389                         {(lon[0]-w)/londist, 1-(lat[0]-s)/latdist},
390                         {(lon[1]-w)/londist, 1-(lat[1]-s)/latdist},
391                         {(lon[2]-w)/londist, 1-(lat[2]-s)/latdist},
392                 };
393
394                 //if ((lat[0] == 90 && (xy[0][0] < 0 || xy[0][0] > 1)) ||
395                 //    (lat[1] == 90 && (xy[1][0] < 0 || xy[1][0] > 1)) ||
396                 //    (lat[2] == 90 && (xy[2][0] < 0 || xy[2][0] > 1)))
397                 //      g_message("w,e=%4.f,%4.f   "
398                 //                "lat,lon,x,y="
399                 //                "%4.1f,%4.0f,%4.2f,%4.2f   "
400                 //                "%4.1f,%4.0f,%4.2f,%4.2f   "
401                 //                "%4.1f,%4.0f,%4.2f,%4.2f   ",
402                 //              w,e,
403                 //              lat[0], lon[0], xy[0][0], xy[0][1],
404                 //              lat[1], lon[1], xy[1][0], xy[1][1],
405                 //              lat[2], lon[2], xy[2][0], xy[2][1]);
406
407                 /* Fix poles */
408                 if (lat[0] == 90 || lat[0] == -90) xy[0][0] = 0.5;
409                 if (lat[1] == 90 || lat[1] == -90) xy[1][0] = 0.5;
410                 if (lat[2] == 90 || lat[2] == -90) xy[2][0] = 0.5;
411
412                 /* Scale to tile coords */
413                 for (int i = 0; i < 3; i++) {
414                         xy[i][0] = tile->coords.w + xy[i][0]*xscale;
415                         xy[i][1] = tile->coords.n + xy[i][1]*yscale;
416                 }
417
418                 /* Polygon offset */
419                 glEnable(GL_POLYGON_OFFSET_FILL);
420                 glPolygonOffset(0, -tile->zindex);
421
422                 /* Setup texture */
423                 glActiveTexture(GL_TEXTURE0);
424                 glEnable(GL_TEXTURE_2D);
425                 glBindTexture(GL_TEXTURE_2D, *(guint*)tile->data);
426                 glTexEnvi(GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_MODULATE);
427
428                 /* Enable texture mask */
429                 if (tile->proj == GRITS_PROJ_MERCATOR) {
430                         glActiveTexture(GL_TEXTURE1);
431                         glEnable(GL_TEXTURE_2D);
432                         glBindTexture(GL_TEXTURE_2D, grits_tile_mask);
433                         glTexEnvi(GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_MODULATE);
434
435                         /* Hack to show maps tiles with better color */
436                         float material_emission[] = {0.5, 0.5, 0.5, 1.0};
437                         glMaterialfv(GL_FRONT_AND_BACK, GL_EMISSION, material_emission);
438
439                         glEnable(GL_BLEND);
440                 }
441
442                 /* Draw triangle */
443                 glBegin(GL_TRIANGLES);
444                 glNormal3dv(tri->p.r->norm); glMultiTexCoord2dv(GL_TEXTURE0, xy[0]); glMultiTexCoord2dv(GL_TEXTURE1, xy[0]); glVertex3dv((double*)tri->p.r);
445                 glNormal3dv(tri->p.m->norm); glMultiTexCoord2dv(GL_TEXTURE0, xy[1]); glMultiTexCoord2dv(GL_TEXTURE1, xy[1]); glVertex3dv((double*)tri->p.m);
446                 glNormal3dv(tri->p.l->norm); glMultiTexCoord2dv(GL_TEXTURE0, xy[2]); glMultiTexCoord2dv(GL_TEXTURE1, xy[2]); glVertex3dv((double*)tri->p.l);
447                 glEnd();
448
449                 /* Disable texture mask */
450                 glDisable(GL_TEXTURE_2D);
451                 glActiveTexture(GL_TEXTURE0);
452         }
453 }
454
455 /* Draw the tile */
456 static gboolean grits_tile_draw_rec(GritsTile *tile, GritsOpenGL *opengl)
457 {
458         if (!tile || !tile->data || GRITS_OBJECT(tile)->hidden)
459                 return FALSE;
460
461         GritsTile *child = NULL;
462         gboolean   done  = FALSE;
463         while (!done) {
464                 /* Only draw children if possible */
465                 gboolean draw_parent = FALSE;
466                 grits_tile_foreach(tile, child)
467                         if (!child || !child->data || GRITS_OBJECT(child)->hidden)
468                                 draw_parent = TRUE;
469
470                 /* Draw parent tile underneath */
471                 if (draw_parent) {
472                         GList *triangles = roam_sphere_get_intersect(opengl->sphere, FALSE,
473                                         tile->edge.n, tile->edge.s, tile->edge.e, tile->edge.w);
474                         grits_tile_draw_one(tile, opengl, triangles);
475                         g_list_free(triangles);
476                 }
477
478                 /* Draw child tiles */
479                 gboolean drew_all_children = TRUE;
480                 grits_tile_foreach(tile, child)
481                         if (!grits_tile_draw_rec(child, opengl))
482                                 drew_all_children = FALSE;
483
484                 /* Check if tiles were hidden by a thread while drawing */
485                 done = draw_parent || drew_all_children;
486         }
487         return TRUE;
488 }
489
490 static void grits_tile_draw(GritsObject *tile, GritsOpenGL *opengl)
491 {
492         glEnable(GL_DEPTH_TEST);
493         glDepthFunc(GL_LESS);
494         glEnable(GL_ALPHA_TEST);
495         glAlphaFunc(GL_GREATER, 0.1);
496         grits_tile_draw_rec(GRITS_TILE(tile), opengl);
497 }
498
499
500 /* GObject code */
501 G_DEFINE_TYPE(GritsTile, grits_tile, GRITS_TYPE_OBJECT);
502 static void grits_tile_init(GritsTile *tile)
503 {
504 }
505
506 static void grits_tile_class_init(GritsTileClass *klass)
507 {
508         g_debug("GritsTile: class_init");
509         GritsObjectClass *object_class = GRITS_OBJECT_CLASS(klass);
510         object_class->draw = grits_tile_draw;
511 }