-
Notifications
You must be signed in to change notification settings - Fork 127
/
garmin_fs.h
207 lines (173 loc) · 5.42 KB
/
garmin_fs.h
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
/*
Implementation of special data used by Garmin products.
Copyright (C) 2006 Olaf Klein, [email protected]
Copyright (C) 2006-2014 Robert Lipe, [email protected]
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.
*/
#ifndef GARMIN_FS_H
#define GARMIN_FS_H
#include <cstdint> // for int32_t, int16_t, uint16_t
#include <optional> // for optional
#include <QList> // for QList
#include <QString> // for QString
#include "defs.h"
#include "formspec.h" // for FormatSpecificData, kFsGmsd, FormatSpecificDataList
/* this order is used by most devices */
/* enum garmin_display_t {
garmin_display_symbol_and_name = 0,
garmin_display_symbol_only = 1,
garmin_display_symbol_and_description = 2
};
*/
struct garmin_ilink_t {
double lat;
double lon;
double alt;
};
struct garmin_fs_flags_t {
public:
unsigned int icon:1{0};
unsigned int wpt_class:1{0};
unsigned int display:1{0};
unsigned int category:1{0};
unsigned int city:1{0};
unsigned int state:1{0};
unsigned int facility:1{0};
unsigned int cc:1{0};
unsigned int cross_road:1{0};
unsigned int addr:1{0};
unsigned int country:1{0};
unsigned int phone_nr:1{0};
unsigned int phone_nr2:1{0};
unsigned int fax_nr:1{0};
unsigned int postal_code:1{0};
unsigned int email:1{0};
unsigned int duration:1{0};
#ifdef GMSD_EXPERIMENTAL
unsigned int subclass:1{0};
#endif
};
class garmin_fs_t : public FormatSpecificData {
public:
/* Data Members */
garmin_fs_flags_t flags;
int protocol{0}; /* ... used by device (-1 is MapSource) */
int32_t icon{0};
int wpt_class{0};
int32_t display{0};
int16_t category{0};
QString city; /* city name */
QString facility; /* facility name */
QString state; /* state */
QString cc; /* country code */
QString cross_road; /* Intersection road label */
QString addr; /* address + number */
QString country; /* country */
QString phone_nr; /* phone number */
QString phone_nr2; /* phone number (2) */
QString fax_nr; /* fax number */
QString postal_code; /* postal code */
QString email; /* email address */
unsigned int duration{0}; /* expected travel time to next route point, in seconds, only when auto-routed */
QList<garmin_ilink_t> ilinks;
#ifdef GMSD_EXPERIMENTAL
char subclass[22]{};
#endif
/* Special Member Functions */
garmin_fs_t() : FormatSpecificData(kFsGmsd) {}
explicit garmin_fs_t(int p) : garmin_fs_t() {protocol = p;}
/* Member Functions */
garmin_fs_t* clone() const override
{
return new garmin_fs_t(*this);
}
static garmin_fs_t* find(const Waypoint* wpt) {
return reinterpret_cast<garmin_fs_t*>(wpt->fs.FsChainFind(kFsGmsd));
}
static std::optional<uint16_t> convert_category(const QString& category_name);
static QStringList print_categories(uint16_t categories);
#define GEN_GMSD_METHODS(field) \
static bool has_##field(const garmin_fs_t* gmsd) \
{ \
return gmsd && gmsd->flags.field; \
} \
static decltype(field) get_##field(const garmin_fs_t* gmsd, decltype(field) p) \
{ \
return (gmsd && gmsd->flags.field)? gmsd->field : p; \
} \
static void set_##field(garmin_fs_t* gmsd, decltype(field) p) \
{ \
if (gmsd) { \
gmsd->field = p; \
gmsd->flags.field = 1; \
} \
} \
static void unset_##field(garmin_fs_t* gmsd) \
{ \
if (gmsd) { \
gmsd->flags.field = 0; \
} \
}
GEN_GMSD_METHODS(icon)
GEN_GMSD_METHODS(wpt_class)
GEN_GMSD_METHODS(display)
GEN_GMSD_METHODS(category)
GEN_GMSD_METHODS(duration)
#undef GEN_GMSD_METHODS
#define GEN_GMSD_STR_METHODS(field) \
static bool has_##field(const garmin_fs_t* gmsd) \
{ \
return gmsd && gmsd->flags.field; \
} \
static QString get_##field(const garmin_fs_t* gmsd, const QString& p) \
{ \
return (gmsd && gmsd->flags.field)? gmsd->field : p; \
} \
static void set_##field(garmin_fs_t* gmsd, const char* p) \
{ \
if (gmsd && p && *p) { \
gmsd->field = p; \
gmsd->flags.field = 1; \
} \
} \
static void set_##field(garmin_fs_t* gmsd, const QString& p) \
{ \
if (gmsd && !p.isEmpty()) { \
gmsd->field = p; \
gmsd->flags.field = 1; \
} \
} \
static void unset_##field(garmin_fs_t* gmsd) \
{ \
if (gmsd) { \
gmsd->flags.field = 0; \
} \
}
GEN_GMSD_STR_METHODS(city)
GEN_GMSD_STR_METHODS(facility)
GEN_GMSD_STR_METHODS(state)
GEN_GMSD_STR_METHODS(cc)
GEN_GMSD_STR_METHODS(cross_road)
GEN_GMSD_STR_METHODS(addr)
GEN_GMSD_STR_METHODS(country)
GEN_GMSD_STR_METHODS(phone_nr)
GEN_GMSD_STR_METHODS(phone_nr2)
GEN_GMSD_STR_METHODS(fax_nr)
GEN_GMSD_STR_METHODS(postal_code)
GEN_GMSD_STR_METHODS(email)
#undef GEN_GMSD_STR_METHODS
private:
/* Constants */
static constexpr char kGmsdSectionCategories[] = "Garmin Categories";
};
#endif