-
Notifications
You must be signed in to change notification settings - Fork 7
/
BBBikeVia.pm
468 lines (419 loc) · 12.6 KB
/
BBBikeVia.pm
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
# -*- perl -*-
#
# $Id: BBBikeVia.pm,v 1.20 2008/08/29 20:16:08 eserte Exp $
# Author: Slaven Rezic
#
# Copyright (C) 2002 Slaven Rezic. All rights reserved.
# This package is free software; you can redistribute it and/or
# modify it under the same terms as Perl itself.
#
# Mail: [email protected]
# WWW: http://bbbike.de
#
package BBBikeVia;
use strict;
use vars qw($VERSION $move_index $add_point);
$VERSION = sprintf("%d.%02d", q$Revision: 1.20 $ =~ /(\d+)\.(\d+)/);
package main;
use BBBikeGlobalVars;
#XXX
# use vars qw(%cursor %cursor_mask $map_mode $c %do_flag %flag_photo
# @search_route_points %set_route_point
# $map_mode_deactivate $net @realcoords
# $advanced);
use subs qw(M SRP_TYPE SRP_COORD);
## XXX Dumps core on 5.10.0:
#use subs qw(POINT_MANUELL POINT_SEARCH);
BBBikeVia::load_cursors(); # XXX move somewhere...
sub BBBikeVia::menu_entries {
my $menu = shift;
$menu->checkbutton(-label => M"Startflagge",
-variable => \$do_flag{'start'},
-command => sub {
set_flag('start');
},
);
$menu->checkbutton(-label => M"Vias einblenden",
-variable => \$do_flag{'via'},
-command => \&BBBikeVia::set_via_flags
);
$menu->checkbutton(-label => M"Zielflagge",
-variable => \$do_flag{'ziel'},
-command => sub {
set_flag("ziel");
},
);
$menu->radiobutton(-label => M"Start/Vias/Ziel verschieben",
-variable => \$map_mode,
-value => "MM_VIA_MOVE",
-command => sub {
set_map_mode();
BBBikeVia::move_via();
},
);
$menu->radiobutton(-label => M"Start verschieben",
-variable => \$map_mode,
-value => "MM_START_MOVE",
-command => sub {
set_map_mode();
BBBikeVia::move_via();
},
);
$menu->radiobutton(-label => M"Ziel verschieben",
-variable => \$map_mode,
-value => "MM_GOAL_MOVE",
-command => sub {
set_map_mode();
BBBikeVia::move_via();
},
);
$menu->radiobutton(-label => M"neue Vias setzen",
-variable => \$map_mode,
-value => "MM_VIA_ADD",
-command => sub {
set_map_mode();
BBBikeVia::add_via();
},
);
if ($advanced) {
$menu->radiobutton(-label => M"neue Vias setzen und verschieben",
-variable => \$map_mode,
-value => "MM_VIA_ADD_THEN_MOVE",
-command => sub {
set_map_mode();
BBBikeVia::add_via();
},
);
}
$menu->radiobutton(-label => M"Vias löschen",
-variable => \$map_mode,
-value => "MM_VIA_DEL",
-command => sub {
set_map_mode();
BBBikeVia::delete_via();
},
);
}
# __END__ here for "use load"
sub BBBikeVia::load_cursors {
foreach my $def (qw(via_add_nb1 via_add_nb2 via_add via_del via_move via_move_2)) {
load_cursor($def);
}
}
sub BBBikeVia::set_via_flags { # according to $do_flag{via} value
if ($do_flag{'via'}) {
BBBikeVia::show_via_flags();
} else {
BBBikeVia::delete_via_flags();
}
}
sub BBBikeVia::show_via_flags {
$c->delete("viaflag");
for my $i (1 .. $#search_route_points-1) {
my $p1 = $search_route_points[$i];
if ($p1->[SRP_TYPE] eq POINT_MANUELL() ||
$p1->[SRP_TYPE] eq POINT_SEARCH()
) {
my($x,$y) = transpose(split(/,/, $p1->[SRP_COORD]));
$c->createImage($x, $y,
-anchor => 'c',
-image => $flag_photo{"via"},
-tags => ['route', "", "viaflag", "via-$i"],
);
}
}
}
sub BBBikeVia::delete_via_flags {
$c->delete("viaflag");
}
######################################################################
# move
sub BBBikeVia::move_via {
if ($map_mode eq "MM_GOAL_MOVE") {
return BBBikeVia::move_via_2($c, "ziel", -1);
} elsif ($map_mode eq 'MM_START_MOVE') {
return BBBikeVia::move_via_2($c, "start", 0);
}
set_cursor("via_move");
$set_route_point{$map_mode} = sub {
# do nothing
};
execute_and_set_map_mode_deactivate
(sub {
for (qw(start via ziel)) {
$c->bind($_."flag", BBBikeVia::_button1(), "");
}
}
);
for (qw(start via ziel)) {
$c->bind($_."flag", BBBikeVia::_button1() => [\&BBBikeVia::move_via_2, $_]);
}
status_message(M"Zu verschiebendes Via bzw. Start oder Ziel wählen", "info");
}
sub BBBikeVia::move_via_2 {
my($c, $type, $move_index) = @_;
if (defined $move_index) {
$BBBikeVia::move_index = $move_index;
} else {
$BBBikeVia::move_index = BBBikeVia::_find_point_from_tags();
return if !defined $BBBikeVia::move_index;
}
set_cursor("via_move_2");
$set_route_point{$map_mode} = \&BBBikeVia::move_via_action;
$alt_set_route_point{$map_mode} = \&BBBikeVia::move_via_alt_action;
for (qw(start via ziel)) {
$c->bind($_."flag", BBBikeVia::_button1() => "");
}
my $point_text = !defined $type ? M("Punkt zum Verschieben wählen") : Mfmt("Punkt wählen, wohin %s verschoben werden soll", ($type eq 'start' ? M("der Start") : M("das " . ucfirst($type))));
status_message($point_text, "info");
}
sub BBBikeVia::move_via_action {
my $coord = set_coords($c);
if (!defined $coord) {
status_message(M("Punkt muss auf einer Straße liegen"), "info");
# do not change status
} else {
if (!$search_route_points[$BBBikeVia::move_index]) {
status_message(M"Kein Punkt zu verschieben", "die");
}
$search_route_points[$BBBikeVia::move_index]->[SRP_COORD] = $coord;
re_search();
BBBikeVia::move_via_cont();
}
}
# XXX still flaky!
sub BBBikeVia::move_via_alt_action {
my $c = shift;
my $e = $c->XEvent;
my($xx, $yy) = ($c->canvasx($e->x), $c->canvasy($e->y));
my($ax, $ay) = map { int } anti_transpose($xx, $yy);
my $coord = "$ax,$ay";
$search_route_points[$BBBikeVia::move_index]->[SRP_COORD] = $coord;
$search_route_points[$BBBikeVia::move_index]->[SRP_TYPE] = POINT_MANUELL();
re_search();
BBBikeVia::move_via_cont();
}
sub BBBikeVia::move_via_cont {
if ($map_mode =~ /ADD_THEN_MOVE$/) {
BBBikeVia::add_via();
} else {
BBBikeVia::move_via();
}
}
######################################################################
# add
sub BBBikeVia::add_via {
set_cursor("via_add");
$set_route_point{$map_mode} = \&BBBikeVia::add_via_2;
execute_and_set_map_mode_deactivate
(sub {
for (qw(start via ziel)) {
$c->bind($_."flag", BBBikeVia::_button1(), "");
}
BBBikeVia::unmark_all();
}
);
status_message(M"Neuen Via-Punkt wählen", "info");
}
sub BBBikeVia::add_via_2 {
my $coord = set_coords($c);
if (!defined $coord) {
status_message(M("Punkt muss auf einer Straße liegen"), "info");
# do not change status
return;
}
delete $set_route_point{$map_mode};
$BBBikeVia::add_point = $coord;
if (@search_route_points == 2) {
splice @search_route_points,
1,
0,
[$BBBikeVia::add_point, POINT_SEARCH()];
re_search();
return BBBikeVia::add_via_cont(1);
}
my($found_tag, @tags) = find_below($c, 'route');
if ($found_tag) {
# Click on route
if ($tags[1] =~ /route-(\d+)/) {
my $route_nr = $1;
my %srp_to_index;
for my $inx (0 .. $#search_route_points) {
$srp_to_index{$search_route_points[$inx]->[0]} = $inx;
}
for my $i ($route_nr .. $#realcoords) { # XXX off-by-one?
my $xy = join(",", @{$realcoords[$i]});
if (exists $srp_to_index{$xy}) {
splice @search_route_points,
$srp_to_index{$xy},
0,
[$BBBikeVia::add_point, POINT_SEARCH()];
re_search();
return BBBikeVia::add_via_cont($srp_to_index{$xy});
}
}
warn "Can't find route-$route_nr in realcoords\n";
} else {
warn "Can't find route number in @tags\n";
}
}
BBBikeVia::mark_new_via_point();
BBBikeVia::add_via_2_2();
}
sub BBBikeVia::add_via_2_2 {
set_cursor("via_add_nb1");
for (qw(start via ziel)) {
$c->bind($_."flag", BBBikeVia::_button1() => \&BBBikeVia::add_via_3);
}
BBBikeVia::unmark_neighbours();
status_message(M"Ersten Nachbarn (Start, Via oder Ziel) wählen", "info");
}
sub BBBikeVia::add_via_3 {
$BBBikeVia::add_nb1_index = BBBikeVia::_find_point_from_tags();
return if !defined $BBBikeVia::add_nb1_index;
set_cursor("via_add_nb2");
for (qw(start via ziel)) {
$c->bind($_."flag", BBBikeVia::_button1() => \&BBBikeVia::add_via_action);
}
my $common = M"Zweiten Nachbarn (Start, Via oder Ziel) wählen";
if ($BBBikeVia::add_nb1_index == 0) {
status_message($common . " " . M"bzw. noch einmal Start für neuen Startpunkt",
"info");
} elsif ($BBBikeVia::add_nb1_index == $#search_route_points) {
status_message($common . " " . M"bzw. noch einmal Ziel für neuen Zielpunkt",
"info");
} else {
status_message($common, "info");
}
BBBikeVia::mark_neighbours();
}
sub BBBikeVia::mark_neighbours {
BBBikeVia::unmark_neighbours();
my $mark_point = sub {
my($index) = @_;
my($x, $y) = transpose(split /,/, $search_route_points[$index]->[0]);
$c->createLine($x,$y,$x,$y,
-capstyle => $capstyle_round,
-width => 10,
-fill => "red",
-tags => ["neighbourmarker", BBBikeVia::_get_tag_name_from_index($index)],
);
};
if ($BBBikeVia::add_nb1_index > 0) {
$mark_point->($BBBikeVia::add_nb1_index-1);
} else {
$mark_point->(0);
}
if ($BBBikeVia::add_nb1_index < $#search_route_points) {
$mark_point->($BBBikeVia::add_nb1_index+1);
} else {
$mark_point->($#search_route_points);
}
}
sub BBBikeVia::mark_new_via_point {
my($x, $y) = transpose(split /,/, $BBBikeVia::add_point);
$c->createLine($x,$y,$x,$y,
-capstyle => $capstyle_round,
-width => 10,
-fill => "green",
-tags => "vianewpoint",
);
}
sub BBBikeVia::unmark_neighbours {
$c->delete("neighbourmarker");
}
sub BBBikeVia::unmark_all {
BBBikeVia::unmark_neighbours();
$c->delete("vianewpoint");
}
sub BBBikeVia::add_via_action {
$BBBikeVia::add_nb2_index = BBBikeVia::_find_point_from_tags();
return if !defined $BBBikeVia::add_nb2_index;
my $move_index;
if (abs($BBBikeVia::add_nb1_index - $BBBikeVia::add_nb2_index) == 1) {
$move_index = max($BBBikeVia::add_nb1_index, $BBBikeVia::add_nb2_index);
splice @search_route_points,
$move_index,
0,
[$BBBikeVia::add_point, POINT_SEARCH()];
} elsif ($BBBikeVia::add_nb1_index == 0 && $BBBikeVia::add_nb2_index == 0) {
unshift @search_route_points, [$BBBikeVia::add_point, POINT_MANUELL()];
$search_route_points[1]->[SRP_TYPE] = POINT_SEARCH();
$move_index = 1;
} elsif ($BBBikeVia::add_nb1_index == $#search_route_points && $BBBikeVia::add_nb2_index == $#search_route_points) {
push @search_route_points, [$BBBikeVia::add_point, POINT_SEARCH()];
$move_index = $#search_route_points;
} else {
status_message(M"Keine Nachbarn, bitte noch einmal versuchen", "error");
return BBBikeVia::add_via_2_2();
}
re_search();
BBBikeVia::add_via_cont($move_index);
}
sub BBBikeVia::add_via_cont {
my $move_index = shift;
if ($map_mode =~ /THEN_MOVE$/) {
BBBikeVia::move_via_2($main::c, '', $move_index);
} else {
BBBikeVia::add_via();
}
}
######################################################################
# delete
sub BBBikeVia::delete_via {
set_cursor("via_del");
$set_route_point{$map_mode} = sub {
# do nothing
};
execute_and_set_map_mode_deactivate
(sub {
$c->bind("viaflag", BBBikeVia::_button1(), "");
}
);
$c->bind("viaflag", BBBikeVia::_button1() => \&BBBikeVia::delete_action);
status_message(M"Zu löschenden Via-Punkt auswählen", "info");
}
sub BBBikeVia::delete_action {
my $del_point = BBBikeVia::_find_point_from_tags();
return if !defined $del_point;
splice @search_route_points, $del_point, 1;
re_search();
BBBikeVia::delete_via();
}
######################################################################
sub BBBikeVia::_find_point_from_tags {
my($found_item, @tags) = find_below_rx($c, ['^via-\d+', '^(?:start|ziel)flag$']);
if (defined $found_item) {
for my $tag (@tags) {
if ($tag =~ /^via-(\d+)/) {
return $1;
} elsif ($tag eq 'startflag') {
return 0;
} elsif ($tag eq 'zielflag') {
return $#search_route_points;
}
}
}
warn "Can't find point in @tags";
return undef;
}
sub BBBikeVia::_get_tag_name_from_index {
my($index) = @_;
if ($index == 0) {
"startflag";
} elsif ($index == $#search_route_points) {
"zielflag";
} else {
("viaflag", "via-$index");
}
}
sub BBBikeVia::_button1 {
if ($main::MM_DRAG_IS_OBSOLETE) {
'<ButtonRelease-1>';
} else {
'<ButtonPress-1>';
}
}
$main::MM_DRAG_IS_OBSOLETE = $main::MM_DRAG_IS_OBSOLETE if 0; # cease -w
1;
__END__