]> mj.ucw.cz Git - leo.git/blob - leo.c
Labelling: Bugfixes in get_closure
[leo.git] / leo.c
1 /*
2  *      Hic Est Leo -- Main Program
3  *
4  *      (c) 2014 Martin Mares <mj@ucw.cz>
5  */
6
7 #include <ucw/lib.h>
8 #include <ucw/conf.h>
9 #include <ucw/opt.h>
10
11 #include <stdio.h>
12
13 #include "leo.h"
14 #include "osm.h"
15 #include "svg.h"
16 #include "style.h"
17 #include "css.h"
18 #include "sym.h"
19 #include "map.h"
20 #include "labeller.h"
21
22 uns debug_dump_source, debug_dump_after_proj, debug_dump_after_scaling;
23 uns debug_dump_multipolygons, debug_dump_css, debug_dump_styling, debug_dump_symbols;
24
25 static struct cf_section debug_cf = {
26   CF_ITEMS {
27     CF_UNS("DumpSource", &debug_dump_source),
28     CF_UNS("DumpAfterProj", &debug_dump_after_proj),
29     CF_UNS("DumpAfterScaling", &debug_dump_after_scaling),
30     CF_UNS("DumpMultipolygons", &debug_dump_multipolygons),
31     CF_UNS("DumpCSS", &debug_dump_css),
32     CF_UNS("DumpStyling", &debug_dump_styling),
33     CF_UNS("DumpSymbols", &debug_dump_symbols),
34     CF_END
35   }
36 };
37
38 static const struct opt_section options = {
39   OPT_ITEMS {
40     OPT_HELP("Hic Est Leo -- Experimental Map Renderer"),
41     OPT_HELP(""),
42     OPT_HELP("Options:"),
43     OPT_HELP_OPTION,
44     OPT_CONF_OPTIONS,
45     OPT_END
46   }
47 };
48
49 // FIXME: Make generic
50 static void draw_scale(struct svg *svg)
51 {
52   double dist = 1000;
53   double width = dist * map_scale;
54   double x = page_width - 10 - width;
55   double y = 50;
56
57   svg_push_element(svg, "g");
58   svg_set_attr(svg, "id", "scale");
59   svg_set_attr_format(svg, "transform", "translate(%s,%s)", svg_format_dimen(svg, x), svg_format_dimen(svg, y));
60
61   for (int outline=1; outline>=0; outline--)
62     {
63       svg_push_element(svg, "g");
64       svg_set_attr(svg, "stroke-linecap", "square");
65       if (outline)
66         {
67           svg_set_attr_dimen(svg, "stroke-width", 1.5);
68           svg_set_attr_color(svg, "stroke", 0xffffff);
69         }
70       else
71         {
72           svg_set_attr_dimen(svg, "stroke-width", 0.5);
73           svg_set_attr_color(svg, "stroke", 0);
74         }
75
76       svg_push_element(svg, "line");
77       svg_set_attr_dimen(svg, "x1", 0);
78       svg_set_attr_dimen(svg, "y1", 0);
79       svg_set_attr_dimen(svg, "x2", width);
80       svg_set_attr_dimen(svg, "y2", 0);
81       svg_pop(svg);
82
83       for (int i=0; i<=10; i++)
84         {
85           double tick;
86           switch (i)
87             {
88             case 0:
89             case 10:
90               tick = 3;
91               break;
92             case 5:
93               tick = 2;
94               break;
95             default:
96               tick = 1;
97             }
98           svg_push_element(svg, "line");
99           svg_set_attr_dimen(svg, "x1", width * i/10);
100           svg_set_attr_dimen(svg, "y1", 0);
101           svg_set_attr_dimen(svg, "x2", width * i/10);
102           svg_set_attr_dimen(svg, "y1", -tick);
103           svg_pop(svg);
104         }
105
106       svg_pop(svg);
107     }
108
109   scale_text(svg, 0, 5, osm_val_encode("0"));
110   scale_text(svg, width, 5, osm_val_encode("1 km"));
111   svg_pop(svg);
112 }
113
114 int main(int argc UNUSED, char **argv)
115 {
116   cf_def_file = "map.cf";
117 // HACKING
118   cf_def_file = argv[1];
119   cf_declare_section("Debug", &debug_cf, 0);
120
121   labeller_conf();
122
123   opt_parse(&options, argv+2);
124 // TILL HERE
125
126   osm_init();
127   styles_init();
128   map_load_styles();
129   map_load_sources();
130   map_set_scale();
131
132   struct svg *svg = svg_open(map_svg_output);
133   if (!map_rotate)
134     {
135       svg_set_attr_dimen(svg, "width", page_width);
136       svg_set_attr_dimen(svg, "height", page_height);
137     }
138   else
139     {
140       svg_set_attr_dimen(svg, "width", page_height);
141       svg_set_attr_dimen(svg, "height", page_width);
142     }
143
144   sym_init();
145   labeller_init();
146
147   map_apply_styles(svg);
148
149   if (map_clip)
150     {
151       svg_push_element(svg, "defs");
152       svg_push_element(svg, "clipPath");
153       svg_set_attr(svg, "id", "boundary");
154       svg_push_path(svg);
155       svg_path_move_to(svg, page_offset_x, page_offset_y);
156       svg_path_line_to_rel(svg, page_map_width, 0);
157       svg_path_line_to_rel(svg, 0, page_map_height);
158       svg_path_line_to_rel(svg, -page_map_width, 0);
159       svg_path_close(svg);
160       svg_path_end(svg);
161       svg_pop(svg);
162       svg_pop(svg);
163       svg_pop(svg);
164
165       svg_push_element(svg, "g");
166       svg_set_attr_format(svg, "clip-path", "url(#boundary)");
167       if (map_rotate)
168         svg_set_attr_format(svg, "transform", "translate(%.6g,0) rotate(90)", page_height * svg->scale);
169     }
170
171   // FIXME: Replace by generic logo drawing facility
172 #if 0
173   struct svg_icon *logo = svg_icon_load(svg, "../logo/kocka-s-okrajem.svg");
174 #endif
175
176   labeller_label();
177   sym_draw_all(svg);
178
179   // Draw logo
180 #if 0
181   double logo_width = 36.12;
182   double logo_height = 36.12 / logo->width * logo->height;
183   struct svg_icon_request sir = {
184     .icon = logo,
185     .x = page_width - 12 - logo_width / 2,
186     .y = 10 + logo_height / 2,
187     .width = logo_width,
188     .height = logo_height,
189   };
190   svg_icon_put(svg, &sir);
191 #endif
192
193   draw_scale(svg);
194
195   if (map_clip)
196     svg_pop(svg);
197
198   if (map_draw_border)
199     {
200       svg_push_element(svg, "rect");
201       svg_set_attr_dimen(svg, "x", page_offset_x);
202       svg_set_attr_dimen(svg, "y", page_offset_y);
203       svg_set_attr_dimen(svg, "width", page_map_width);
204       svg_set_attr_dimen(svg, "height", page_map_height);
205       svg_set_attr(svg, "fill", "none");
206       svg_set_attr(svg, "stroke", "blue");
207       svg_set_attr_dimen(svg, "stroke-width", 0.2);
208       svg_pop(svg);
209     }
210
211   svg_close(svg);
212
213   msg(L_INFO, "Finished");
214   return 0;
215 }