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