-
Notifications
You must be signed in to change notification settings - Fork 127
/
bend.cc
155 lines (121 loc) · 4.54 KB
/
bend.cc
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
/*
Add route points before and after a bend.
Copyright (C) 2011 Fernando Arbeiza, fernando.arbeiza@gmail.com
Copyright (C) 2011 Robert Lipe, robertlipe+source@gpsbabel.org
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
#include <cmath> // macos wants abs from here!
#include <cstdlib> // for abs
#include <utility> // for as_const
#include <QString> // for QString
#include <QtGlobal> // for QForeachContainer, qMakeForeachContainer, foreach
#include "defs.h"
#include "bend.h"
#include "formspec.h" // for FormatSpecificDataList
#include "grtcirc.h" // for RAD, heading_true_degrees, gcdist, linepart, radtometers, DEG
#if FILTERS_ENABLED
void BendFilter::init()
{
maxDist = 0.0;
if (distopt) {
maxDist = distopt.get_result();
}
minAngle = 0.0;
if (minangleopt) {
minAngle = minangleopt.get_result();
}
route_backup(&routes_orig);
route_flush_all_routes();
}
Waypoint* BendFilter::create_wpt_dest(const Waypoint* wpt_orig, const Waypoint* wpt_orig_adj) const
{
double distance = radtometers(gcdist(wpt_orig->position(),
wpt_orig_adj->position()));
if (distance <= maxDist) {
return nullptr;
}
double frac = maxDist / distance;
auto* wpt_dest = new Waypoint(*wpt_orig);
wpt_dest->SetPosition(linepart(wpt_orig->position(), wpt_orig_adj->position(), frac));
return wpt_dest;
}
int BendFilter::is_small_angle(const Waypoint* wpt_orig,
const Waypoint* wpt_orig_prev,
const Waypoint* wpt_orig_next) const
{
double heading_prev = heading_true_degrees(wpt_orig->position(),
wpt_orig_prev->position());
double heading_next = heading_true_degrees(wpt_orig->position(),
wpt_orig_next->position());
double heading_diff = heading_next - heading_prev;
return ((std::abs(heading_diff - 0.0) < minAngle)
|| (std::abs(heading_diff - 180.0) < minAngle)
|| (std::abs(heading_diff - 360.0) < minAngle));
}
void BendFilter::process_route(const route_head* route_orig, route_head* route_dest)
{
const Waypoint* wpt_orig_prev = nullptr;
const Waypoint* wpt_orig = nullptr;
foreach (const Waypoint* wpt_orig_next, route_orig->waypoint_list) {
if (wpt_orig_prev == nullptr) {
if (wpt_orig != nullptr) {
auto* waypoint_dest = new Waypoint(*wpt_orig);
route_add_wpt(route_dest, waypoint_dest);
}
} else {
if (is_small_angle(wpt_orig, wpt_orig_prev, wpt_orig_next)) {
auto* waypoint_dest = new Waypoint(*wpt_orig);
route_add_wpt(route_dest, waypoint_dest);
} else {
Waypoint* wpt_dest_prev = create_wpt_dest(wpt_orig, wpt_orig_prev);
if (wpt_dest_prev != nullptr) {
route_add_wpt(route_dest, wpt_dest_prev);
}
Waypoint* wpt_dest_next = create_wpt_dest(wpt_orig, wpt_orig_next);
if (wpt_dest_next != nullptr) {
route_add_wpt(route_dest, wpt_dest_next);
wpt_orig = wpt_dest_next;
}
}
}
wpt_orig_prev = wpt_orig;
wpt_orig = wpt_orig_next;
}
if (wpt_orig != nullptr) {
auto* waypoint_dest = new Waypoint(*wpt_orig);
route_add_wpt(route_dest, waypoint_dest);
}
}
void BendFilter::process_route_orig(const route_head* route_orig)
{
auto* route_dest = new route_head;
route_dest->rte_name = route_orig->rte_name;
route_dest->rte_desc = route_orig->rte_desc;
route_dest->fs = route_orig->fs.FsChainCopy();
route_dest->rte_num = route_orig->rte_num;
route_add_head(route_dest);
process_route(route_orig, route_dest);
}
void BendFilter::process()
{
for (const auto* route_orig : std::as_const(*routes_orig)) {
process_route_orig(route_orig);
}
}
void BendFilter::deinit()
{
routes_orig->flush();
delete routes_orig;
routes_orig = nullptr;
}
#endif // FILTERS_ENABLED