]> mj.ucw.cz Git - leo.git/blob - labeller.c
Labelling: Let's truly support map parts and links to them
[leo.git] / labeller.c
1 #include <errno.h>
2
3 #include <ucw/lib.h>
4 #include <ucw/gary.h>
5 #include <ucw/mempool.h>
6 #include <ucw/eltpool.h>
7
8 #include "leo.h"
9 #include "sym.h"
10 #include "map.h"
11 #include "labeller.h"
12
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
17 #define HASH_WANT_NEW
18 #define HASH_WANT_CLEANUP
19 #include <ucw/hashtable.h>
20
21 #include <stdio.h>
22 #include <stdlib.h>
23 #include <math.h>
24 #include <fcntl.h>
25
26 #define BLOCK_SIZE 4096
27
28 //struct mempool *mpool_requests;
29
30 static struct request_point *requests_point;
31 static struct request_line *requests_line;
32 static struct request_area *requests_area;
33
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;
38
39 struct eltpool *ep_individuals;
40
41 struct individual **population1;
42 struct individual **population2;
43
44 int dbg_segments = 0;
45 int dbg_plan = 0;
46
47 int page_width_int;
48 int page_height_int;
49
50 int num_edges_dbg;
51 int num_nodes;
52 int num_edges = 0;
53 int dbg_num_hits = 0;
54
55 int conf_pop_size = 50;
56
57 int conf_penalty_bound = 0;
58 int conf_stagnation_bound = 0;
59 int conf_iteration_limit = 4;
60
61 int conf_term_cond = TERM_COND_ITERATIONS;
62
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
66
67 bool conf_mutate_children = 1;
68 int conf_mutate_children_prob = 0.3;
69
70 int conf_mutate_rbest_perc = 60;
71 int conf_mutate_pop_size_perc = 20;
72
73 int conf_mutate_move_bound = 0.2;
74 int conf_mutate_regen_bound = 0.1;
75 int conf_mutate_chvar_bound = 0.1;
76
77 int conf_elite_perc = 5;
78
79 double conf_max_section_length = 100;
80 double conf_max_section_overlay = 10;
81
82 int old_best = 0; // FIXME: Shall be int max
83 int iteration = 0;
84 int pop2_ind;
85
86 int conf_part_size = 50;
87
88 int move_min = 0;
89 int move_max = 1;
90
91 int num_requests = 0;
92
93 int conf_map_part_width = 5;
94 int conf_map_part_height = 5;
95 int num_map_parts_row;
96 int num_map_parts_col;
97 int num_map_parts;
98
99 void make_graph(void);
100 void label_graph(void);
101 void join_edge(struct graph_edge *e, int dir);
102 void bfs(uns longline);
103 void make_segments(void);
104
105 void make_population(void);
106 bool shall_terminate(void);
107 void breed(void);
108 void mutate(void);
109 void elite(void);
110 void rank_population(void);
111 void plan_individual(struct individual *individual);
112
113 void make_bitmap(struct point_variant *v, struct symbol *sym);
114 void make_bitmap_icon(struct point_variant *v, struct sym_icon *si);
115 void make_bitmap_point(struct point_variant *v, struct sym_point *sp);
116 void make_bitmap_label(struct point_variant *v, struct sym_text *text);
117
118 void cut_edge(struct graph_edge *e, double dist);
119 struct request_line *make_new_line(void);
120 struct request_section *make_new_section(struct request_line *rl);
121 struct request_segment *make_new_segment(struct request_section *rls, struct symbol *sym);
122
123 void dump_bitmaps(struct individual *individual);
124 void dump_graph(void);
125 void bfs2(void);
126 void bfs_edge(struct graph_edge *e, struct graph_node *node, struct graph_node *anode, enum edge_dir dir);
127 void bfs_wrapper(void);
128 void oldbfs(void);
129 void dump_longlines(void);
130 void dump_linelabel_requests(void);
131 void dump_individual(struct individual *individual);
132 void print_label(struct symbol *sym);
133
134 double gen_movement(void);
135 void gen_coords(struct placement *p);
136 void gen_coords_point(struct placement *p);
137 void gen_coords_segment(struct placement *p);
138 void gen_coords_area(struct placement *p);
139
140 struct map_part **get_map_parts(struct placement *p);
141 void update_map_parts(struct placement *p);
142
143 void make_segments_old(void);
144
145 void labeller_cleanup(void);
146
147 struct individual **perform_crossover(struct individual *parent1, struct individual *parent2);
148 void perform_mutation(struct individual *individual);
149
150 void hide_segment_labels(struct individual *individual);
151 void init_placement(struct placement *p, struct individual *individual, struct request *r);
152 void init_individual(struct individual *i);
153 struct map_part **get_parts(struct placement *symbol, struct individual *individual);
154
155 int randint(int min, int max);
156
157 struct placement **get_closure(struct placement *placement, struct individual *parent1, struct individual *parent2);
158 void copy_symbols(struct placement **closure, struct individual *parent, struct individual *child);
159 void move_symbol(struct placement *p);
160 void move_symbol_point(struct placement *p);
161
162 struct placement **get_overlapping(struct placement *p);
163 void filter(struct placement **list, bool *pred);
164
165 int flip(int a, int b);
166 double randdouble(void);
167
168 void cleanup(void);
169
170 void copy_individual(struct individual *src, struct individual *dest);
171
172 int max2(int a, int b);
173 int min2(int a, int b);
174 int max4(int a, int b, int c, int d);
175 int min4(int a, int b, int c, int d);
176
177 struct placement dummy_placement;
178
179 int max2(int a, int b)
180 {
181   return (a > b ? a : b);
182 }
183
184 int min2(int a, int b)
185 {
186   return (a < b ? a : b);
187 }
188
189 int max4(int a, int b, int c, int d)
190 {
191   return max2(max2(a, b), max2(c, d));
192 }
193
194 int min4(int a, int b, int c, int d)
195 {
196   return min2(min2(a, b), min2(c, d));
197 }
198
199 void print_label(struct symbol *sym)
200 {
201   switch (sym->type)
202   {
203     case SYMBOLIZER_TEXT: ;
204       struct sym_text *st = (struct sym_text *) sym;
205       printf("%s\n", osm_val_decode(st->text));
206     default:
207       // FIXME
208       ;
209   }
210 }
211
212 void labeller_init(void)
213 {
214   GARY_INIT(requests_point, 0);
215   GARY_INIT(requests_line, 0);
216   GARY_INIT(requests_area, 0);
217   GARY_INIT(buffer_line, 0);
218   GARY_INIT(buffer_linelabel, 0);
219   ep_individuals = ep_new(sizeof(struct individual), 1);
220
221   page_width_int = floor(page_width);
222   page_height_int = floor(page_height);
223
224   num_map_parts_row = (page_width_int + conf_map_part_width) / conf_map_part_width;
225   num_map_parts_col = (page_height_int + conf_map_part_height) / conf_map_part_height;
226   num_map_parts = num_map_parts_row * num_map_parts_col;
227 }
228
229 void make_bitmap(struct point_variant *v, struct symbol *sym)
230 {
231   switch (sym->type)
232   {
233     case SYMBOLIZER_POINT:
234       make_bitmap_point(v, (struct sym_point *) sym);
235       break;
236     case SYMBOLIZER_ICON:
237       make_bitmap_icon(v, (struct sym_icon *) sym);
238       break;
239     case SYMBOLIZER_TEXT:
240       make_bitmap_label(v, (struct sym_text *) sym);
241       break;
242     default:
243       ASSERT(sym->type != SYMBOLIZER_INVALID);
244   }
245 }
246
247 void make_bitmap_icon(struct point_variant *v, struct sym_icon *si)
248 {
249   v->width = si->sir.icon->width;
250   v->height = si->sir.icon->height;
251   v->bitmap = malloc((int) ceil(v->width * v->height * sizeof(bool)));
252   for (int i=0; i<v->width*v->height; i++) v->bitmap[i] = 1;
253 }
254
255 void make_bitmap_point(struct point_variant *v, struct sym_point *sp)
256 {
257   v->width = v->height = sp->size;
258   v->bitmap = malloc(sp->size*sp->size * sizeof(bool));
259   // FIXME: Okay, memset would be much nicer here
260   for (int i=0; i<sp->size*sp->size; i++) v->bitmap[i] = 1;
261 }
262
263 void make_bitmap_label(struct point_variant *v, struct sym_text *text)
264 {
265   v->width = ceil(text->tw);
266   v->height = ceil(text->th);
267   v->bitmap = malloc(v->width * v->height * sizeof(bool));
268   for (int i=0; i<v->height; i++)
269     for (int j=0; j<v->width; j++)
270     {
271       v->bitmap[i*v->width + j] = 1;
272     }
273 }
274
275 void labeller_add_point(struct symbol *sym, struct osm_object *object, z_index_t zindex)
276 {
277 printf("Adding point\n");
278   if (object->type != OSM_TYPE_NODE)
279   {
280     printf("Warning: Point label requested on non-point object\n");
281     return;
282   }
283
284   struct request_point *r = GARY_PUSH(requests_point);
285
286   r->request.type = REQUEST_POINT;
287   r->request.ind = num_requests++;
288
289   r->sym = sym;
290   r->zindex = zindex;
291
292   r->offset_x = 0;
293   r->offset_y = 0;
294
295   r->num_variants = 1;
296   GARY_INIT(r->variants, 0);
297
298   struct point_variant *v = GARY_PUSH(r->variants);
299
300   struct osm_node *n = (struct osm_node *) object; // FIXME: Compiler warning
301   r->x = n->x;
302   r->y = n->y;
303   switch (sym->type)
304   {
305     case SYMBOLIZER_ICON:
306       make_bitmap_icon(v, (struct sym_icon *) sym);
307       r->x = ((struct sym_icon *)sym)->sir.x;
308       r->y = ((struct sym_icon *)sym)->sir.y;
309       break;
310     case SYMBOLIZER_POINT:
311       make_bitmap_point(v, (struct sym_point *) sym);
312       break;
313     case SYMBOLIZER_TEXT: ;
314       struct sym_text *st = (struct sym_text *) sym;
315       struct osm_node *n = (struct osm_node *) object;
316       make_bitmap_label(v, st);
317     default:
318       // FIXME
319       return;
320   }
321
322 //  printf("Inited point to [%.2f; %.2f] on %u\n", r->x, r->y, r->zindex);
323 }
324
325 void labeller_add_line(struct symbol *sym, z_index_t zindex)
326 {
327 printf("Adding line on %u\n", zindex);
328   struct buffer_line *b = GARY_PUSH(buffer_line);
329   b->line = (struct sym_line *) sym;
330   b->zindex = zindex;
331   sym_plan(sym, zindex);
332 }
333
334 void labeller_add_linelabel(struct symbol *sym, struct osm_object *o, z_index_t zindex)
335 {
336   if (o->type != OSM_TYPE_WAY)
337   {
338     // FIXME
339     return;
340   }
341
342   printf("[LAB] Labelling way %ju on %u\n", o->id, zindex);
343   struct buffer_linelabel *ll = GARY_PUSH(buffer_linelabel);
344   ll->way = (struct osm_way *) o;
345   ll->label = sym;
346   ll->zindex = zindex;
347 }
348
349 void labeller_add_arealabel(struct symbol *sym, struct osm_object *o, z_index_t zindex)
350 {
351 printf("Adding area on %u\n", zindex);
352   struct request_area *r = GARY_PUSH(requests_area);
353
354   r->request.type = REQUEST_AREA;
355   r->request.ind = num_requests++;
356
357   r->o = (struct osm_multipolygon *) o;
358   r->zindex = zindex;
359   r->label = sym;
360
361   osm_obj_center(o, &(r->cx), &(r->cy));
362
363   GARY_INIT(r->variants, 0);
364   struct point_variant *v = GARY_PUSH(r->variants);
365   switch (sym->type)
366   {
367     case SYMBOLIZER_ICON:
368       printf("DEBUG: Icon label\n");
369       make_bitmap_icon(v, (struct sym_icon *) sym);
370       break;
371     case SYMBOLIZER_TEXT:
372       printf("DEBUG: Text label\n");
373       make_bitmap_label(v, (struct sym_text *) sym);
374     default:
375       // FIXME
376       ;
377   }
378 }
379
380 void make_graph(void)
381 {
382   hash_init();
383   struct mempool *mp_edges = mp_new(BLOCK_SIZE);
384
385   printf("Extracting nodes, will iterate over %lld ways\n", GARY_SIZE(buffer_line));
386   for (uns i=0; i<GARY_SIZE(buffer_line); i++)
387   {
388     struct osm_way *way = (struct osm_way *) buffer_line[i].line->s.o;
389     struct graph_node *g_prev = NULL;
390     struct osm_node *o_prev = NULL;
391
392     CLIST_FOR_EACH(struct osm_ref *, ref, way->nodes)
393     {
394       // FIXME: Shall osm_object's type be checked here?
395       struct osm_node *o_node = (struct osm_node *) ref->o;
396
397       struct graph_node *g_node = hash_find(ref->o->id);
398       if (!g_node)
399       {
400         g_node = hash_new(ref->o->id);
401         GARY_INIT(g_node->edges, 0);
402         g_node->o = o_node;
403         g_node->id = ref->o->id;
404         g_node->num = num_nodes++;
405       }
406
407       if (! g_prev)
408       {
409         g_prev = g_node;
410         o_prev = o_node;
411         continue;
412       }
413
414       struct graph_edge *e = mp_alloc(mp_edges, sizeof(struct graph_edge)); num_edges_dbg++;
415       e->num = num_edges++;
416       e->id = buffer_line[i].line->s.o->id;
417       e->color = buffer_line[i].line->color;
418       e->length = hypot(abs(o_prev->x - o_node->x), abs(o_prev->y - o_node->y));
419       e->visited = -1;
420       e->prev = NULL;
421       e->next = NULL;
422       e->n1 = g_prev;
423       e->n2 = g_node;
424       e->longline = (uns) -1;
425       e->line = buffer_line[i].line;
426       e->dir = DIR_UNSET;
427       e->label = NULL;
428
429       struct graph_edge **edge = GARY_PUSH(g_prev->edges);
430       *edge = e;
431       edge = GARY_PUSH(g_node->edges);
432       *edge = e;
433
434       g_prev = g_node;
435       o_prev = o_node;
436     }
437   }
438
439   printf("Made graph with %d edges\n", num_edges_dbg);
440 }
441
442 void dump_graph(void)
443 {
444   HASH_FOR_ALL(hash, node)
445   {
446     printf("* Node: (%d) #%ju [%.2f; %.2f]\n", node->num, node->id, node->o->x, node->o->y);
447     for (uns i=0; i<GARY_SIZE(node->edges); i++)
448     {
449       struct graph_edge *e = node->edges[i];
450       printf("\t edge (%d) #%ju to ", e->num, e->id);
451       if (node->edges[i]->n1->id == node->id)
452         printf("(%d) #%ju [%.2f; %.2f]\n", e->n2->num, e->n2->id, e->n2->o->x, e->n2->o->y);
453       else if (node->edges[i]->n2->id == node->id)
454         printf("(%d) #%ju [%.2f; %.2f]\n", e->n1->num, e->n1->id, e->n1->o->x, e->n1->o->y);
455       else
456         printf("BEWARE! BEWARE! BEWARE!\n");
457
458       printf("\t\t");
459       if ((node->edges[i]->label)) printf("Labelled\n");
460       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));
461       printf(" colored %d;", node->edges[i]->color);
462       printf("   length %.2f", node->edges[i]->length);
463       printf("\n");
464     }
465   }
466   HASH_END_FOR;
467 }
468
469 void label_graph(void)
470 {
471 printf("There are %u line labels requested\n", GARY_SIZE(buffer_linelabel));
472   for (uns i=0; i<GARY_SIZE(buffer_linelabel); i++)
473   {
474     if (buffer_linelabel[i].label->type == SYMBOLIZER_TEXT)
475     printf("Labelling nodes of way %s\n", osm_val_decode(((struct sym_text *) buffer_linelabel[i].label)->text));
476     CLIST_FOR_EACH(struct osm_ref *, ref, buffer_linelabel[i].way->nodes)
477     {
478       printf("Looking for node %ju\n", ref->o->id);
479       struct graph_node *n = hash_find(ref->o->id);
480       if (n == NULL)
481       {
482         // FIXME: What shall be done?
483       }
484       else
485       {
486         printf("Searching among %u edges\n", GARY_SIZE(n->edges));
487         for (uns j=0; j<GARY_SIZE(n->edges); j++)
488         {
489           if (n->edges[j]->id == buffer_linelabel[i].way->o.id)
490           {
491             printf("Labelling node %ju\n", n->id);
492             n->edges[j]->label = buffer_linelabel[i].label;
493             n->edges[j]->zindex = buffer_linelabel[i].zindex;
494           }
495         }
496       }
497     }
498   }
499 }
500
501 void bfs_edge(struct graph_edge *e, struct graph_node *node, struct graph_node *anode, enum edge_dir dir)
502 {
503 printf("BFS edge called for edge %d (going %d) in direction %d\n", e->num, e->dir, dir);
504   struct graph_edge *candidate = NULL;
505
506   for (uns i=0; i<GARY_SIZE(node->edges); i++)
507   {
508     struct graph_edge *other = node->edges[i];
509 if (e->num == 987) printf("Got label %d\n", e->num);
510     if ((other->longline != (uns) -1) && (other->longline != e->longline)) continue;
511 if (e->num == 987) printf("Continuing with edge %d\n", e->num);
512
513 printf("Testing %d ?= %d\n", other->visited, e->longline);
514     if ((uns) other->visited != e->longline) {
515     printf("Pushing new edge %d / %ju\n", other->num, other->id);
516     struct graph_edge **e_ptr = GARY_PUSH(bfs_queue);
517     *e_ptr = other;
518     other->visited = e->longline;
519     }
520
521     if (((other->n1->id == node->id) && (other->n2->id == anode->id)) ||
522         ((other->n2->id == node->id) && (other->n1->id == anode->id)))
523         continue;
524
525     if (((other->n1->id == node->id) || (other->n2->id == node->id)) &&
526         (e->label) && (other->label) &&
527         (e->label->type == SYMBOLIZER_TEXT) && (other->label->type == SYMBOLIZER_TEXT) &&
528         (((struct sym_text *) e->label)->text == ((struct sym_text *) other->label)->text))
529     {
530       if (! candidate || (other->length > candidate->length))
531       candidate = other;
532     }
533   }
534
535   if (candidate)
536   {
537 printf("New line in longline %u\n", e->longline);
538     struct graph_edge *other = candidate;
539       other->longline = e->longline;
540       other->dir = dir;
541       if (((dir == DIR_BWD) && (other->n1->id == node->id)) ||
542           ((dir == DIR_FWD) && (other->n2->id == node->id)))
543       {
544         struct graph_node *swp = other->n2;
545         other->n2 = other->n1;
546         other->n1 = swp;
547       }
548
549       switch (dir)
550       {
551         case DIR_BWD:
552           e->prev = other;
553           other->next = e;
554           longlines[other->longline].first = other;
555           break;
556         case DIR_FWD:
557           e->next = other;
558           other->prev = e;
559           break;
560         default:
561           printf("Oops\n");
562           ASSERT(0);
563       }
564   }
565 }
566
567 void bfs(uns longline)
568 {
569 printf("BFS called for longline %u\n", longline);
570 printf("%d longlines are believed to exist, %d exist\n", num_longlines, GARY_SIZE(longlines));
571   for (uns i=0; i<GARY_SIZE(bfs_queue); i++)
572   {
573     struct graph_edge *cur = bfs_queue[i];
574     printf("Exploring new edge %d; %d remaining\n", cur->num, GARY_SIZE(bfs_queue));
575     //ASSERT(! cur->visited);
576
577     cur->visited = longline;
578
579     if (cur->longline == (uns) -1)
580       continue;
581
582     if (cur->dir == DIR_UNSET)
583     {
584       cur->dir = DIR_CENTER;
585       bfs_edge(cur, cur->n1, cur->n2, DIR_BWD);
586       bfs_edge(cur, cur->n2, cur->n1, DIR_FWD);
587     }
588     else
589     {
590       switch (cur->dir)
591       {
592         case DIR_BWD:
593           bfs_edge(cur, cur->n1, cur->n2, cur->dir);
594           break;
595         case DIR_FWD:
596           bfs_edge(cur, cur->n2, cur->n1, cur->dir);
597           break;
598         default:
599           // FIXME
600           ;
601       }
602     }
603   }
604 }
605
606 void bfs_wrapper(void)
607 {
608   GARY_INIT(bfs_queue, 0);
609   GARY_INIT(longlines, 0);
610
611   HASH_FOR_ALL(hash, node)
612   {
613     for (uns i=0; i<GARY_SIZE(node->edges); i++)
614     {
615       if ((node->edges[i]->label) && (node->edges[i]->longline == (uns) -1))
616       {
617         GARY_PUSH(longlines);
618         longlines[num_longlines].first = node->edges[i];
619         printf("Running new BFS\n");
620         printf("Creating longline %u\n", num_longlines);
621         GARY_RESIZE(bfs_queue, 0);
622         struct graph_edge **e = GARY_PUSH(bfs_queue);
623         *e = node->edges[i];
624         node->edges[i]->longline = num_longlines;
625         bfs(node->edges[i]->longline);
626         //dump_longlines();
627         printf("Joined %d edges\n", dbg_num_hits); dbg_num_hits = 0;
628         printf("Planned %u edges\n", GARY_SIZE(bfs_queue));
629         num_longlines++;
630       }
631     }
632   }
633   HASH_END_FOR;
634
635   GARY_FREE(bfs_queue);
636 }
637
638 void dump_longlines(void)
639 {
640 printf("*** Longlines dump\n");
641   for (uns i=0; i<GARY_SIZE(longlines); i++)
642   {
643 printf("Longline %u:", i);
644     struct graph_edge *e = longlines[i].first;
645 if ((e->label) && (e->label->type == SYMBOLIZER_TEXT))
646   printf(" labelled %s", osm_val_decode(((struct sym_text *) e->label)->text));
647 printf("\n");
648
649     while (e)
650     {
651       printf("\t#%ju (%d): [%.2f; %.2f] -- [%.2f; %.2f] (dir %d)\n",
652              e->id, e->num, e->n1->o->x, e->n1->o->y, e->n2->o->x, e->n2->o->y, e->dir);
653
654       e = e->next;
655     }
656   }
657 }
658
659 struct request_line *make_new_line(void)
660 {
661   struct request_line *rl = GARY_PUSH(requests_line);
662   rl->request.ind = num_requests++;
663   rl->request.type = REQUEST_LINE;
664   GARY_INIT(rl->sections, 0);
665
666   return rl;
667 }
668
669 struct request_section *make_new_section(struct request_line *rl)
670 {
671   struct request_section *rls = GARY_PUSH(rl->sections);
672   rls->request.ind = num_requests++;
673   rls->request.type = REQUEST_SECTION;
674   rls->num_segments = 0;
675   GARY_INIT(rls->segments, 0);
676
677   return rls;
678 }
679
680 struct request_segment *make_new_segment(struct request_section *rls, struct symbol *sym)
681 {
682   struct request_segment *rs = GARY_PUSH(rls->segments);
683   rls->num_segments++;
684
685   rs->request.ind = num_requests++;
686   rs->request.type = REQUEST_SEGMENT;
687
688   struct point_variant *v = malloc(sizeof(struct point_variant));
689   make_bitmap(v, sym);
690   rs->variant = v;
691
692   return rs;
693 }
694
695 void cut_edge(struct graph_edge *e, double dist)
696 {
697   if (dbg_segments)
698     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
700   struct graph_edge *new = malloc(sizeof(struct graph_edge));
701   *new = *e;
702   e->next = new;
703
704   struct osm_node *n1 = e->n1->o;
705   struct osm_node *n2 = e->n2->o;
706
707   // FIXME
708   if ((n1->x == n2->x) && (n1->y == n2->y))
709   {
710     printf("[%.2f; %.2f] -- [%.2f; %.2f]\n", n1->x, n1->y, n2->x, n2->y);
711     printf("Won't cut point\n");
712     return;
713   }
714
715   struct osm_node *n11 = malloc(sizeof(struct osm_node));
716   struct graph_node *gn = malloc(sizeof(struct graph_node));
717   gn->o = n11;
718   double vsize = sqrt(pow(n1->x - n2->x, 2) + pow(n1->y - n2->y, 2));
719   n11->x = n1->x + (n2->x - n1->x) / vsize * dist;
720   n11->y = n1->y + (n2->y - n1->y) / vsize * dist;
721
722   e->n2 = new->n1 = gn;
723
724   e->length = hypot(abs(n1->x - n11->x), abs(n1->y - n11->y));
725   new->length = hypot(abs(n11->x - n2->x), abs(n11->y - n2->y));
726 }
727
728 void make_segments(void)
729 {
730   for (uns i=0; i<GARY_SIZE(longlines); i++)
731   {
732     // Skip lines which are not labelled
733     if (! (longlines[i].first && longlines[i].first->label))
734       continue;
735
736     struct request_line *request = make_new_line();
737     struct request_section *rls = make_new_section(request);
738     struct request_segment *rs = NULL;
739
740     struct graph_edge *e = longlines[i].first;
741     double cur_length = 0;
742
743     struct sym_text *st = NULL;
744     if (e->label->type == SYMBOLIZER_TEXT)
745     {
746       st = (struct sym_text *) e->label;
747     }
748     else
749     {
750       printf("Warning: Skipping line\n");
751       continue;
752       // FIXME;
753     }
754
755     printf("New longline\n");
756     while (e)
757     {
758       if (cur_length + e->length > conf_max_section_length + conf_max_section_overlay)
759       {
760         if (dbg_segments)
761           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);
762         cut_edge(e, conf_max_section_length - cur_length);
763       }
764
765       if (cur_length + e->length > conf_max_section_length)
766       {
767         if (dbg_segments)
768           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
770         struct osm_node *n1 = e->n1->o;
771         struct osm_node *n2 = e->n2->o;
772         rs = make_new_segment(rls, e->label);
773         rs->x1 = n1->x;
774         rs->y1 = n1->y;
775         rs->x2 = n2->x;
776         rs->y2 = n2->y;
777         rs->zindex = e->zindex;
778
779         rs->label = malloc(sizeof(struct sym_text));
780         *((struct sym_text *) rs->label) = *((struct sym_text *) e->label);
781         rls = make_new_section(request);
782         cur_length = 0;
783       }
784
785       if (st && (e->length < st->tw))
786       {
787         e = e->next;
788         printf("Warning: Skipping segment\n");
789         continue;
790       }
791
792       rs = make_new_segment(rls, e->label);
793       rs->label = malloc(sizeof(struct sym_text));
794       *((struct sym_text *) rs->label) = *((struct sym_text *) e->label);
795
796       rs->x1 = e->n1->o->x;
797       rs->y1 = e->n1->o->y;
798       rs->x2 = e->n2->o->x;
799       rs->y2 = e->n2->o->y;
800
801       // FIXME: Set text rotation
802       rs->angle = atan2(rs->x2 - rs->x1, rs->y2 - rs->y1);
803       rs->zindex = e->zindex;
804
805       cur_length += e->length;
806       e = e->next;
807     }
808
809     if (request->sections[0].num_segments == 0)
810     {
811       // FIXME
812       printf("WARNING: 0 segment section\n");
813       GARY_POP(requests_line);
814       num_requests -= 2;
815     }
816   }
817 }
818
819 void dump_linelabel_requests(void)
820 {
821   for (uns i=0; i<GARY_SIZE(requests_line); i++)
822   {
823     if (requests_line[i].sections[0].num_segments == 0)
824     {
825       printf("HEY!\n");
826       continue;
827     }
828     printf("Request for linelabel, %d sections\n", GARY_SIZE(requests_line[i].sections));
829     print_label(requests_line[i].sections[0].segments[0].label);
830     for (uns j=0; j<GARY_SIZE(requests_line[i].sections); j++)
831     {
832       printf("%d section, %d segments\n", j, GARY_SIZE(requests_line[i].sections[j].segments));
833       for (uns k=0; k<GARY_SIZE(requests_line[i].sections[j].segments); k++)
834       {
835         struct request_segment *rs = &requests_line[i].sections[j].segments[k];
836         printf("[%.2f; %.2f] -- [%.2f; %.2f]\n", rs->x1, rs->y1, rs->x2, rs->y2);
837       }
838     }
839     printf("\n");
840   }
841 }
842
843 void dump_bitmaps(struct individual *individual)
844 {
845   bool *bitmap = malloc(page_width_int * page_height_int * sizeof(bool));
846   printf("Bitmap size is %d\n", page_width_int * page_height_int);
847   for (int i=0; i<page_height_int; i++)
848     for (int j=0; j<page_width_int; j++)
849       bitmap[i*page_width_int + j] = 0;
850
851   for (uns i=0; i<GARY_SIZE(individual->placements); i++)
852   {
853 fprintf(stderr, "%d-th placement\n", i);
854     struct placement *p = &(individual->placements[i]);
855     struct point_variant *v = NULL;
856
857     switch (p->request->type)
858     {
859       case REQUEST_SEGMENT: ;
860         struct request_segment *rs = (struct request_segment *) p->request;
861         v = rs->variant;
862         break;
863       case REQUEST_POINT: ;
864         struct request_point *rp = (struct request_point *) p->request;
865         v = &(rp->variants[p->variant_used]);
866         break;
867       case REQUEST_AREA: ;
868         struct request_area *ra = (struct request_area *) p->request;
869         printf("Using %d-th of %d variants\n", p->variant_used, GARY_SIZE(ra->variants));
870         v = &(ra->variants[p->variant_used]);
871         break;
872       default:
873         printf("Testing request type (dump_bitmaps): %d\n", p->request->type);
874         ASSERT(p->request->type != REQUEST_INVALID);
875         continue;
876     }
877
878     printf("Got after with %d-th placement of request type %d\n", i, p->request->type);
879
880     printf("Rendering %d-th label %d x %d (w x h)\n", i, v->width, v->height);
881     for (int row = max2(p->y, 0); row < min2(p->y + v->height, page_height_int); row++)
882     {
883       for (int col = max2(p->x, 0); col < min2(p->x + v->width, page_width_int); col++)
884       {
885         printf("Writing to %d\n", row*page_width_int + col);
886         bitmap[row * page_width_int + col] = 1;
887       }
888     }
889   }
890
891   errno = 0;
892   FILE *fd_dump = fopen("dump.pbm", "w");
893   fprintf(fd_dump, "P1\n");
894   fprintf(fd_dump, "%d %d\n", page_width_int, page_height_int);
895   for (int i=0; i<page_height_int; i++)
896   {
897     for (int j=0; j<page_width_int; j++)
898     {
899       fprintf(fd_dump, "%d", bitmap[(int) (i*page_width_int + j)] ? 1 : 0);
900     }
901     fprintf(fd_dump, "\n");
902   }
903   fclose(fd_dump);
904 }
905
906 void dump_individual(struct individual *individual)
907 {
908 printf("*** Dumping INDIVIDUAL ***\n");
909 printf("(There are %d requests)\n", num_requests);
910   for (uns i=0; i<GARY_SIZE(individual->placements); i++)
911   {
912     struct placement *p = &(individual->placements[i]);
913
914     switch (p->request->type)
915     {
916       case REQUEST_POINT:
917         printf("Point at [%.2f; %.2f] on %u\n", p->x, p->y, ((struct request_point *) p->request)->zindex);
918         break;
919       case REQUEST_LINE: ;
920         struct request_line *rl = (struct request_line *) p->request;
921         printf("Line: ");
922         print_label(rl->sections[0].segments[0].label);
923         break;
924       case REQUEST_SECTION: ;
925         printf("*");
926         break;
927       case REQUEST_SEGMENT: ;
928         if (p->variant_used >= 0)
929           printf("Segment placed at [%.2f; %.2f] on %u\n", p->x, p->y, ((struct request_segment *) p->request)->zindex);
930         else
931           printf("Segment not placed\n");
932         break;
933       case REQUEST_AREA: ;
934         struct request_area *ra = (struct request_area *) p->request;
935         printf("Area label ");
936         print_label(ra->label);
937         printf(" at [%.2f; %.2f] on %u\n", p->x, p->y, ((struct request_area *) p->request)->zindex);
938         break;
939       default:
940         printf("Testing request type (dump_individual)\n");
941         ASSERT(p->request->type != 0);
942     }
943   }
944   printf("\nTotal penalty: %d\n", individual->penalty);
945 }
946
947 void plan_individual(struct individual *individual)
948 {
949   for (uns i=0; i<GARY_SIZE(individual->placements); i++)
950   {
951     struct symbol *s = NULL;
952     z_index_t zindex = 0;
953     if (individual->placements[i].variant_used < 0) continue;
954     switch (individual->placements[i].request->type)
955     {
956       case REQUEST_POINT: ;
957         struct request_point *rp = (struct request_point *) individual->placements[i].request;
958         s = rp->sym;
959         zindex = rp->zindex;
960         break;
961       case REQUEST_SEGMENT: ;
962         struct request_segment *rs = (struct request_segment *) individual->placements[i].request;
963         s = rs->label;
964         zindex = rs->zindex;
965         break;
966       case REQUEST_LINE: ;
967         break;
968       case REQUEST_AREA: ;
969         struct request_area *ra = (struct request_area *) individual->placements[i].request;
970         s = ra->label;
971         zindex = ra->zindex;
972         break;
973       default:
974         ASSERT(individual->placements[i].request != REQUEST_INVALID);
975         continue;
976     }
977
978 if (dbg_plan)
979   printf("Will plan symbol at [%.2f; %.2f] on %u\n", individual->placements[i].x, individual->placements[i].y, zindex);
980
981     if (s) switch (s->type)
982     {
983       case SYMBOLIZER_POINT: ;
984         struct sym_point *sp = (struct sym_point *) s;
985         sp->x = individual->placements[i].x;
986         sp->y = individual->placements[i].y;
987         sym_plan((struct symbol *) sp, zindex);
988         break;
989       case SYMBOLIZER_ICON: ;
990         struct sym_icon *si = (struct sym_icon *) s;
991         si->sir.x = individual->placements[i].x;
992         si->sir.y = individual->placements[i].y;
993         sym_plan((struct symbol *) si, zindex);
994         break;
995       case SYMBOLIZER_TEXT: ;
996         struct sym_text *st = (struct sym_text *) s;
997         st->x = individual->placements[i].x;
998         st->y = individual->placements[i].y;
999         st->next_duplicate = NULL;
1000         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);
1001         sym_plan((struct symbol *) st, zindex);
1002         break;
1003       default:
1004         ASSERT(s->type != SYMBOLIZER_INVALID);
1005     }
1006   }
1007
1008 }
1009
1010 void labeller_label(void)
1011 {
1012   make_graph();
1013   label_graph();
1014 //dump_graph();
1015   bfs_wrapper();
1016 //dump_longlines();
1017   make_segments();
1018 dump_linelabel_requests();
1019
1020 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
1022   GARY_INIT(population1, conf_pop_size);
1023   GARY_INIT(population2, conf_pop_size);
1024   make_population();
1025
1026   printf("Dealing with %d requests\n", num_requests);
1027
1028 /*
1029   while (! shall_terminate())
1030   {
1031     iteration++;
1032
1033     struct individual **swp = population1;
1034     population1 = population2;
1035     population2 = swp;
1036     pop2_ind = 0;
1037   }
1038 */
1039
1040   dump_individual(population1[0]);
1041 //dump_bitmaps(population1[0]);
1042
1043   plan_individual(population1[0]);
1044
1045   labeller_cleanup();
1046
1047   return;
1048 }
1049
1050 void labeller_cleanup(void)
1051 {
1052 }
1053
1054 void make_population(void)
1055 {
1056   for (int i=0; i<conf_pop_size; i++)
1057   {
1058     printf("Making individual %d\n", i);
1059     struct individual *individual = ep_alloc(ep_individuals); init_individual(individual);
1060     population1[i] = individual;
1061
1062     int p = 0;
1063     for (uns j=0; j<GARY_SIZE(requests_point); j++)
1064     {
1065       init_placement(&(individual->placements[p++]), individual, (struct request *) &requests_point[j]);
1066     }
1067
1068     for (uns j=0; j<GARY_SIZE(requests_line); j++)
1069     {
1070       init_placement(&(individual->placements[p++]), individual, (struct request *) &requests_line[j]);
1071
1072       for (uns k=0; k<GARY_SIZE(requests_line[j].sections); k++)
1073       {
1074         init_placement(&(individual->placements[p++]), individual, (struct request *) &requests_line[j].sections[k]);
1075
1076         for (uns l=0; l<GARY_SIZE(requests_line[j].sections[k].segments); l++)
1077         {
1078           init_placement(&(individual->placements[p++]), individual, (struct request *) &requests_line[j].sections[k].segments[l]);
1079         }
1080       }
1081     }
1082
1083     for (uns j=0; j<GARY_SIZE(requests_area); j++)
1084     {
1085       init_placement(&(individual->placements[p++]), individual, (struct request *) &requests_area[j]);
1086     }
1087
1088     hide_segment_labels(individual);
1089
1090 if (p != num_requests)
1091 {
1092   printf("Say bye\n");
1093   exit(42);
1094 }
1095
1096 printf("Testing p\n");
1097     ASSERT(p == num_requests);
1098   }
1099 }
1100
1101 bool shall_terminate(void)
1102 {
1103   switch (conf_term_cond)
1104   {
1105     case TERM_COND_PENALTY:
1106       return (population1[0]->penalty < conf_penalty_bound);
1107     case TERM_COND_STAGNATION:
1108       return (abs(old_best - population1[0]->penalty) < conf_stagnation_bound);
1109     case TERM_COND_ITERATIONS:
1110       return (iteration >= conf_iteration_limit);
1111     default:
1112       // FIXME: Warn the user that no condition is set
1113       return 1;
1114   }
1115 }
1116
1117 void breed(void)
1118 {
1119   int acc = 0;
1120   int i=0;
1121   printf("%.2f\n", ((double) conf_breed_pop_size_perc/100));
1122   int conf_breed_pop_size = ((double) conf_breed_pop_size_perc/100) * conf_pop_size;
1123   struct individual **breed_buffer;
1124   while (i < conf_breed_pop_size)
1125   {
1126   printf("%d < %d, breeding\n", i, conf_breed_pop_size);
1127     int parent1 = randint(1, conf_breed_pop_size);
1128     int parent2 = randint(1, conf_breed_pop_size);
1129     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);
1130     breed_buffer = perform_crossover(population1[parent1], population1[parent2]);
1131     population2[pop2_ind++] = breed_buffer[0];
1132     population2[pop2_ind++] = breed_buffer[1];
1133     free(breed_buffer);
1134     i++;
1135   }
1136
1137   acc += conf_breed_rbest_perc;
1138
1139   return; // FIXME: DEBUG HACK
1140
1141   int remaining = (1 - acc) * (conf_pop_size * conf_breed_perc);
1142   int step = remaining / conf_pop_size;
1143   for (; i<conf_pop_size; i += 2)
1144   {
1145     printf("Asking for %d and %d of %d\n", i*step, i*(step+1), conf_pop_size);
1146     breed_buffer = perform_crossover(population1[i*step], population1[i*step+1]);
1147     population2[pop2_ind++] = breed_buffer[0];
1148     population2[pop2_ind++] = breed_buffer[1];
1149   }
1150
1151   // FIXME: Could there be one missing individual?
1152 }
1153
1154 struct individual **perform_crossover(struct individual *parent1, struct individual *parent2)
1155 {
1156   struct individual **buffer = malloc(2*sizeof(struct individual));
1157   struct individual *child1 = ep_alloc(ep_individuals); init_individual(child1);
1158   struct individual *child2 = ep_alloc(ep_individuals); init_individual(child2);
1159
1160   printf("Performing crossover\n");
1161
1162   for (uns i=0; i<GARY_SIZE(parent1->placements); i++)
1163   {
1164     printf("%dth placement out of %d\n", i, num_requests);
1165     if (! parent1->placements[i].processed)
1166     {
1167       struct placement **clos_symbols = get_closure(&(parent1->placements[i]), parent1, parent2);
1168       int x = randint(1, 2);
1169
1170       if (x == 1)
1171       {
1172         copy_symbols(clos_symbols, parent1, child1);
1173         copy_symbols(clos_symbols, parent2, child2);
1174       }
1175       else
1176       {
1177         copy_symbols(clos_symbols, parent2, child1);
1178         copy_symbols(clos_symbols, parent1, child2);
1179       }
1180       printf("Symbols copied; %lld\n", GARY_SIZE(clos_symbols));
1181       GARY_FREE(clos_symbols);
1182     }
1183
1184     if (conf_mutate_children)
1185     {
1186       if (randint(1, 1000) < conf_mutate_children_prob * 1000) perform_mutation(child1);
1187       if (randint(1, 1000) < conf_mutate_children_prob * 1000) perform_mutation(child2);
1188     }
1189   }
1190
1191   buffer[0] = child1;
1192   buffer[1] = child2;
1193   return buffer;
1194 }
1195
1196 void mutate(void)
1197 {
1198   int i = 0;
1199   int conf_mutate_pop_size = conf_mutate_pop_size_perc * conf_pop_size;
1200   while (i < conf_mutate_rbest_perc * conf_pop_size)
1201   {
1202     int ind = randint(1, conf_mutate_pop_size);
1203     copy_individual(population2[pop2_ind], population1[ind]);
1204     perform_mutation(population2[pop2_ind]);
1205     pop2_ind++;
1206   }
1207 }
1208
1209 void perform_mutation(struct individual *individual)
1210 {
1211   for (uns i=0; i<GARY_SIZE(individual->placements); i++)
1212   {
1213     int x = randint(1, 1000);
1214     int acc = 0;
1215
1216     if (x <= acc + conf_mutate_move_bound)
1217     {
1218       move_symbol(&(individual->placements[i]));
1219       continue;
1220     }
1221     acc += conf_mutate_move_bound;
1222
1223     if (x <= acc + conf_mutate_regen_bound)
1224     {
1225       gen_coords(&(individual->placements[i]));
1226       continue;
1227     }
1228     acc += conf_mutate_regen_bound;
1229
1230     if (x <= acc + conf_mutate_chvar_bound)
1231     {
1232       if (0) // if num_variants > 1
1233       {
1234         // FIXME: assign new variant
1235       }
1236     }
1237   }
1238 }
1239
1240 void elite(void)
1241 {
1242   for (int i=0; i<conf_elite_perc * conf_pop_size; i++)
1243   {
1244     population2[pop2_ind++] = population1[0];
1245   }
1246 }
1247
1248 void rank_population(void)
1249 {
1250   // FIXME
1251 }
1252
1253 struct map_part **get_map_parts(struct placement *p)
1254 {
1255   if (p->variant_used < 0) return NULL;
1256
1257   struct map_part **buffer;
1258   GARY_INIT(buffer, 0);
1259
1260   if (dbg_map_parts)
1261     printf("Looking for map parts containing placement of request %d, placed at [%.2f; %.2f]\n", p->request->ind, p->x, p->y);
1262
1263   struct point_variant v;
1264   switch (p->request->type)
1265   {
1266     case REQUEST_POINT:
1267       v = ((struct request_point *) p->request)->variants[p->variant_used];
1268       break;
1269     case REQUEST_SEGMENT:
1270       v = ((struct request_segment *) p->request)->variant[p->variant_used];
1271       break;
1272     case REQUEST_AREA:
1273       v = ((struct request_area *) p->request)->variants[p->variant_used];
1274       break;
1275     default:
1276       return NULL;
1277   }
1278
1279   int x_min = max2(0, p->x) / conf_map_part_width;
1280   int x_max = min2(page_width_int, (p->x + v.width + conf_map_part_width - 1)) / conf_map_part_width;
1281   int y_min = max2(0, p->y) / conf_map_part_height;
1282   int y_max = min2(page_height_int, (p->y + v.height + conf_map_part_height - 1)) / conf_map_part_height;
1283
1284   if (dbg_map_parts)
1285     printf("Cells between [%d; %d] and [%d; %d] generated\n", x_min, y_min, x_max, y_max);
1286
1287   for (int y=y_min; y<=y_max; y++)
1288     for (int x=x_min; x<=x_max; x++)
1289     {
1290       struct map_part **m = GARY_PUSH(buffer);
1291       if (dbg_map_parts)
1292         printf("Asking for %d of %u\n", y * num_map_parts_row + x, GARY_SIZE(p->individual->map));
1293       *m = p->individual->map[y * num_map_parts_row + x];
1294     }
1295
1296   return buffer;
1297 }
1298
1299 void update_map_parts(struct placement *p)
1300 {
1301   struct placement_link *ml = p->map_links;
1302   while (ml)
1303   {
1304     struct map_placement *mp = ml->mp;
1305     mp->prev = mp->next;
1306     if (mp->next)
1307       mp->next->prev = mp->prev;
1308     free(mp);
1309
1310     struct placement_link *tmp = ml;
1311     ml = ml->next;
1312     free(tmp);
1313   }
1314
1315   struct map_part **parts = get_map_parts(p);
1316   if (parts == NULL) return;
1317
1318   for (uns i=0; i<GARY_SIZE(parts); i++)
1319   {
1320     struct map_placement *mp = malloc(sizeof(struct map_placement));
1321     mp->placement = p;
1322
1323     mp->next = parts[i]->placement->next;
1324     parts[i]->placement->next = mp;
1325     if (mp->next) mp->next->prev = mp;
1326
1327     struct placement_link *ml = malloc(sizeof(struct placement_link));
1328     ml->mp = mp;
1329     ml->next = p->map_links;
1330     p->map_links = ml;
1331   }
1332
1333   GARY_FREE(parts);
1334 }
1335
1336 void gen_coords(struct placement *p)
1337 {
1338   switch(p->request->type)
1339   {
1340     case REQUEST_POINT:
1341       gen_coords_point(p);
1342       break;
1343     case REQUEST_AREA:
1344       gen_coords_area(p);
1345       break;
1346     case REQUEST_SEGMENT:
1347       gen_coords_segment(p);
1348       break;
1349     case REQUEST_LINE:
1350       printf("Not yet implemented\n");
1351       break;
1352     default:
1353       printf("Testing request type\n");
1354       ASSERT(p->request->type != REQUEST_INVALID);
1355   }
1356
1357   update_map_parts(p);
1358 }
1359
1360 double gen_movement(void)
1361 {
1362   double m = (random() % 1000000) / 10000;
1363   m = pow(m, 1.0/3) * flip(1, -1);
1364   printf("Movement %.2f\n", m);
1365   return m;
1366 }
1367
1368 void gen_coords_point(struct placement *p)
1369 {
1370   p->x = p->x + gen_movement();
1371 }
1372
1373 void gen_coords_segment(struct placement *p)
1374 {
1375   struct request_segment *rs = (struct request_segment *) p->request;
1376   int a = flip(1, 2);
1377   p->x = (a == 1 ? rs->x1 : rs->x2);
1378   p->y = (a == 1 ? rs->y1 : rs->y2);
1379 }
1380
1381 void gen_coords_area(struct placement *p)
1382 {
1383   struct request_area *ra = (struct request_area *) p->request;
1384
1385   p->x = p->x + gen_movement();
1386   p->y = p->y + gen_movement();
1387
1388   printf("Moved label to [%.2f; %.2f] from [%.2f; %.2f]\n", p->x, p->y, ra->cx, ra->cy);
1389 }
1390
1391 struct map_part **get_parts(struct placement *symbol, struct individual *individual)
1392 {
1393   struct map_part **buffer;
1394   GARY_INIT(buffer, 0);
1395   int x_min = symbol->x / conf_part_size;
1396   int x_max = (symbol->x /*+ symbol->bitmap->width*/ + conf_part_size - 1) / conf_part_size;
1397   int y_min = symbol->y / conf_part_size;
1398   int y_max = (symbol->y /*+ symbol->bitmap->height*/ + conf_part_size - 1) / conf_part_size;
1399
1400   for (int x=x_min; x < x_max; x++)
1401     for (int y=y_min; y < y_max; y++)
1402     {
1403       struct map_part *m = GARY_PUSH(buffer);
1404       *m = individual->map[x][y];
1405     }
1406
1407   return buffer;
1408 }
1409
1410 int randint(int min, int max)
1411 {
1412   if (min == max) return min;
1413   int r = random();
1414   //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)));
1415   return min + (r % (max - min));
1416   return (r * (max - min));
1417 }
1418
1419 struct placement **get_closure(struct placement *placement, struct individual *parent1, struct individual *parent2 UNUSED)
1420 {
1421   printf("Getting closure\n");
1422   struct placement **closure;
1423   GARY_INIT(closure, 0);
1424   bool *chosen = malloc(GARY_SIZE(parent1->placements) * sizeof(bool));
1425   chosen[placement->request->ind] = 1;
1426
1427   struct placement **p = GARY_PUSH(closure); *p = placement;
1428
1429   uns first = 0;
1430   while (first < GARY_SIZE(closure))
1431   {
1432     printf("Iterating, first is %d\n", first);
1433     struct placement **overlapping = get_overlapping(placement);
1434     filter(overlapping, chosen);
1435     for (uns j=0; j<GARY_SIZE(overlapping); j++)
1436     {
1437       p = GARY_PUSH(closure); *p = overlapping[j];
1438       chosen[overlapping[j]->request->ind] = 1;
1439     }
1440     GARY_FREE(overlapping);
1441     first++;
1442   }
1443
1444   return closure;
1445 }
1446
1447 void copy_symbols(struct placement **closure, struct individual *parent, struct individual *child)
1448 {
1449   //printf("%d\n", child->penalty);
1450   //printf("Closure size: %lld\n", GARY_SIZE(closure));
1451   for (uns i=0; i<GARY_SIZE(closure); i++)
1452   {
1453     int ind = closure[i]->request->ind;
1454     child->placements[ind] = parent->placements[ind];
1455     child->placements[ind].processed = 0;
1456   }
1457 }
1458
1459 void move_symbol(struct placement *p)
1460 {
1461   switch (p->request->type)
1462   {
1463     case REQUEST_POINT:
1464       move_symbol_point(p);
1465     case REQUEST_LINE:
1466     case REQUEST_SEGMENT:
1467     case REQUEST_AREA:
1468       printf("Not yet implemented\n");
1469     default:
1470       ASSERT(p->request->type != REQUEST_INVALID);
1471   }
1472 }
1473
1474 void move_symbol_point(struct placement *p)
1475 {
1476   p->x += (double) (move_min + randdouble()) * flip(1, -1);
1477   p->y += (double) (move_min + randdouble()) * flip(1, -1);
1478 }
1479
1480 void hide_segment_labels(struct individual *individual)
1481 {
1482   // BEWARE: This fully depends on current genetic encoding
1483
1484   int used = -1, num = -1;
1485   for (uns i=0; i<GARY_SIZE(individual->placements); i++)
1486   {
1487     switch (individual->placements[i].request->type)
1488     {
1489       case REQUEST_SECTION:
1490         used = individual->placements[i].variant_used;
1491         num = 0;
1492         break;
1493       case REQUEST_SEGMENT:
1494         if (num == used)
1495           individual->placements[i].variant_used = 0;
1496         else
1497           individual->placements[i].variant_used = -1;
1498         num++;
1499         break;
1500       default:
1501         ;
1502     }
1503   }
1504 }
1505
1506 void init_placement(struct placement *p, struct individual *individual, struct request *r)
1507 {
1508   // FIXME
1509   p->request = r;
1510   p->processed = 0;
1511   p->x = p->y = 0; // To prevent valgrind from complaining
1512   p->variant_used = 0;
1513   p->map_links = NULL;
1514   p->individual = individual;
1515   switch (r->type)
1516   {
1517     case REQUEST_POINT: ;
1518       struct request_point *rp = (struct request_point *) r;
1519       p->x = rp->x;
1520       p->y = rp->y;
1521       break;
1522     case REQUEST_LINE: ;
1523       break;
1524     case REQUEST_SECTION: ;
1525       struct request_section *rls = (struct request_section *) r;
1526       p->variant_used = randint(0, rls->num_segments);
1527       break;
1528     case REQUEST_SEGMENT: ;
1529       struct request_segment *rs = (struct request_segment *) r;
1530       p->x = rs->x2;
1531       p->y = rs->y2;
1532       break;
1533     case REQUEST_AREA: ;
1534       struct request_area *ra = (struct request_area *) r;
1535       p->x = ra->cx;
1536       p->y = ra->cy;
1537       p->variant_used = 0;
1538       break;
1539     default:
1540       ASSERT(p->request->type != REQUEST_INVALID);
1541       printf("Valid request: %d\n", p->request->type);
1542   }
1543
1544   gen_coords(p);
1545 //  printf("Inited placement to [%.2f; %.2f]\n", p->x, p->y);
1546 }
1547
1548 void init_individual(struct individual *i)
1549 {
1550 //printf("Initing individual\n");
1551   GARY_INIT(i->placements, num_requests);
1552   GARY_INIT(i->map, 0);
1553   for (uns j=0; j<num_map_parts; j++)
1554   {
1555     struct map_part *part = GARY_PUSH(i->map);
1556     GARY_INIT(part->placement, 0);
1557     struct map_placement *mp = GARY_PUSH(part->placement);
1558     mp->placement = &dummy_placement;
1559     mp->next = mp->prev = NULL;
1560   }
1561   i->penalty = 0; // FIXME
1562 }
1563
1564 struct placement **get_overlapping(struct placement *p UNUSED)
1565 {
1566   struct placement **buffer;
1567   GARY_INIT(buffer, 0);
1568   return buffer;
1569 }
1570
1571 void filter(struct placement **list UNUSED, bool *pred UNUSED)
1572 {
1573   // FIXME
1574 }
1575
1576 int flip(int a, int b)
1577 {
1578   return (random() % 2 ? a : b);
1579 }
1580
1581 double randdouble(void)
1582 {
1583   // FIXME: How the hell shall double in range <0, 1> be generated? O:)
1584   return 0.5;
1585 }
1586
1587 void cleanup(void)
1588 {
1589   hash_cleanup();
1590   GARY_FREE(requests_point);
1591   GARY_FREE(requests_line);
1592   GARY_FREE(requests_area);
1593 }
1594
1595 void copy_individual(struct individual *src, struct individual *dest)
1596 {
1597   src->penalty = dest->penalty;
1598   GARY_INIT(dest->placements, GARY_SIZE(src->placements));
1599   for (uns i=0; i<GARY_SIZE(src->placements); i++)
1600   {
1601     dest->placements[i] = src->placements[i];
1602   }
1603 }