00001
00002
00003
00004
00005
00006
00007 #include <stdio.h>
00008 #include <string.h>
00009 #include "mb_types.h"
00010
00011 static int is_scale_overlay(co_aix x1, co_aix w1, co_aix x2, co_aix w2) {
00012 if(x1 > x2) {
00013 if((x1 - x2) >= w2)
00014 return 0;
00015 } else {
00016 if((x2 - x1) >= w1)
00017 return 0;
00018 }
00019 return 1;
00020 }
00021
00022 static int _is_overlay(area_t *r1, area_t *r2) {
00023 if(is_scale_overlay(r1->x, r1->w, r2->x, r2->w) &&
00024 is_scale_overlay(r1->y, r1->h, r2->y, r2->h))
00025 return 1;
00026
00027 return 0;
00028 }
00029
00030 int is_overlay(area_t *r1, area_t *r2) {
00031 return _is_overlay(r1, r2);
00032 }
00033
00034 void area_init(area_t *area, int n_pos, co_aix pos[][2]) {
00035 co_aix min_x, max_x;
00036 co_aix min_y, max_y;
00037 co_aix x, y;
00038 int i;
00039
00040
00041
00042
00043
00044 if(n_pos == 0) {
00045 area->x = 0;
00046 area->w = 0;
00047 area->y = 0;
00048 area->h = 0;
00049 return;
00050 }
00051
00052 min_x = max_x = pos[0][0];
00053 min_y = max_y = pos[0][1];
00054 for(i = 1; i < n_pos; i++) {
00055 x = pos[i][0];
00056 if(x < min_x)
00057 min_x = x;
00058 else if(x > max_x)
00059 max_x = x;
00060 y = pos[i][1];
00061 if(y < min_y)
00062 min_y = y;
00063 else if(y > max_y)
00064 max_y = y;
00065 }
00066
00067 area->x = min_x;
00068 area->w = max_x - min_x + 1;
00069 area->y = min_y;
00070 area->h = max_y - min_y + 1;
00071 }
00072
00073 void geo_init(geo_t *g) {
00074 memset(g, 0, sizeof(geo_t));
00075 g->cur_area = g->areas;
00076 g->last_area = g->areas + 1;
00077 }
00078
00079 void geo_from_positions(geo_t *g, int n_pos, co_aix pos[][2]) {
00080 area_init(g->cur_area, n_pos, pos);
00081 }
00082
00083 void geo_mark_overlay(geo_t *g, int n_others, geo_t **others,
00084 int *n_overlays, geo_t **overlays) {
00085 int i, ov_idx;
00086
00087 ov_idx = 0;
00088 for(i = 0; i < n_others; i++) {
00089 if(_is_overlay(g->cur_area, others[i]->cur_area))
00090 overlays[ov_idx++] = others[i];
00091 }
00092 *n_overlays = ov_idx;
00093 }
00094
00095
00096 #ifdef UNITTEST
00097
00098 #include <CUnit/Basic.h>
00099
00100 void test_geo_from_positions(void) {
00101 co_aix data[][2] = {
00102 {33, 25}, {49, 12},
00103 {14, 28}, {39, 56}};
00104 geo_t g;
00105
00106 geo_init(&g);
00107 geo_from_positions(&g, 4, data);
00108 CU_ASSERT(g.cur_area->x == 14);
00109 CU_ASSERT(g.cur_area->w == 36);
00110 CU_ASSERT(g.cur_area->y == 12);
00111 CU_ASSERT(g.cur_area->h == 45);
00112 }
00113
00114 void test_geo_mark_overlay(void) {
00115 geo_t _geos[3], *geos[3], *overlays[3];
00116 geo_t g;
00117 co_aix pos[2][2];
00118 int i, n_ov;
00119
00120 for(i = 0; i < 3; i++) {
00121 pos[0][0] = i * 50;
00122 pos[0][1] = i * 50;
00123 pos[1][0] = i * 50 + 55;
00124 pos[1][1] = i * 50 + 66;
00125 geo_init(_geos + i);
00126 geo_from_positions(_geos + i, 2, pos);
00127 geos[i] = _geos + i;
00128 }
00129 pos[0][0] = 88;
00130 pos[0][1] = 79;
00131 pos[1][0] = 88 + 70;
00132 pos[1][1] = 79 + 70;
00133 geo_init(&g);
00134 geo_from_positions(&g, 2, pos);
00135
00136
00137 geo_mark_overlay(&g, 3, geos, &n_ov, overlays);
00138 CU_ASSERT(n_ov == 2);
00139 CU_ASSERT(overlays[0] == geos[1]);
00140 CU_ASSERT(overlays[1] == geos[2]);
00141
00142
00143 pos[0][0] = 106;
00144 pos[0][1] = 51;
00145 pos[1][0] = 106 + 49;
00146 pos[1][1] = 51 + 49;
00147 geo_from_positions(&g, 2, pos);
00148 geo_mark_overlay(&g, 3, geos, &n_ov, overlays);
00149 CU_ASSERT(n_ov == 1);
00150 CU_ASSERT(overlays[0] == geos[2]);
00151 }
00152
00153 CU_pSuite get_geo_suite(void) {
00154 CU_pSuite suite;
00155
00156 suite = CU_add_suite("Suite_geo", NULL, NULL);
00157 CU_ADD_TEST(suite, test_geo_from_positions);
00158 CU_ADD_TEST(suite, test_geo_mark_overlay);
00159
00160 return suite;
00161 }
00162
00163 #endif