5 #include <ucw/mempool.h>
6 #include <ucw/eltpool.h>
13 #define HASH_NODE struct graph_node
14 #define HASH_PREFIX(x) hash_##x
15 #define HASH_KEY_ATOMIC id
16 #define HASH_WANT_FIND
18 #define HASH_WANT_CLEANUP
19 #include <ucw/hashtable.h>
26 #define BLOCK_SIZE 4096
28 //struct mempool *mpool_requests;
30 static struct request_point *requests_point;
31 static struct request_line *requests_line;
32 static struct request_area *requests_area;
34 static struct graph_edge **bfs_queue;
35 static struct longline *longlines; int num_longlines;
36 static struct buffer_line *buffer_line;
37 static struct buffer_linelabel *buffer_linelabel;
39 struct eltpool *ep_individuals;
41 struct individual **population1;
42 struct individual **population2;
55 int conf_pop_size = 50;
57 int conf_penalty_bound = 0;
58 int conf_stagnation_bound = 0;
59 int conf_iteration_limit = 4;
61 int conf_term_cond = TERM_COND_ITERATIONS;
63 int conf_breed_rbest_perc = 80;
64 int conf_breed_pop_size_perc = 20;
65 int conf_breed_perc = 50; // Percentage of new pop created by breeding
67 bool conf_mutate_children = 1;
68 int conf_mutate_children_prob = 0.3;
70 int conf_mutate_rbest_perc = 60;
71 int conf_mutate_pop_size_perc = 20;
73 int conf_mutate_move_bound = 0.2;
74 int conf_mutate_regen_bound = 0.1;
75 int conf_mutate_chvar_bound = 0.1;
77 int conf_elite_perc = 5;
79 double conf_max_section_length = 100;
80 double conf_max_section_overlay = 10;
82 int old_best = 0; // FIXME: Shall be int max
86 int conf_part_size = 50;
93 void make_graph(void);
94 void label_graph(void);
95 void join_edge(struct graph_edge *e, int dir);
96 void bfs(uns longline);
97 void make_segments(void);
99 void make_population(void);
100 bool shall_terminate(void);
104 void rank_population(void);
105 void plan_individual(struct individual *individual);
107 void make_bitmap(struct point_variant *v, struct symbol *sym);
108 void make_bitmap_icon(struct point_variant *v, struct sym_icon *si);
109 void make_bitmap_point(struct point_variant *v, struct sym_point *sp);
110 void make_bitmap_label(struct point_variant *v, struct sym_text *text);
112 void cut_edge(struct graph_edge *e, double dist);
113 struct request_line *make_new_line(void);
114 struct request_section *make_new_section(struct request_line *rl);
115 struct request_segment *make_new_segment(struct request_section *rls, struct symbol *sym);
117 void dump_bitmaps(struct individual *individual);
118 void dump_graph(void);
120 void bfs_edge(struct graph_edge *e, struct graph_node *node, struct graph_node *anode, enum edge_dir dir);
121 void bfs_wrapper(void);
123 void dump_longlines(void);
124 void dump_linelabel_requests(void);
125 void dump_individual(struct individual *individual);
126 void print_label(struct symbol *sym);
128 double gen_movement(void);
129 void gen_coords(struct placement *p);
130 void gen_coords_point(struct placement *p);
131 void gen_coords_segment(struct placement *p);
132 void gen_coords_area(struct placement *p);
134 void make_segments_old(void);
136 void labeller_cleanup(void);
138 struct individual **perform_crossover(struct individual *parent1, struct individual *parent2);
139 void perform_mutation(struct individual *individual);
141 void init_placement(struct placement *p, struct request *r);
142 void init_individual(struct individual *i);
143 struct map_part **get_parts(struct placement *symbol, struct individual *individual);
145 int randint(int min, int max);
147 struct placement **get_closure(struct placement *placement, struct individual *parent1, struct individual *parent2);
148 void copy_symbols(struct placement **closure, struct individual *parent, struct individual *child);
149 void move_symbol(struct placement *p);
150 void move_symbol_point(struct placement *p);
152 struct placement **get_overlapping(struct placement *p);
153 void filter(struct placement **list, bool *pred);
155 int flip(int a, int b);
156 double randdouble(void);
160 void copy_individual(struct individual *src, struct individual *dest);
162 int max2(int a, int b);
163 int min2(int a, int b);
164 int max4(int a, int b, int c, int d);
165 int min4(int a, int b, int c, int d);
167 int max2(int a, int b)
169 return (a > b ? a : b);
172 int min2(int a, int b)
174 return (a < b ? a : b);
177 int max4(int a, int b, int c, int d)
179 return max2(max2(a, b), max2(c, d));
182 int min4(int a, int b, int c, int d)
184 return min2(min2(a, b), min2(c, d));
187 void print_label(struct symbol *sym)
191 case SYMBOLIZER_TEXT: ;
192 struct sym_text *st = (struct sym_text *) sym;
193 printf("%s\n", osm_val_decode(st->text));
200 void labeller_init(void)
202 GARY_INIT(requests_point, 0);
203 GARY_INIT(requests_line, 0);
204 GARY_INIT(requests_area, 0);
205 GARY_INIT(buffer_line, 0);
206 GARY_INIT(buffer_linelabel, 0);
207 ep_individuals = ep_new(sizeof(struct individual), 1);
209 page_width_int = floor(page_width);
210 page_height_int = floor(page_height);
213 void make_bitmap(struct point_variant *v, struct symbol *sym)
217 case SYMBOLIZER_POINT:
218 make_bitmap_point(v, (struct sym_point *) sym);
220 case SYMBOLIZER_ICON:
221 make_bitmap_icon(v, (struct sym_icon *) sym);
223 case SYMBOLIZER_TEXT:
224 make_bitmap_label(v, (struct sym_text *) sym);
227 ASSERT(sym->type != SYMBOLIZER_INVALID);
231 void make_bitmap_icon(struct point_variant *v, struct sym_icon *si)
233 v->width = si->sir.icon->width;
234 v->height = si->sir.icon->height;
235 v->bitmap = malloc((int) ceil(v->width * v->height * sizeof(bool)));
236 for (int i=0; i<v->width*v->height; i++) v->bitmap[i] = 1;
239 void make_bitmap_point(struct point_variant *v, struct sym_point *sp)
241 v->width = v->height = sp->size;
242 v->bitmap = malloc(sp->size*sp->size * sizeof(bool));
243 // FIXME: Okay, memset would be much nicer here
244 for (int i=0; i<sp->size*sp->size; i++) v->bitmap[i] = 1;
247 void make_bitmap_label(struct point_variant *v, struct sym_text *text)
258 v->width = max4(x_ld, x_lu, x_rd, x_ru) - min4(x_ld, x_lu, x_rd, x_ru);
259 v->height = max4(y_ld, y_lu, y_rd, y_ru) - min4(y_ld, y_lu, y_rd, y_ru);
260 //v->bitmap = malloc((int) (ceil(v->width) * ceil(v->height) * sizeof(bool)));
262 v->width = ceil(text->tw);
263 v->height = ceil(text->th);
264 v->bitmap = malloc(v->width * v->height * sizeof(bool));
265 // printf("Allocated bitmap of %d bools for %d x %d label\n", v->width * v->height, v->width, v->height);
266 for (int i=0; i<v->height; i++)
267 for (int j=0; j<v->width; j++)
269 v->bitmap[i*v->width + j] = 1;
270 // printf("Writing at %d\n", i*v->width + j);
274 void labeller_add_point(struct symbol *sym, struct osm_object *object, z_index_t zindex)
276 printf("Adding point\n");
277 if (object->type != OSM_TYPE_NODE)
279 printf("Warning: Point label requested on non-point object\n");
283 struct request_point *r = GARY_PUSH(requests_point);
285 r->request.type = REQUEST_POINT;
286 r->request.ind = num_requests++;
295 GARY_INIT(r->variants, 0);
297 struct point_variant *v = GARY_PUSH(r->variants);
299 struct osm_node *n = (struct osm_node *) object; // FIXME: Compiler warning
304 case SYMBOLIZER_ICON:
305 make_bitmap_icon(v, (struct sym_icon *) sym);
306 r->x = ((struct sym_icon *)sym)->sir.x;
307 r->y = ((struct sym_icon *)sym)->sir.y;
309 case SYMBOLIZER_POINT:
310 make_bitmap_point(v, (struct sym_point *) sym);
312 case SYMBOLIZER_TEXT: ;
313 struct sym_text *st = (struct sym_text *) sym;
314 struct osm_node *n = (struct osm_node *) object;
315 make_bitmap_label(v, st);
321 // printf("Inited point to [%.2f; %.2f] on %u\n", r->x, r->y, r->zindex);
324 void labeller_add_line(struct symbol *sym, z_index_t zindex)
326 printf("Adding line on %u\n", zindex);
327 struct buffer_line *b = GARY_PUSH(buffer_line);
328 b->line = (struct sym_line *) sym;
330 sym_plan(sym, zindex);
333 void labeller_add_linelabel(struct symbol *sym, struct osm_object *o, z_index_t zindex)
335 if (o->type != OSM_TYPE_WAY)
341 printf("[LAB] Labelling way %ju on %u\n", o->id, zindex);
342 struct buffer_linelabel *ll = GARY_PUSH(buffer_linelabel);
343 ll->way = (struct osm_way *) o;
348 void labeller_add_arealabel(struct symbol *sym, struct osm_object *o, z_index_t zindex)
350 printf("Adding area on %u\n", zindex);
351 struct request_area *r = GARY_PUSH(requests_area);
353 r->request.type = REQUEST_AREA;
354 r->request.ind = num_requests++;
356 r->o = (struct osm_multipolygon *) o;
360 osm_obj_center(o, &(r->cx), &(r->cy));
362 GARY_INIT(r->variants, 0);
363 struct point_variant *v = GARY_PUSH(r->variants);
366 case SYMBOLIZER_ICON:
367 printf("DEBUG: Icon label\n");
368 make_bitmap_icon(v, (struct sym_icon *) sym);
370 case SYMBOLIZER_TEXT:
371 printf("DEBUG: Text label\n");
372 make_bitmap_label(v, (struct sym_text *) sym);
379 void make_graph(void)
382 struct mempool *mp_edges = mp_new(BLOCK_SIZE);
384 printf("Extracting nodes, will iterate over %lld ways\n", GARY_SIZE(buffer_line));
385 for (uns i=0; i<GARY_SIZE(buffer_line); i++)
387 struct osm_way *way = (struct osm_way *) buffer_line[i].line->s.o;
388 struct graph_node *g_prev = NULL;
389 struct osm_node *o_prev = NULL;
391 CLIST_FOR_EACH(struct osm_ref *, ref, way->nodes)
393 // FIXME: Shall osm_object's type be checked here?
394 struct osm_node *o_node = (struct osm_node *) ref->o;
396 struct graph_node *g_node = hash_find(ref->o->id);
399 g_node = hash_new(ref->o->id);
400 GARY_INIT(g_node->edges, 0);
402 g_node->id = ref->o->id;
403 g_node->num = num_nodes++;
413 struct graph_edge *e = mp_alloc(mp_edges, sizeof(struct graph_edge)); num_edges_dbg++;
414 e->num = num_edges++;
415 e->id = buffer_line[i].line->s.o->id;
416 e->color = buffer_line[i].line->color;
417 e->length = hypot(abs(o_prev->x - o_node->x), abs(o_prev->y - o_node->y));
423 e->longline = (uns) -1;
424 e->line = buffer_line[i].line;
428 struct graph_edge **edge = GARY_PUSH(g_prev->edges);
430 edge = GARY_PUSH(g_node->edges);
438 printf("Made graph with %d edges\n", num_edges_dbg);
441 void dump_graph(void)
443 HASH_FOR_ALL(hash, node)
445 printf("* Node: (%d) #%ju [%.2f; %.2f]\n", node->num, node->id, node->o->x, node->o->y);
446 for (uns i=0; i<GARY_SIZE(node->edges); i++)
448 struct graph_edge *e = node->edges[i];
449 printf("\t edge (%d) #%ju to ", e->num, e->id);
450 if (node->edges[i]->n1->id == node->id)
451 printf("(%d) #%ju [%.2f; %.2f]\n", e->n2->num, e->n2->id, e->n2->o->x, e->n2->o->y);
452 else if (node->edges[i]->n2->id == node->id)
453 printf("(%d) #%ju [%.2f; %.2f]\n", e->n1->num, e->n1->id, e->n1->o->x, e->n1->o->y);
455 printf("BEWARE! BEWARE! BEWARE!\n");
458 if ((node->edges[i]->label)) printf("Labelled\n");
459 if ((node->edges[i]->label) && (node->edges[i]->label->type == SYMBOLIZER_TEXT)) printf(" labelled %s;", osm_val_decode(((struct sym_text *) node->edges[i]->label)->text));
460 printf(" colored %d;", node->edges[i]->color);
461 printf(" length %.2f", node->edges[i]->length);
468 void label_graph(void)
470 printf("There are %u line labels requested\n", GARY_SIZE(buffer_linelabel));
471 for (uns i=0; i<GARY_SIZE(buffer_linelabel); i++)
473 if (buffer_linelabel[i].label->type == SYMBOLIZER_TEXT)
474 printf("Labelling nodes of way %s\n", osm_val_decode(((struct sym_text *) buffer_linelabel[i].label)->text));
475 CLIST_FOR_EACH(struct osm_ref *, ref, buffer_linelabel[i].way->nodes)
477 printf("Looking for node %ju\n", ref->o->id);
478 struct graph_node *n = hash_find(ref->o->id);
481 // FIXME: What shall be done?
485 printf("Searching among %u edges\n", GARY_SIZE(n->edges));
486 for (uns j=0; j<GARY_SIZE(n->edges); j++)
488 if (n->edges[j]->id == buffer_linelabel[i].way->o.id)
490 printf("Labelling node %ju\n", n->id);
491 n->edges[j]->label = buffer_linelabel[i].label;
492 n->edges[j]->zindex = buffer_linelabel[i].zindex;
500 void bfs_edge(struct graph_edge *e, struct graph_node *node, struct graph_node *anode, enum edge_dir dir)
502 printf("BFS edge called for edge %d (going %d) in direction %d\n", e->num, e->dir, dir);
503 struct graph_edge *candidate = NULL;
505 for (uns i=0; i<GARY_SIZE(node->edges); i++)
507 struct graph_edge *other = node->edges[i];
508 if (e->num == 987) printf("Got label %d\n", e->num);
509 if ((other->longline != (uns) -1) && (other->longline != e->longline)) continue;
510 if (e->num == 987) printf("Continuing with edge %d\n", e->num);
512 printf("Testing %d ?= %d\n", other->visited, e->longline);
513 if ((uns) other->visited != e->longline) {
514 printf("Pushing new edge %d / %ju\n", other->num, other->id);
515 struct graph_edge **e_ptr = GARY_PUSH(bfs_queue);
517 other->visited = e->longline;
520 if (((other->n1->id == node->id) && (other->n2->id == anode->id)) ||
521 ((other->n2->id == node->id) && (other->n1->id == anode->id)))
524 if (((other->n1->id == node->id) || (other->n2->id == node->id)) &&
525 (e->label) && (other->label) &&
526 (e->label->type == SYMBOLIZER_TEXT) && (other->label->type == SYMBOLIZER_TEXT) &&
527 (((struct sym_text *) e->label)->text == ((struct sym_text *) other->label)->text))
529 if (! candidate || (other->length > candidate->length))
536 printf("New line in longline %u\n", e->longline);
537 struct graph_edge *other = candidate;
538 other->longline = e->longline;
540 if (((dir == DIR_BWD) && (other->n1->id == node->id)) ||
541 ((dir == DIR_FWD) && (other->n2->id == node->id)))
543 struct graph_node *swp = other->n2;
544 other->n2 = other->n1;
553 longlines[other->longline].first = other;
566 void bfs(uns longline)
568 printf("BFS called for longline %u\n", longline);
569 printf("%d longlines are believed to exist, %d exist\n", num_longlines, GARY_SIZE(longlines));
570 for (uns i=0; i<GARY_SIZE(bfs_queue); i++)
572 struct graph_edge *cur = bfs_queue[i];
573 printf("Exploring new edge %d; %d remaining\n", cur->num, GARY_SIZE(bfs_queue));
574 //ASSERT(! cur->visited);
576 cur->visited = longline;
578 if (cur->longline == (uns) -1)
581 if (cur->dir == DIR_UNSET)
583 cur->dir = DIR_CENTER;
584 bfs_edge(cur, cur->n1, cur->n2, DIR_BWD);
585 bfs_edge(cur, cur->n2, cur->n1, DIR_FWD);
592 bfs_edge(cur, cur->n1, cur->n2, cur->dir);
595 bfs_edge(cur, cur->n2, cur->n1, cur->dir);
605 void bfs_wrapper(void)
607 GARY_INIT(bfs_queue, 0);
608 GARY_INIT(longlines, 0);
610 HASH_FOR_ALL(hash, node)
612 for (uns i=0; i<GARY_SIZE(node->edges); i++)
614 if ((node->edges[i]->label) && (node->edges[i]->longline == (uns) -1))
616 GARY_PUSH(longlines);
617 longlines[num_longlines].first = node->edges[i];
618 printf("Running new BFS\n");
619 printf("Creating longline %u\n", num_longlines);
620 GARY_RESIZE(bfs_queue, 0);
621 struct graph_edge **e = GARY_PUSH(bfs_queue);
623 node->edges[i]->longline = num_longlines;
624 bfs(node->edges[i]->longline);
626 printf("Joined %d edges\n", dbg_num_hits); dbg_num_hits = 0;
627 printf("Planned %u edges\n", GARY_SIZE(bfs_queue));
634 GARY_FREE(bfs_queue);
637 void dump_longlines(void)
639 printf("*** Longlines dump\n");
640 for (uns i=0; i<GARY_SIZE(longlines); i++)
642 printf("Longline %u:", i);
643 struct graph_edge *e = longlines[i].first;
644 if ((e->label) && (e->label->type == SYMBOLIZER_TEXT))
645 printf(" labelled %s", osm_val_decode(((struct sym_text *) e->label)->text));
650 printf("\t#%ju (%d): [%.2f; %.2f] -- [%.2f; %.2f] (dir %d)\n",
651 e->id, e->num, e->n1->o->x, e->n1->o->y, e->n2->o->x, e->n2->o->y, e->dir);
658 struct request_line *make_new_line(void)
660 struct request_line *rl = GARY_PUSH(requests_line);
661 rl->request.ind = num_requests++;
662 rl->request.type = REQUEST_LINE;
663 GARY_INIT(rl->sections, 0);
668 struct request_section *make_new_section(struct request_line *rl)
670 struct request_section *rls = GARY_PUSH(rl->sections);
671 rls->request.ind = num_requests++;
672 rls->request.type = REQUEST_SECTION;
673 rls->num_segments = 0;
674 GARY_INIT(rls->segments, 0);
679 struct request_segment *make_new_segment(struct request_section *rls, struct symbol *sym)
681 struct request_segment *rs = GARY_PUSH(rls->segments);
684 rs->request.ind = num_requests++;
685 rs->request.type = REQUEST_SEGMENT;
687 struct point_variant *v = malloc(sizeof(struct point_variant));
694 void cut_edge(struct graph_edge *e, double dist)
697 printf("Cutting [%.2f; %.2f] -- [%.2f; %.2f] to dist %.2f\n", e->n1->o->x, e->n1->o->y, e->n2->o->x, e->n2->o->y, dist);
699 struct graph_edge *new = malloc(sizeof(struct graph_edge));
703 struct osm_node *n1 = e->n1->o;
704 struct osm_node *n2 = e->n2->o;
707 if ((n1->x == n2->x) && (n1->y == n2->y))
709 printf("[%.2f; %.2f] -- [%.2f; %.2f]\n", n1->x, n1->y, n2->x, n2->y);
710 printf("Won't cut point\n");
714 struct osm_node *n11 = malloc(sizeof(struct osm_node));
715 struct graph_node *gn = malloc(sizeof(struct graph_node));
717 double vsize = sqrt(pow(n1->x - n2->x, 2) + pow(n1->y - n2->y, 2));
718 n11->x = n1->x + (n2->x - n1->x) / vsize * dist;
719 n11->y = n1->y + (n2->y - n1->y) / vsize * dist;
721 e->n2 = new->n1 = gn;
723 e->length = hypot(abs(n1->x - n11->x), abs(n1->y - n11->y));
724 new->length = hypot(abs(n11->x - n2->x), abs(n11->y - n2->y));
727 void make_segments(void)
729 for (uns i=0; i<GARY_SIZE(longlines); i++)
731 // Skip lines which are not labelled
732 if (! (longlines[i].first && longlines[i].first->label))
735 struct request_line *request = make_new_line();
736 struct request_section *rls = make_new_section(request);
737 struct request_segment *rs = NULL;
739 struct graph_edge *e = longlines[i].first;
740 double cur_length = 0;
742 struct sym_text *st = NULL;
743 if (e->label->type == SYMBOLIZER_TEXT)
745 st = (struct sym_text *) e->label;
749 printf("Warning: Skipping line\n");
754 printf("New longline\n");
757 if (cur_length + e->length > conf_max_section_length + conf_max_section_overlay)
760 printf("Edge too long, length is %.2f; %.2f - %.2f = %.2f\n", e->length, conf_max_section_length, cur_length, conf_max_section_length - cur_length);
761 cut_edge(e, conf_max_section_length - cur_length);
764 if (cur_length + e->length > conf_max_section_length)
767 printf("Making new section, new length would be %f, allowed is %.2f / %.2f\n", cur_length + e->length, conf_max_section_length, conf_max_section_overlay);
769 struct osm_node *n1 = e->n1->o;
770 struct osm_node *n2 = e->n2->o;
771 rs = make_new_segment(rls, e->label);
776 rs->zindex = e->zindex;
778 rs->label = malloc(sizeof(struct sym_text));
779 *((struct sym_text *) rs->label) = *((struct sym_text *) e->label);
780 rls = make_new_section(request);
784 if (st && (e->length < st->tw))
787 printf("Warning: Skipping segment\n");
791 rs = make_new_segment(rls, e->label);
792 rs->label = malloc(sizeof(struct sym_text));
793 *((struct sym_text *) rs->label) = *((struct sym_text *) e->label);
795 rs->x1 = e->n1->o->x;
796 rs->y1 = e->n1->o->y;
797 rs->x2 = e->n2->o->x;
798 rs->y2 = e->n2->o->y;
800 // FIXME: Set text rotation
801 rs->angle = atan2(rs->x2 - rs->x1, rs->y2 - rs->y1);
802 rs->zindex = e->zindex;
804 cur_length += e->length;
808 if (request->sections[0].num_segments == 0)
811 printf("WARNING: 0 segment section\n");
812 GARY_POP(requests_line);
818 void dump_linelabel_requests(void)
820 for (uns i=0; i<GARY_SIZE(requests_line); i++)
822 if (requests_line[i].sections[0].num_segments == 0)
827 printf("Request for linelabel, %d sections\n", GARY_SIZE(requests_line[i].sections));
828 print_label(requests_line[i].sections[0].segments[0].label);
829 for (uns j=0; j<GARY_SIZE(requests_line[i].sections); j++)
831 printf("%d section, %d segments\n", j, GARY_SIZE(requests_line[i].sections[j].segments));
832 for (uns k=0; k<GARY_SIZE(requests_line[i].sections[j].segments); k++)
834 struct request_segment *rs = &requests_line[i].sections[j].segments[k];
835 printf("[%.2f; %.2f] -- [%.2f; %.2f]\n", rs->x1, rs->y1, rs->x2, rs->y2);
842 void dump_bitmaps(struct individual *individual)
844 bool *bitmap = malloc(page_width_int * page_height_int * sizeof(bool));
845 printf("Bitmap size is %d\n", page_width_int * page_height_int);
846 for (int i=0; i<page_height_int; i++)
847 for (int j=0; j<page_width_int; j++)
848 bitmap[i*page_width_int + j] = 0;
850 for (uns i=0; i<GARY_SIZE(individual->placements); i++)
852 fprintf(stderr, "%d-th placement\n", i);
853 struct placement *p = &(individual->placements[i]);
854 struct point_variant *v = NULL;
856 switch (p->request->type)
858 case REQUEST_SEGMENT: ;
859 struct request_segment *rs = (struct request_segment *) p->request;
862 case REQUEST_POINT: ;
863 struct request_point *rp = (struct request_point *) p->request;
864 v = &(rp->variants[p->variant_used]);
867 struct request_area *ra = (struct request_area *) p->request;
868 printf("Using %d-th of %d variants\n", p->variant_used, GARY_SIZE(ra->variants));
869 v = &(ra->variants[p->variant_used]);
872 printf("Testing request type (dump_bitmaps): %d\n", p->request->type);
873 ASSERT(p->request->type != REQUEST_INVALID);
877 printf("Got after with %d-th placement of request type %d\n", i, p->request->type);
879 printf("Rendering %d-th label %d x %d (w x h)\n", i, v->width, v->height);
880 for (int row = max2(p->y, 0); row < min2(p->y + v->height, page_height_int); row++)
882 for (int col = max2(p->x, 0); col < min2(p->x + v->width, page_width_int); col++)
884 printf("Writing to %d\n", row*page_width_int + col);
885 bitmap[row * page_width_int + col] = 1;
891 FILE *fd_dump = fopen("dump.pbm", "w");
892 fprintf(fd_dump, "P1\n");
893 fprintf(fd_dump, "%d %d\n", page_width_int, page_height_int);
894 for (int i=0; i<page_height_int; i++)
896 for (int j=0; j<page_width_int; j++)
898 fprintf(fd_dump, "%d", bitmap[(int) (i*page_width_int + j)] ? 1 : 0);
900 fprintf(fd_dump, "\n");
905 void dump_individual(struct individual *individual)
907 printf("*** Dumping INDIVIDUAL ***\n");
908 printf("(There are %d requests)\n", num_requests);
909 for (uns i=0; i<GARY_SIZE(individual->placements); i++)
911 struct placement *p = &(individual->placements[i]);
913 switch (p->request->type)
916 printf("Point at [%.2f; %.2f] on %u\n", p->x, p->y, ((struct request_point *) p->request)->zindex);
919 struct request_line *rl = (struct request_line *) p->request;
921 print_label(rl->sections[0].segments[0].label);
923 case REQUEST_SECTION: ;
926 case REQUEST_SEGMENT: ;
927 if (p->variant_used >= 0)
928 printf("Segment placed at [%.2f; %.2f] on %u\n", p->x, p->y, ((struct request_segment *) p->request)->zindex);
930 printf("Segment not placed\n");
933 struct request_area *ra = (struct request_area *) p->request;
934 printf("Area label ");
935 print_label(ra->label);
936 printf(" at [%.2f; %.2f] on %u\n", p->x, p->y, ((struct request_area *) p->request)->zindex);
939 printf("Testing request type (dump_individual)\n");
940 ASSERT(p->request->type != 0);
943 printf("\nTotal penalty: %d\n", individual->penalty);
946 void plan_individual(struct individual *individual)
948 for (uns i=0; i<GARY_SIZE(individual->placements); i++)
950 struct symbol *s = NULL;
951 z_index_t zindex = 0;
952 if (individual->placements[i].variant_used < 0) continue;
953 switch (individual->placements[i].request->type)
955 case REQUEST_POINT: ;
956 struct request_point *rp = (struct request_point *) individual->placements[i].request;
960 case REQUEST_SEGMENT: ;
961 struct request_segment *rs = (struct request_segment *) individual->placements[i].request;
968 struct request_area *ra = (struct request_area *) individual->placements[i].request;
973 ASSERT(individual->placements[i].request != REQUEST_INVALID);
978 printf("Will plan symbol at [%.2f; %.2f] on %u\n", individual->placements[i].x, individual->placements[i].y, zindex);
980 if (s) switch (s->type)
982 case SYMBOLIZER_POINT: ;
983 struct sym_point *sp = (struct sym_point *) s;
984 sp->x = individual->placements[i].x;
985 sp->y = individual->placements[i].y;
986 sym_plan((struct symbol *) sp, zindex);
988 case SYMBOLIZER_ICON: ;
989 struct sym_icon *si = (struct sym_icon *) s;
990 si->sir.x = individual->placements[i].x;
991 si->sir.y = individual->placements[i].y;
992 sym_plan((struct symbol *) si, zindex);
994 case SYMBOLIZER_TEXT: ;
995 struct sym_text *st = (struct sym_text *) s;
996 st->x = individual->placements[i].x;
997 st->y = individual->placements[i].y;
998 st->next_duplicate = NULL;
999 if (dbg_plan) printf("Planning text %s at [%.2f; %.2f] on %u, with rotation %.2f\n", osm_val_decode(st->text), st->x, st->y, zindex, st->rotate);
1000 sym_plan((struct symbol *) st, zindex);
1003 ASSERT(s->type != SYMBOLIZER_INVALID);
1009 void labeller_label(void)
1017 dump_linelabel_requests();
1019 printf("Having %u point requests, %u line requests and %u area requests\n", GARY_SIZE(requests_point), GARY_SIZE(requests_line), GARY_SIZE(requests_area));
1021 GARY_INIT(population1, conf_pop_size);
1022 GARY_INIT(population2, conf_pop_size);
1025 printf("Dealing with %d requests\n", num_requests);
1028 while (! shall_terminate())
1032 struct individual **swp = population1;
1033 population1 = population2;
1039 dump_individual(population1[0]);
1040 //dump_bitmaps(population1[0]);
1042 plan_individual(population1[0]);
1049 void labeller_cleanup(void)
1053 void make_population(void)
1055 for (int i=0; i<conf_pop_size; i++)
1057 printf("Making individual %d\n", i);
1058 struct individual *individual = ep_alloc(ep_individuals); init_individual(individual);
1059 population1[i] = individual;
1062 for (uns j=0; j<GARY_SIZE(requests_point); j++)
1064 init_placement(&(individual->placements[p++]), (struct request *) &requests_point[j]);
1067 for (uns j=0; j<GARY_SIZE(requests_line); j++)
1069 init_placement(&(individual->placements[p++]), (struct request *) &requests_line[j]);
1071 for (uns k=0; k<GARY_SIZE(requests_line[j].sections); k++)
1073 init_placement(&(individual->placements[p++]), (struct request *) &requests_line[j].sections[k]);
1075 for (uns l=0; l<GARY_SIZE(requests_line[j].sections[k].segments); l++)
1077 init_placement(&(individual->placements[p++]), (struct request *) &requests_line[j].sections[k].segments[l]);
1082 for (uns j=0; j<GARY_SIZE(requests_area); j++)
1084 init_placement(&(individual->placements[p++]), (struct request *) &requests_area[j]);
1087 if (p != num_requests)
1089 printf("Say bye\n");
1093 printf("Testing p\n");
1094 ASSERT(p == num_requests);
1098 bool shall_terminate(void)
1100 switch (conf_term_cond)
1102 case TERM_COND_PENALTY:
1103 return (population1[0]->penalty < conf_penalty_bound);
1104 case TERM_COND_STAGNATION:
1105 return (abs(old_best - population1[0]->penalty) < conf_stagnation_bound);
1106 case TERM_COND_ITERATIONS:
1107 return (iteration >= conf_iteration_limit);
1109 // FIXME: Warn the user that no condition is set
1118 printf("%.2f\n", ((double) conf_breed_pop_size_perc/100));
1119 int conf_breed_pop_size = ((double) conf_breed_pop_size_perc/100) * conf_pop_size;
1120 struct individual **breed_buffer;
1121 while (i < conf_breed_pop_size)
1123 printf("%d < %d, breeding\n", i, conf_breed_pop_size);
1124 int parent1 = randint(1, conf_breed_pop_size);
1125 int parent2 = randint(1, conf_breed_pop_size);
1126 printf("Will breed %d and %d, chosen of %d best of %d population (intended to be %d)\n", parent1, parent2, conf_breed_pop_size, GARY_SIZE(population1), conf_pop_size);
1127 breed_buffer = perform_crossover(population1[parent1], population1[parent2]);
1128 population2[pop2_ind++] = breed_buffer[0];
1129 population2[pop2_ind++] = breed_buffer[1];
1134 acc += conf_breed_rbest_perc;
1136 return; // FIXME: DEBUG HACK
1138 int remaining = (1 - acc) * (conf_pop_size * conf_breed_perc);
1139 int step = remaining / conf_pop_size;
1140 for (; i<conf_pop_size; i += 2)
1142 printf("Asking for %d and %d of %d\n", i*step, i*(step+1), conf_pop_size);
1143 breed_buffer = perform_crossover(population1[i*step], population1[i*step+1]);
1144 population2[pop2_ind++] = breed_buffer[0];
1145 population2[pop2_ind++] = breed_buffer[1];
1148 // FIXME: Could there be one missing individual?
1151 struct individual **perform_crossover(struct individual *parent1, struct individual *parent2)
1153 struct individual **buffer = malloc(2*sizeof(struct individual));
1154 struct individual *child1 = ep_alloc(ep_individuals); init_individual(child1);
1155 struct individual *child2 = ep_alloc(ep_individuals); init_individual(child2);
1157 printf("Performing crossover\n");
1159 for (uns i=0; i<GARY_SIZE(parent1->placements); i++)
1161 printf("%dth placement out of %d\n", i, num_requests);
1162 if (! parent1->placements[i].processed)
1164 struct placement **clos_symbols = get_closure(&(parent1->placements[i]), parent1, parent2);
1165 int x = randint(1, 2);
1169 copy_symbols(clos_symbols, parent1, child1);
1170 copy_symbols(clos_symbols, parent2, child2);
1174 copy_symbols(clos_symbols, parent2, child1);
1175 copy_symbols(clos_symbols, parent1, child2);
1177 printf("Symbols copied; %lld\n", GARY_SIZE(clos_symbols));
1178 GARY_FREE(clos_symbols);
1181 if (conf_mutate_children)
1183 if (randint(1, 1000) < conf_mutate_children_prob * 1000) perform_mutation(child1);
1184 if (randint(1, 1000) < conf_mutate_children_prob * 1000) perform_mutation(child2);
1196 int conf_mutate_pop_size = conf_mutate_pop_size_perc * conf_pop_size;
1197 while (i < conf_mutate_rbest_perc * conf_pop_size)
1199 int ind = randint(1, conf_mutate_pop_size);
1200 copy_individual(population2[pop2_ind], population1[ind]);
1201 perform_mutation(population2[pop2_ind]);
1206 void perform_mutation(struct individual *individual)
1208 for (uns i=0; i<GARY_SIZE(individual->placements); i++)
1210 int x = randint(1, 1000);
1213 if (x <= acc + conf_mutate_move_bound)
1215 move_symbol(&(individual->placements[i]));
1218 acc += conf_mutate_move_bound;
1220 if (x <= acc + conf_mutate_regen_bound)
1222 gen_coords(&(individual->placements[i]));
1225 acc += conf_mutate_regen_bound;
1227 if (x <= acc + conf_mutate_chvar_bound)
1229 if (0) // if num_variants > 1
1231 // FIXME: assign new variant
1239 for (int i=0; i<conf_elite_perc * conf_pop_size; i++)
1241 population2[pop2_ind++] = population1[0];
1245 void rank_population(void)
1250 void gen_coords(struct placement *p)
1252 switch(p->request->type)
1255 gen_coords_point(p);
1260 case REQUEST_SEGMENT:
1261 gen_coords_segment(p);
1264 printf("Not yet implemented\n");
1267 printf("Testing request type\n");
1268 ASSERT(p->request->type != REQUEST_INVALID);
1272 double gen_movement(void)
1274 double m = (random() % 1000000) / 10000;
1275 m = pow(m, 1.0/3) * flip(1, -1);
1276 printf("Movement %.2f\n", m);
1280 void gen_coords_point(struct placement *p)
1282 p->x = p->x + gen_movement();
1285 void gen_coords_segment(struct placement *p)
1287 struct request_segment *rs = (struct request_segment *) p->request;
1289 p->x = (a == 1 ? rs->x1 : rs->x2);
1290 p->y = (a == 1 ? rs->y1 : rs->y2);
1293 void gen_coords_area(struct placement *p)
1295 struct request_area *ra = (struct request_area *) p->request;
1297 p->x = p->x + gen_movement();
1298 p->y = p->y + gen_movement();
1300 printf("Moved label to [%.2f; %.2f] from [%.2f; %.2f]\n", p->x, p->y, ra->cx, ra->cy);
1303 struct map_part **get_parts(struct placement *symbol, struct individual *individual)
1305 struct map_part **buffer;
1306 GARY_INIT(buffer, 0);
1307 int x_min = symbol->x / conf_part_size;
1308 int x_max = (symbol->x /*+ symbol->bitmap->width*/ + conf_part_size - 1) / conf_part_size;
1309 int y_min = symbol->y / conf_part_size;
1310 int y_max = (symbol->y /*+ symbol->bitmap->height*/ + conf_part_size - 1) / conf_part_size;
1312 for (int x=x_min; x < x_max; x++)
1313 for (int y=y_min; y < y_max; y++)
1315 struct map_part *m = GARY_PUSH(buffer);
1316 *m = individual->map[x][y];
1322 int randint(int min, int max)
1324 if (min == max) return min;
1326 //printf("Returning %d + (%d %% (%d - %d)) = %d + %d %% %d = %d + %d = %d\n", min, r, max, min, min, r, max-min, min, r%(max-min), min+(r%(max-min)));
1327 return min + (r % (max - min));
1328 return (r * (max - min));
1331 struct placement **get_closure(struct placement *placement, struct individual *parent1, struct individual *parent2 UNUSED)
1333 printf("Getting closure\n");
1334 struct placement **closure;
1335 GARY_INIT(closure, 0);
1336 bool *chosen = malloc(GARY_SIZE(parent1->placements) * sizeof(bool));
1337 chosen[placement->request->ind] = 1;
1339 struct placement **p = GARY_PUSH(closure); *p = placement;
1342 while (first < GARY_SIZE(closure))
1344 printf("Iterating, first is %d\n", first);
1345 struct placement **overlapping = get_overlapping(placement);
1346 filter(overlapping, chosen);
1347 for (uns j=0; j<GARY_SIZE(overlapping); j++)
1349 p = GARY_PUSH(closure); *p = overlapping[j];
1350 chosen[overlapping[j]->request->ind] = 1;
1352 GARY_FREE(overlapping);
1359 void copy_symbols(struct placement **closure, struct individual *parent, struct individual *child)
1361 //printf("%d\n", child->penalty);
1362 //printf("Closure size: %lld\n", GARY_SIZE(closure));
1363 for (uns i=0; i<GARY_SIZE(closure); i++)
1365 int ind = closure[i]->request->ind;
1366 child->placements[ind] = parent->placements[ind];
1367 child->placements[ind].processed = 0;
1371 void move_symbol(struct placement *p)
1373 switch (p->request->type)
1376 move_symbol_point(p);
1378 case REQUEST_SEGMENT:
1380 printf("Not yet implemented\n");
1382 ASSERT(p->request->type != REQUEST_INVALID);
1386 void move_symbol_point(struct placement *p)
1388 p->x += (double) (move_min + randdouble()) * flip(1, -1);
1389 p->y += (double) (move_min + randdouble()) * flip(1, -1);
1392 void init_placement(struct placement *p, struct request *r)
1397 p->x = p->y = 0; // To prevent valgrind from complaining
1398 p->variant_used = 0;
1401 case REQUEST_POINT: ;
1402 struct request_point *rp = (struct request_point *) r;
1406 case REQUEST_LINE: ;
1408 case REQUEST_SECTION: ;
1409 struct request_section *rls = (struct request_section *) r;
1410 p->variant_used = randint(0, rls->num_segments);
1412 case REQUEST_SEGMENT: ;
1413 struct request_segment *rs = (struct request_segment *) r;
1417 case REQUEST_AREA: ;
1418 struct request_area *ra = (struct request_area *) r;
1421 p->variant_used = 0;
1424 ASSERT(p->request->type != REQUEST_INVALID);
1425 printf("Valid request: %d\n", p->request->type);
1429 // printf("Inited placement to [%.2f; %.2f]\n", p->x, p->y);
1432 void init_individual(struct individual *i)
1434 //printf("Initing individual\n");
1435 GARY_INIT(i->placements, num_requests);
1436 GARY_INIT(i->map, 0);
1437 i->penalty = 0; // FIXME
1440 struct placement **get_overlapping(struct placement *p UNUSED)
1442 struct placement **buffer;
1443 GARY_INIT(buffer, 0);
1447 void filter(struct placement **list UNUSED, bool *pred UNUSED)
1452 int flip(int a, int b)
1454 return (random() % 2 ? a : b);
1457 double randdouble(void)
1459 // FIXME: How the hell shall double in range <0, 1> be generated? O:)
1466 GARY_FREE(requests_point);
1467 GARY_FREE(requests_line);
1468 GARY_FREE(requests_area);
1471 void copy_individual(struct individual *src, struct individual *dest)
1473 src->penalty = dest->penalty;
1474 GARY_INIT(dest->placements, GARY_SIZE(src->placements));
1475 for (uns i=0; i<GARY_SIZE(src->placements); i++)
1477 dest->placements[i] = src->placements[i];