forked from GPSBabel/gpsbabel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
garmin_xt.cc
437 lines (378 loc) · 12.3 KB
/
garmin_xt.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
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
/*
Copyright (C) 2010 Eriks Zelenka, isindir@users.sourceforge.net
Copyright (C) 2009 jekaeff,
GMXT2GPX ( http://www.geocaching.hu/users.geo?id=9508 ; http://sites.google.com/site/jekaeff/eng-1 )
The original code written in Pascal and does not include specific License, however on the project
webpage it is said to be OpenSource/Libre software
Copyright (C) 2005 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., 59 Temple Place - Suite 330, Boston, MA 02111 USA
*/
#include "defs.h"
#include <stdlib.h>
#define MYNAME "Garmin_XT"
#define GARMIN_XT_ELE 31500/65536
#define DATABLOCKSIZE 1
#define STRK_BLOCK_SIZE 97
static int colors[] = {
0x000000, // Black
0x00008b, // DarkRed
0x006400, // DarkGreen
0x00d7ff, // Gold
0x8b0000, // DarkBlue
0x8b008b, // DarkMagenta
0x8b8b00, // DarkCyan
0xd3d3d3, // LightGray
0xa9a9a9, // DarkGray
0x0000ff, // Red
0x00ff00, // Green
0x00ffff, // Yellow
0xff0000, // Blue
0xff00ff, // Magenta
0xffff00, // Cyan
0xffffff // White
};
static gbfile* fin;
static route_head* track;
static char* opt_xt_ftype = NULL;
static char* opt_trk_header = NULL;
static
arglist_t format_garmin_xt_args[] = {
{"ftype", &opt_xt_ftype, "Garmin Mobile XT ([ATRK]/STRK)", "ATRK", ARGTYPE_STRING | ARGTYPE_REQUIRED, ARG_NOMINMAX},
// TODO: SHIFT - can't test behaviour, do not have appropriate files
//{"trk_header_opt", &opt_trk_header, "Track name processing option ([0]-nrm/1-ign/2-sht)", "0", ARGTYPE_INT, ARG_NOMINMAX},
{"trk_header", &opt_trk_header, "Track name processing option ([0]-nrm/1-ign)", "0", ARGTYPE_INT, ARG_NOMINMAX},
ARG_TERMINATOR
};
/*******************************************************************************
* %%% global callbacks called by gpsbabel main process %%% *
*******************************************************************************/
/*******************************************************************************
* %%% Reader callbacks %%% *
*******************************************************************************/
static void
format_garmin_xt_rd_init(const char* fname)
{
fin = gbfopen(fname, "rb", MYNAME);
}
static void
format_garmin_xt_rd_deinit(void)
{
gbfclose(fin);
}
static uint16_t
format_garmin_xt_rd_st_attrs(char* p_trk_name, uint8_t* p_track_color)
{
int method = 0;
uint16_t trackbytes = 0, TrackPoints = 0;
uint8_t spam = 0;
int32_t TrackMaxLat = 0, TrackMaxLon = 0, TrackMinLat = 0, TrackMinLon = 0;
char trk_name[30]="";
// TODO: SHIFT - can't test behaviour, do not have appropriate files
//int ii;
// get the option for the processing the track name
if (opt_trk_header) {
method = atoi(opt_trk_header);
// if method is out of range set to default
if ((method < 0) || (method > 1)) {
method = 0;
}
}
// set to RED if not specified
*p_track_color=9;
trackbytes = gbfgetuint16(fin);
TrackPoints = gbfgetuint16(fin);
(void) TrackPoints;
switch (method) {
case 1:
break; // IGNORE
/* TODO: SHIFT - can't test behaviour, do not have appropriate files
case 2: { // SHIFTED method
spam = gbfgetc(fin);
gbfread(&trk_name, 30, DATABLOCKSIZE, fin);
gbfseek(fin, -1, SEEK_CUR);
for (ii = 0; ii<29; ii++)
{
trk_name[ii] = (trk_name[ii] >> 2) + ( trk_name[ii+1] % 4 ) * 64;
}
}
break;
*/
default: { // NORMAL
spam = gbfgetc(fin);
gbfread(&trk_name, 30, DATABLOCKSIZE, fin);
gbfseek(fin, -1, SEEK_CUR);
}
break;
}
spam = gbfgetc(fin);
gbfread(&TrackMaxLat, 3, DATABLOCKSIZE, fin);
gbfread(&spam, 1, DATABLOCKSIZE, fin);
gbfread(&TrackMaxLon, 3, DATABLOCKSIZE, fin);
gbfread(&spam, 1, DATABLOCKSIZE, fin);
gbfread(&TrackMinLat, 3, DATABLOCKSIZE, fin);
gbfread(&spam, 1, DATABLOCKSIZE, fin);
gbfread(&TrackMinLon, 3, DATABLOCKSIZE, fin);
gbfread(p_track_color, 1, DATABLOCKSIZE, fin);
gbfread(&spam, 1, DATABLOCKSIZE, fin);
strcpy(p_trk_name, trk_name);
return trackbytes;
}
/*
* Function to decrypt track block in saved read from saved tracks file
*/
static void
format_garmin_xt_decrypt_trk_blk(int Count, uint8_t TrackBlock[])
{
uint8_t i,j = 12;
while (j<(Count-1)) {
for (i = j; i < Count; i++) {
TrackBlock[i] = TrackBlock[i] >> 1;
if (i<(Count)) {
TrackBlock[i] = TrackBlock[i] + (TrackBlock[i+1] % 2) * 128;
}
}
j+=12;
}
}
/*
* Function to Decompose track block of STRK_BLOCK_SIZE bytes
*/
static void
format_garmin_xt_decomp_trk_blk(uint8_t ii, uint8_t TrackBlock[], double* Ele, double* Lat, double* Lon, uint32_t* Time)
{
uint32_t LatLW = 0, LonLW = 0, TimeLW = 0;
double LatF = 0, LonF = 0;
uint16_t PrevEleW;
//printf("%d %d %d %d %d %d\n", TrackBlock[0], TrackBlock[1], TrackBlock[2], TrackBlock[3], TrackBlock[4], TrackBlock[5]);
PrevEleW = TrackBlock[(ii - 1) * 12 + 1 ];
PrevEleW = PrevEleW << 8;
PrevEleW = PrevEleW + TrackBlock[(ii - 1) * 12 ];
*Ele = (double)PrevEleW * GARMIN_XT_ELE - 1500;
LatLW = TrackBlock[(ii - 1) * 12 + 4];
LatLW = LatLW << 8;
LatLW = LatLW + TrackBlock[(ii - 1) * 12 + 3];
LatLW = LatLW << 8;
LatLW = LatLW + TrackBlock[(ii - 1) * 12 + 2];
LatF = (double)LatLW;
if (LatF > 8388608) {
LatF = LatF - 16777216;
}
*Lat = LatF * 360 / 16777216;
LonLW = TrackBlock[(ii-1)*12+7];
LonLW = LonLW << 8;
LonLW = LonLW+TrackBlock[(ii-1)*12+6];
LonLW = LonLW << 8;
LonLW = LonLW+TrackBlock[(ii-1)*12+5];
LonF = (double)LonLW;
if (LonF>8388608) {
LonF = LonF - 16777216;
}
*Lon = LonF * 360 / 16777216;
TimeLW = TrackBlock[(ii - 1) * 12 + 11];
TimeLW = TimeLW << 8;
TimeLW = TimeLW+TrackBlock[(ii - 1) * 12 + 10];
TimeLW = TimeLW << 8;
TimeLW = TimeLW+TrackBlock[(ii - 1) * 12 + 9];
TimeLW = TimeLW << 8;
TimeLW = TimeLW + TrackBlock[(ii - 1) * 12 + 8];
*Time = TimeLW + 631065600;
}
/*
* Decompose Last Waypoint Eleveation
*/
static void
format_garmin_xt_decomp_last_ele(uint8_t ii, double* PrevEle, uint8_t TrackBlock[])
{
uint16_t PrevEleW;
PrevEleW = TrackBlock[ii - 1];
PrevEleW = PrevEleW << 8;
PrevEleW = PrevEleW + TrackBlock[ii - 2];
*PrevEle = (double)PrevEleW * GARMIN_XT_ELE - 1500;
}
/*
* Main Function to process Saved tracks file
*/
static void
format_garmin_xt_proc_strk(void)
{
int Count = 0; // Used to obtain number of read bytes
int NumberOfTracks = 0, TracksCompleted = 0; // Number of tracks in the file and number of processed tracks
uint16_t trackbytes = 0; // Bytes in track
uint8_t TrackBlock[STRK_BLOCK_SIZE + 1]; // File Block
uint8_t ii; // temp variable
double Lat = 0, Lon = 0; // wpt data
double PrevLat = 0, PrevLon = 0, PrevEle = 0; // wpt data
uint32_t Time = 0; // wpt data
int FirstCoo;
uint8_t trk_color = 0xff;
// Skip 12 bytes from the BOF
gbfseek(fin, 12, SEEK_SET);
// read # of tracks
NumberOfTracks = gbfgetuint16(fin);
// Skip 2 bytes
gbfseek(fin, 2, SEEK_CUR);
// Process all tracks one by one
while ((TracksCompleted < NumberOfTracks) && (!gbfeof(fin))) {
route_head* tmp_track;
Waypoint* wpt;
char* trk_name;
trk_name = (char*) xmalloc(30);
// Generate Track Header
trackbytes = format_garmin_xt_rd_st_attrs(trk_name, &trk_color) - 50;
tmp_track = route_head_alloc();
// update track color
tmp_track->line_color.bbggrr = colors[trk_color];
tmp_track->line_color.opacity = 255;
// update track name
tmp_track->rte_name = trk_name;
xfree(trk_name);
track_add_head(tmp_track);
// This is the 1st coordinate of the track
FirstCoo = TRUE;
while (trackbytes>0) {
if (trackbytes>=STRK_BLOCK_SIZE) {
Count = gbfread(&TrackBlock, DATABLOCKSIZE, STRK_BLOCK_SIZE, fin);
trackbytes -= STRK_BLOCK_SIZE;
} else {
Count = gbfread(&TrackBlock, DATABLOCKSIZE, trackbytes, fin);
trackbytes = 0;
}
// decrypt loaded track block (Count - size of loaded TrackBlock)
format_garmin_xt_decrypt_trk_blk(Count, TrackBlock);
// process each track point in the loaded TrackBlock
for (ii=1; ii <= ((Count-1) / 12); ii++) {
// decompose loaded track block part (track point)
format_garmin_xt_decomp_trk_blk(ii, TrackBlock, &PrevEle, &Lat, &Lon, &Time);
// Add point to the track if not the first point
if (!FirstCoo) {
//create new waypoint
wpt = new Waypoint;
//populate wpt;
wpt->latitude = PrevLat; /* Degrees */
wpt->longitude = PrevLon; /* Degrees */
wpt->altitude = PrevEle; /* Meters. */
wpt->SetCreationTime(Time); /* Unix Time adjusted to Garmin time */
// add way point to the track
track_add_wpt(tmp_track, wpt);
} else {
FirstCoo = FALSE;
}
PrevLat = Lat;
PrevLon = Lon;
}
}
// decompose elevation for the last point
if (Count > 12) {
Count--;
}
format_garmin_xt_decomp_last_ele(Count, &PrevEle, TrackBlock);
//create new waypoint
wpt = new Waypoint;
//populate wpt;
wpt->latitude = PrevLat; /* Degrees */
wpt->longitude = PrevLon; /* Degrees */
wpt->altitude = PrevEle; /* Meters. */
wpt->SetCreationTime(Time); /* Unix Time adjusted to Garmin time */
// add way point to the track
track_add_wpt(tmp_track, wpt);
// update completed tracks counter
TracksCompleted++;
}
}
static void
format_garmin_xt_proc_atrk(void)
{
uint16_t block=0, uu=0;
uint32_t Lat=0, Lon=0;
uint32_t Tim=0;
double LatF = 0, LonF = 0, AltF = 0;
Waypoint* wpt;
int method = 0;
unsigned char buf[3];
int32_t num_trackpoints;
// get the option for the processing the track name
if (opt_trk_header) {
method = atoi(opt_trk_header);
}
if (! track) {
track = route_head_alloc();
// header option was not set to ignore
if (method !=1) {
track->rte_name = "ATRK XT";
}
track_add_head(track);
}
// We think the word at offset 0xc is the trackpoint count.
gbfseek(fin, 12, SEEK_SET);
num_trackpoints = gbfgetuint32(fin);
while (num_trackpoints--) {
block = gbfgetuint16(fin);
if (block != 0x0c) {
break;
}
gbfread(&buf, 3, DATABLOCKSIZE, fin); //1. Lat
Lat = buf[0] | (buf[1] << 8) | (buf[2] << 16);
gbfread(&buf, 3, DATABLOCKSIZE, fin); //2. Lon
Lon = buf[0] | (buf[1] << 8) | (buf[2] << 16);
uu = gbfgetuint16(fin);
Tim = gbfgetuint32(fin);
Tim += 631065600; // adjustment to UnixTime
LatF = Lat;
if (LatF>8388608) {
LatF -= 16777216;
};
LonF = Lon;
if (LonF>8388608) {
LonF -= 16777216;
};
AltF = (double)uu * GARMIN_XT_ELE - 1500;
//create new waypoint
wpt = new Waypoint;
//populate wpt;
wpt->latitude = LatF*180/16777216; /* Degrees */
wpt->longitude = LonF*360/16777216; /* Degrees */
wpt->altitude = AltF; /* Meters. */
wpt->SetCreationTime(Tim); /* Unix Time adjusted to Garmin time */
track_add_wpt(track, wpt);
}
}
static void
format_garmin_xt_read(void)
{
// Saved Tracks file
if (strcmp(opt_xt_ftype, "STRK") == 0) {
format_garmin_xt_proc_strk();
} else { // Active Track file
format_garmin_xt_proc_atrk();
}
}
/**************************************************************************/
ff_vecs_t format_garmin_xt_vecs = {
ff_type_file,
{
ff_cap_none /* waypoints */,
ff_cap_read /* tracks */,
ff_cap_none /* routes */
},
format_garmin_xt_rd_init,
NULL,
format_garmin_xt_rd_deinit,
NULL,
format_garmin_xt_read,
NULL,
NULL,
format_garmin_xt_args,
CET_CHARSET_ASCII, 0 /* ascii is the expected character set */
/* not fixed, can be changed through command line parameter */
};
/**************************************************************************/