1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258
|
#include <stdlib.h>
#include <math.h>
#include "stage_internal.h"
extern stg_rtk_fig_t* fig_debug_rays;
/* useful debug */
static void print_thing( char* prefix, stg_cell_t* cell, double x, double y )
{
printf( "%s %p x[%.7f %.7f %.7f] y[%.7f %.7f %.7f] (x %s xmin x %s xmax) (y %s ymin y %s ymax)\n",
prefix,
cell,
cell->xmin, x, cell->xmax,
cell->ymin, y, cell->ymax,
GTE(x,cell->xmin) ? ">=" : "<",
LT(x,cell->xmax) ? "<" : ">=",
GTE(y,cell->ymin) ? ">=" : "<",
LT(y,cell->ymax) ? "<" : ">=" );
}
/* useful debug */
static void PrintArray( GPtrArray* arr )
{
if( arr )
{
printf( "model array %p len %d\n", arr, arr->len );
int i;
for( i=0; i<arr->len; i++ )
printf( " (model %s)", ((stg_model_t*)g_ptr_array_index( arr, i ))->token );
}
else
printf( "null array\n" );
}
itl_t* itl_create( double x, double y, double a, double b,
stg_matrix_t* matrix, itl_mode_t pmode )
{
itl_t* itl = calloc( sizeof(itl_t), 1 );
itl->matrix = matrix;
itl->x = x;
itl->y = y;
itl->models = NULL;
itl->index = 0;
itl->range = 0;
itl->incr = NULL;
switch( pmode )
{
case PointToBearingRange:
{
double range = b;
double bearing = a;
itl->a = NORMALIZE(bearing);
itl->max_range = range;
}
break;
case PointToPoint:
{
double x1 = a;
double y1 = b;
itl->a = atan2( y1-y, x1-x );
itl->max_range = hypot( x1-x, y1-y );
}
break;
default:
puts( "Stage Warning: unknown LineIterator mode" );
}
//printf( "a = %.2f remaining_range = %.2f\n", itl->a,
//remaining_range ); fflush( stdout );
itl->cosa = cos( itl->a );
itl->sina = sin( itl->a );
itl->tana = tan( itl->a );
return itl;
};
void itl_destroy( itl_t* itl )
{
if( itl )
{
if( itl->incr )
free( itl->incr );
free( itl );
}
}
// returns the first model in the array that matches, else NULL.
static stg_model_t* gslist_first_matching( GSList* list,
stg_itl_test_func_t func,
stg_model_t* finder )
{
for( ; list ; list=list->next )
{
if( (*func)( finder, (stg_model_t*)(list->data) ) )
return (stg_model_t*)(list->data);
}
return NULL; // nothing in the array matched
}
// in the tree that contains cell, find the smallest node at x,y. cell
// does not have to be the root. non-recursive for speed.
stg_cell_t* stg_cell_locate( stg_cell_t* cell, double x, double y )
{
// start by going up the tree until the cell contains the point
// if x,y is NOT contained in the cell we jump to its parent
while( !( GTE(x,cell->xmin) &&
LT(x,cell->xmax) &&
GTE(y,cell->ymin) &&
LT(y,cell->ymax) ))
{
//print_thing( "ascending", cell, x, y );
if( cell->parent )
cell = cell->parent;
else
return NULL; // the point is outside the root node!
}
// now we know that the point is contained in this cell, we go down
// the tree to the leaf node that contains the point
// if we have children, we must jump down into the child
while( cell->children[0] )
{
// choose the right quadrant
int index;
if( LT(x,cell->x) )
index = LT(y,cell->y) ? 0 : 2;
else
index = LT(y,cell->y) ? 1 : 3;
cell = cell->children[index];
}
// the cell has no children and contains the point - we're done.
return cell;
}
stg_model_t* itl_first_matching( itl_t* itl,
stg_itl_test_func_t func,
stg_model_t* finder )
{
itl->index = 0;
itl->models = NULL;
stg_cell_t* cell = itl->matrix->root;
while( LT(itl->range,itl->max_range) )
{
// locate the leaf cell at X,Y
cell = stg_cell_locate( cell, itl->x, itl->y );
// the cell is null iff the point was outside the root
if( cell == NULL )
{
itl->range = itl->max_range; // stop the ray here
return NULL;
}
if( fig_debug_rays ) // draw the cell rectangle
stg_rtk_fig_rectangle( fig_debug_rays,
cell->x, cell->y, 0,
cell->size, cell->size, 0 );
if( cell->data )
{
stg_model_t* hitmod =
gslist_first_matching( (GSList*)cell->data, func, finder );
if( hitmod )
return hitmod; // done!
}
double c = itl->y - itl->tana * itl->x; // line offset
double xleave = itl->x;
double yleave = itl->y;
if( GT(itl->a,0) ) // up
{
// ray could leave through the top edge
// solve x for known y
yleave = cell->ymax; // top edge
xleave = (yleave - c) / itl->tana;
// if the edge crossing was not in cell bounds
if( !(GTE(xleave,cell->xmin) && LT(xleave,cell->xmax)) )
{
// it must have left the cell on the left or right instead
// solve y for known x
if( GT(itl->a,M_PI/2.0) ) // left side
{
xleave = cell->xmin-0.00001;
}
else // right side
{
xleave = cell->xmax;
}
yleave = itl->tana * xleave + c;
}
}
else
{
// ray could leave through the bottom edge
// solve x for known y
yleave = cell->ymin; // bottom edge
xleave = (yleave - c) / itl->tana;
// if the edge crossing was not in cell bounds
if( !(GTE(xleave,cell->xmin) && LT(xleave,cell->xmax)) )
{
// it must have left the cell on the left or right instead
// solve y for known x
if( LT(itl->a,-M_PI/2.0) ) // left side
{
xleave = cell->xmin-0.00001;
}
else
{
xleave = cell->xmax;
}
yleave = itl->tana * xleave + c;
}
else
yleave-=0.00001;
}
if( fig_debug_rays ) // draw the cell rectangle
{
stg_rtk_fig_color_rgb32( fig_debug_rays, 0xFFBBBB );
stg_rtk_fig_arrow_ex( fig_debug_rays,
itl->x, itl->y, xleave, yleave, 0.01 );
stg_rtk_fig_color_rgb32( fig_debug_rays, 0xFF0000 );
}
// jump to the leave point
itl->range += hypot( yleave - itl->y, xleave - itl->x );
itl->x = xleave;
itl->y = yleave;
}
return NULL; // we didn't find anything
}
|