]> Pileus Git - grits/blobdiff - src/roam.c
Revert "Test pure distance based errors"
[grits] / src / roam.c
index 94416b96abbae7bd135ec73c240f791783a90072..0f4995e0b56593d7bf3dc03f4d65015afb847e8e 100644 (file)
@@ -84,13 +84,6 @@ RoamPoint *roam_point_new(gdouble lat, gdouble lon, gdouble elev)
        return point;
 }
 
-static RoamPoint *roam_point_dup(RoamPoint *point)
-{
-       RoamPoint *new = g_memdup(point, sizeof(RoamPoint));
-       new->tris = 0;
-       return new;
-}
-
 /**
  * roam_point_add_triangle:
  * @point:    the point
@@ -184,15 +177,17 @@ void roam_point_update_projection(RoamPoint *point, RoamView *view)
  *
  * Returns: the new triangle
  */
-RoamTriangle *roam_triangle_new(RoamPoint *l, RoamPoint *m, RoamPoint *r)
+RoamTriangle *roam_triangle_new(RoamPoint *l, RoamPoint *m, RoamPoint *r,
+               RoamDiamond *parent)
 {
        RoamTriangle *triangle = g_new0(RoamTriangle, 1);
 
-       triangle->error = 0;
-       triangle->p.l = l;
-       triangle->p.m = m;
-       triangle->p.r = r;
-       triangle->split = roam_point_new(
+       triangle->error  = 0;
+       triangle->p.l    = l;
+       triangle->p.m    = m;
+       triangle->p.r    = r;
+       triangle->parent = parent;
+       triangle->split  = roam_point_new(
                (l->lat + r->lat)/2,
                (ABS(l->lat) == 90 ? r->lon :
                 ABS(r->lat) == 90 ? l->lon :
@@ -318,27 +313,42 @@ void roam_triangle_remove(RoamTriangle *triangle, RoamSphere *sphere)
        g_pqueue_remove(sphere->triangles, triangle->handle);
 }
 
-static void roam_triangle_sync_neighbors(RoamTriangle *new, RoamTriangle *old, RoamTriangle *neigh)
+/* (neight->t.? == old) = new */
+static void roam_triangle_sync_neighbors(RoamTriangle *neigh, RoamTriangle *old, RoamTriangle *new)
 {
        if      (neigh->t.l == old) neigh->t.l = new;
        else if (neigh->t.b == old) neigh->t.b = new;
        else if (neigh->t.r == old) neigh->t.r = new;
-       else g_assert_not_reached();
 }
 
-static gboolean roam_point_visible(RoamPoint *triangle, RoamSphere *sphere)
+static gboolean roam_triangle_visible(RoamTriangle *triangle, RoamSphere *sphere)
 {
+       RoamPoint *l = triangle->p.l;
+       RoamPoint *m = triangle->p.m;
+       RoamPoint *r = triangle->p.r;
+       gdouble min_x = MIN(MIN(l->px, m->px), r->px);
+       gdouble max_x = MAX(MAX(l->px, m->px), r->px);
+       gdouble min_y = MIN(MIN(l->py, m->py), r->py);
+       gdouble max_y = MAX(MAX(l->py, m->py), r->py);
        gint *view = sphere->view->view;
-       return triangle->px > view[0] && triangle->px < view[2] &&
-              triangle->py > view[1] && triangle->py < view[3] &&
-              triangle->pz > 0       && triangle->pz < 1;
+       return !(max_x < view[0] || min_x > view[2] ||
+                max_y < view[1] || min_y > view[3]) &&
+                l->pz > 0 && m->pz > 0 && r->pz > 0 &&
+                l->pz < 1 && m->pz < 1 && r->pz < 1;
 }
-static gboolean roam_triangle_visible(RoamTriangle *triangle, RoamSphere *sphere)
+
+static gboolean roam_triangle_backface(RoamTriangle *triangle, RoamSphere *sphere)
 {
-       /* Do this with a bounding box */
-       return roam_point_visible(triangle->p.l, sphere) ||
-              roam_point_visible(triangle->p.m, sphere) ||
-              roam_point_visible(triangle->p.r, sphere);
+       RoamPoint *l = triangle->p.l;
+       RoamPoint *m = triangle->p.m;
+       RoamPoint *r = triangle->p.r;
+       roam_point_update_projection(l, sphere->view);
+       roam_point_update_projection(m, sphere->view);
+       roam_point_update_projection(r, sphere->view);
+       double size = -( l->px * (m->py - r->py) +
+                        m->px * (r->py - l->py) +
+                        r->px * (l->py - m->py) ) / 2.0;
+       return size < 0;
 }
 
 /**
@@ -356,14 +366,13 @@ void roam_triangle_update_errors(RoamTriangle *triangle, RoamSphere *sphere)
        roam_point_update_projection(triangle->p.m, sphere->view);
        roam_point_update_projection(triangle->p.r, sphere->view);
 
-       /* Not exactly correct, could be out on both sides (middle in) */
        if (!roam_triangle_visible(triangle, sphere)) {
                triangle->error = -1;
        } else {
                roam_point_update_projection(triangle->split, sphere->view);
-               RoamPoint *l = triangle->p.l;
-               RoamPoint *m = triangle->p.m;
-               RoamPoint *r = triangle->p.r;
+               RoamPoint *l     = triangle->p.l;
+               RoamPoint *m     = triangle->p.m;
+               RoamPoint *r     = triangle->p.r;
                RoamPoint *split = triangle->split;
 
                /*               l-r midpoint        projected l-r midpoint */
@@ -378,9 +387,13 @@ void roam_triangle_update_errors(RoamTriangle *triangle, RoamSphere *sphere)
                                 r->px * (l->py - m->py) ) / 2.0;
 
                /* Size < 0 == backface */
-               //if (size < 0)
-               //      triangle->error *= -1;
                triangle->error *= size;
+
+               /* Give some preference to "edge" faces */
+               if (roam_triangle_backface(triangle->t.l, sphere) ||
+                   roam_triangle_backface(triangle->t.b, sphere) ||
+                   roam_triangle_backface(triangle->t.r, sphere))
+                       triangle->error *= 500;
        }
 }
 
@@ -390,6 +403,7 @@ void roam_triangle_update_errors(RoamTriangle *triangle, RoamSphere *sphere)
  * @sphere:   the sphere
  *
  * Split a triangle into two child triangles and update the sphere.
+ * triangle
  */
 void roam_triangle_split(RoamTriangle *triangle, RoamSphere *sphere)
 {
@@ -402,36 +416,38 @@ void roam_triangle_split(RoamTriangle *triangle, RoamSphere *sphere)
        if (triangle != triangle->t.b->t.b)
                g_assert_not_reached();
 
-       RoamTriangle *base = triangle->t.b;
+       RoamTriangle *s = triangle;      // Self
+       RoamTriangle *b = triangle->t.b; // Base
+
+       RoamDiamond *dia = roam_diamond_new(s, b);
 
        /* Add new triangles */
        RoamPoint *mid = triangle->split;
-       RoamTriangle *sl = triangle->kids[0] = roam_triangle_new(triangle->p.m, mid, triangle->p.l); // triangle Left
-       RoamTriangle *sr = triangle->kids[1] = roam_triangle_new(triangle->p.r, mid, triangle->p.m); // triangle Right
-       RoamTriangle *bl = base->kids[0] = roam_triangle_new(base->p.m, mid, base->p.l); // Base Left
-       RoamTriangle *br = base->kids[1] = roam_triangle_new(base->p.r, mid, base->p.m); // Base Right
+       RoamTriangle *sl = s->kids[0] = roam_triangle_new(s->p.m, mid, s->p.l, dia); // Self Left
+       RoamTriangle *sr = s->kids[1] = roam_triangle_new(s->p.r, mid, s->p.m, dia); // Self Right
+       RoamTriangle *bl = b->kids[0] = roam_triangle_new(b->p.m, mid, b->p.l, dia); // Base Left
+       RoamTriangle *br = b->kids[1] = roam_triangle_new(b->p.r, mid, b->p.m, dia); // Base Right
 
        /*                triangle,l,  base,      r,  sphere */
-       roam_triangle_add(sl, sr, triangle->t.l, br, sphere);
-       roam_triangle_add(sr, bl, triangle->t.r, sl, sphere);
-       roam_triangle_add(bl, br, base->t.l, sr, sphere);
-       roam_triangle_add(br, sl, base->t.r, bl, sphere);
+       roam_triangle_add(sl, sr, s->t.l, br, sphere);
+       roam_triangle_add(sr, bl, s->t.r, sl, sphere);
+       roam_triangle_add(bl, br, b->t.l, sr, sphere);
+       roam_triangle_add(br, sl, b->t.r, bl, sphere);
 
-       roam_triangle_sync_neighbors(sl, triangle, triangle->t.l);
-       roam_triangle_sync_neighbors(sr, triangle, triangle->t.r);
-       roam_triangle_sync_neighbors(bl, base, base->t.l);
-       roam_triangle_sync_neighbors(br, base, base->t.r);
+       roam_triangle_sync_neighbors(s->t.l, s, sl);
+       roam_triangle_sync_neighbors(s->t.r, s, sr);
+       roam_triangle_sync_neighbors(b->t.l, b, bl);
+       roam_triangle_sync_neighbors(b->t.r, b, br);
 
        /* Remove old triangles */
-       roam_triangle_remove(triangle, sphere);
-       roam_triangle_remove(base, sphere);
+       roam_triangle_remove(s, sphere);
+       roam_triangle_remove(b, sphere);
 
        /* Add/Remove diamonds */
-       RoamDiamond *diamond = roam_diamond_new(triangle, base, sl, sr, bl, br);
-       roam_diamond_update_errors(diamond, sphere);
-       roam_diamond_add(diamond, sphere);
-       roam_diamond_remove(triangle->parent, sphere);
-       roam_diamond_remove(base->parent, sphere);
+       roam_diamond_update_errors(dia, sphere);
+       roam_diamond_add(dia, sphere);
+       roam_diamond_remove(s->parent, sphere);
+       roam_diamond_remove(b->parent, sphere);
 }
 
 /**
@@ -490,26 +506,11 @@ void roam_triangle_draw_normal(RoamTriangle *triangle)
  *
  * Returns: the new diamond
  */
-RoamDiamond *roam_diamond_new(
-               RoamTriangle *parent0, RoamTriangle *parent1,
-               RoamTriangle *kid0, RoamTriangle *kid1,
-               RoamTriangle *kid2, RoamTriangle *kid3)
+RoamDiamond *roam_diamond_new(RoamTriangle *parent0, RoamTriangle *parent1)
 {
        RoamDiamond *diamond = g_new0(RoamDiamond, 1);
-
-       diamond->kids[0] = kid0;
-       diamond->kids[1] = kid1;
-       diamond->kids[2] = kid2;
-       diamond->kids[3] = kid3;
-
-       kid0->parent = diamond;
-       kid1->parent = diamond;
-       kid2->parent = diamond;
-       kid3->parent = diamond;
-
        diamond->parents[0] = parent0;
        diamond->parents[1] = parent1;
-
        return diamond;
 }
 
@@ -556,56 +557,64 @@ void roam_diamond_merge(RoamDiamond *diamond, RoamSphere *sphere)
 {
        //g_message("roam_diamond_merge: %p, e=%f\n", diamond, diamond->error);
 
+       /* TODO: pick the best split */
        sphere->polys -= 2;
 
-       /* TODO: pick the best split */
-       RoamTriangle **kids = diamond->kids;
+       /* Use nicer temp names */
+       RoamTriangle *s = diamond->parents[0]; // Self
+       RoamTriangle *b = diamond->parents[1]; // Base
+
+       RoamTriangle *sl = s->kids[0];
+       RoamTriangle *sr = s->kids[1];
+       RoamTriangle *bl = b->kids[0];
+       RoamTriangle *br = b->kids[1];
 
-       /* Create triangles */
-       RoamTriangle *triangle  = diamond->parents[0];
-       RoamTriangle *base = diamond->parents[1];
+       s->kids[0] = s->kids[1] = NULL;
+       b->kids[0] = b->kids[1] = NULL;
 
-       roam_triangle_add(triangle,  kids[0]->t.b, base, kids[1]->t.b, sphere);
-       roam_triangle_add(base, kids[2]->t.b, triangle,  kids[3]->t.b, sphere);
+       /* Add original triangles */
+       roam_triangle_sync_neighbors(s->t.l, sl, s);
+       roam_triangle_sync_neighbors(s->t.r, sr, s);
+       roam_triangle_sync_neighbors(b->t.l, bl, b);
+       roam_triangle_sync_neighbors(b->t.r, br, b);
 
-       roam_triangle_sync_neighbors(triangle,  kids[0], kids[0]->t.b);
-       roam_triangle_sync_neighbors(triangle,  kids[1], kids[1]->t.b);
-       roam_triangle_sync_neighbors(base, kids[2], kids[2]->t.b);
-       roam_triangle_sync_neighbors(base, kids[3], kids[3]->t.b);
+       roam_triangle_add(s, sl->t.b, b, sr->t.b, sphere);
+       roam_triangle_add(b, bl->t.b, s, br->t.b, sphere);
 
-       /* Remove triangles */
-       roam_triangle_remove(kids[0], sphere);
-       roam_triangle_remove(kids[1], sphere);
-       roam_triangle_remove(kids[2], sphere);
-       roam_triangle_remove(kids[3], sphere);
+       roam_triangle_sync_neighbors(sl->t.b, sl, s);
+       roam_triangle_sync_neighbors(sr->t.b, sr, s);
+       roam_triangle_sync_neighbors(bl->t.b, bl, b);
+       roam_triangle_sync_neighbors(br->t.b, br, b);
 
-       /* Clear kids */
-       triangle->kids[0]  = triangle->kids[1]  = NULL;
-       base->kids[0] = base->kids[1] = NULL;
+       /* Remove child triangles */
+       roam_triangle_remove(sl, sphere);
+       roam_triangle_remove(sr, sphere);
+       roam_triangle_remove(bl, sphere);
+       roam_triangle_remove(br, sphere);
 
        /* Add/Remove triangles */
-       if (triangle->t.l->t.l == triangle->t.r->t.r &&
-           triangle->t.l->t.l != triangle && triangle->parent) {
-               roam_diamond_update_errors(triangle->parent, sphere);
-               roam_diamond_add(triangle->parent, sphere);
+       if (s->t.l->t.l == s->t.r->t.r &&
+           s->t.l->t.l != s && s->parent) {
+               roam_diamond_update_errors(s->parent, sphere);
+               roam_diamond_add(s->parent, sphere);
        }
 
-       if (base->t.l->t.l == base->t.r->t.r &&
-           base->t.l->t.l != base && base->parent) {
-               roam_diamond_update_errors(base->parent, sphere);
-               roam_diamond_add(base->parent, sphere);
+       if (b->t.l->t.l == b->t.r->t.r &&
+           b->t.l->t.l != b && b->parent) {
+               roam_diamond_update_errors(b->parent, sphere);
+               roam_diamond_add(b->parent, sphere);
        }
 
        /* Remove and free diamond and child triangles */
        roam_diamond_remove(diamond, sphere);
-       g_assert(diamond->kids[0]->p.m == diamond->kids[1]->p.m &&
-                diamond->kids[1]->p.m == diamond->kids[2]->p.m &&
-                diamond->kids[2]->p.m == diamond->kids[3]->p.m);
-       g_assert(diamond->kids[0]->p.m->tris == 0);
-       roam_triangle_free(diamond->kids[0]);
-       roam_triangle_free(diamond->kids[1]);
-       roam_triangle_free(diamond->kids[2]);
-       roam_triangle_free(diamond->kids[3]);
+       g_assert(sl->p.m == sr->p.m &&
+                sr->p.m == bl->p.m &&
+                bl->p.m == br->p.m);
+       g_assert(sl->p.m->tris == 0);
+       roam_triangle_free(sl);
+       roam_triangle_free(sr);
+       roam_triangle_free(bl);
+       roam_triangle_free(br);
        g_free(diamond);
 }
 
@@ -667,7 +676,8 @@ RoamSphere *roam_sphere_new()
                sphere->roots[i] = roam_triangle_new(
                        vertexes[_triangles[i][0][0]],
                        vertexes[_triangles[i][0][1]],
-                       vertexes[_triangles[i][0][2]]);
+                       vertexes[_triangles[i][0][2]],
+                       NULL);
        for (int i = 0; i < 8; i++)
                roam_triangle_add(sphere->roots[i],
                        sphere->roots[_triangles[i][1][0]],