Subversion Repositories NaviCtrl

Rev

Rev 86 | Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
85 killagreg 1
/*#######################################################################################*/
2
/* !!! THIS IS NOT FREE SOFTWARE !!!                                                     */
3
/*#######################################################################################*/
4
// ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
5
// + Copyright (c) 2008 Ingo Busker, Holger Buss
6
// + Nur für den privaten Gebrauch
7
// + FOR NON COMMERCIAL USE ONLY
8
// + www.MikroKopter.com
9
// ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
10
// + Es gilt für das gesamte Projekt (Hardware, Software, Binärfiles, Sourcecode und Dokumentation),
11
// + dass eine Nutzung (auch auszugsweise) nur für den privaten (nicht-kommerziellen) Gebrauch zulässig ist.
12
// + Sollten direkte oder indirekte kommerzielle Absichten verfolgt werden, ist mit uns (info@mikrokopter.de) Kontakt
13
// + bzgl. der Nutzungsbedingungen aufzunehmen.
14
// + Eine kommerzielle Nutzung ist z.B.Verkauf von MikroKoptern, Bestückung und Verkauf von Platinen oder Bausätzen,
15
// + Verkauf von Luftbildaufnahmen, usw.
16
// ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
17
// + Werden Teile des Quellcodes (mit oder ohne Modifikation) weiterverwendet oder veröffentlicht,
18
// + unterliegen sie auch diesen Nutzungsbedingungen und diese Nutzungsbedingungen incl. Copyright müssen dann beiliegen
19
// ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
20
// + Sollte die Software (auch auszugesweise) oder sonstige Informationen des MikroKopter-Projekts
21
// + auf anderen Webseiten oder sonstigen Medien veröffentlicht werden, muss unsere Webseite "http://www.mikrokopter.de"
22
// + eindeutig als Ursprung verlinkt werden
23
// ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
24
// + Keine Gewähr auf Fehlerfreiheit, Vollständigkeit oder Funktion
25
// + Benutzung auf eigene Gefahr
26
// + Wir übernehmen keinerlei Haftung für direkte oder indirekte Personen- oder Sachschäden
27
// ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
28
// + Die PORTIERUNG der Software (oder Teile davon) auf andere Systeme (ausser der Hardware von www.mikrokopter.de) ist nur
29
// + mit unserer Zustimmung zulässig
30
// ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
31
// + Die Funktion printf_P() unterliegt ihrer eigenen Lizenz und ist hiervon nicht betroffen
32
// ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
33
// + Redistributions of source code (with or without modifications) must retain the above copyright notice,
34
// + this list of conditions and the following disclaimer.
35
// +   * Neither the name of the copyright holders nor the names of contributors may be used to endorse or promote products derived
36
// +     from this software without specific prior written permission.
37
// +   * The use of this project (hardware, software, binary files, sources and documentation) is only permitted
38
// +     for non-commercial use (directly or indirectly)
39
// +     Commercial use (for excample: selling of MikroKopters, selling of PCBs, assembly, ...) is only permitted
40
// +     with our written permission
41
// +   * If sources or documentations are redistributet on other webpages, out webpage (http://www.MikroKopter.de) must be
42
// +     clearly linked as origin
43
// +   * PORTING this software (or part of it) to systems (other than hardware from www.mikrokopter.de) is NOT allowed
44
//
45
// +  THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
46
// +  AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
47
// +  IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
48
// +  ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
49
// +  LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
50
// +  CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
51
// +  SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
52
// +  INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
53
// +  CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
54
// +  ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
55
// +  POSSIBILITY OF SUCH DAMAGE.
56
// ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
57
#include <stdlib.h>
58
#include <stdio.h>
59
#include "91x_lib.h"
60
#include "gpx.h"
61
#include "gpx_header.h"
62
#include "timer.h"
63
 
64
//________________________________________________________________________________________________________________________________________
65
// Function:    GPX_DocumentInit(GPX_Document_t *)
66
//
67
// Description: This function initializes the gpx-document for further use.
68
//
69
//
70
// Returnvalue: '1' if document was initialized
71
//________________________________________________________________________________________________________________________________________
72
 
73
u8 GPX_DocumentInit(GPX_Document_t *doc)
74
{
75
        if(doc->state != GPX_DOC_CLOSED) GPX_DocumentClose(doc);                                                // close file if it was opened before
76
        doc->state       = GPX_DOC_CLOSED;                                                                                                      // init state of the gpx-document
77
        doc->file        = NULL;
78
        return(1);
79
}
80
 
81
//________________________________________________________________________________________________________________________________________
82
// Function:    GPX_Document_Open(s8 *name, GPX_Document_t *doc);
83
//
84
// Description: This function opens a new gpx-document with the specified name and creates the document header within the file.
85
//
86
//
87
// Returnvalue: '1' if the gpx-file could be created.
88
//________________________________________________________________________________________________________________________________________
89
 
90
u8 GPX_DocumentOpen(s8 *name, GPX_Document_t *doc)
91
{
92
 
93
        u8 retvalue = 0;
94
 
95
        if(doc == NULL) return(0);
96
        GPX_DocumentInit(doc);                                                                                                          // intialize the document with resetvalues
97
        doc->file = fopen_(name,'a');                                                                                           // open a new file with the specified filename on the memorycard.
98
 
99
        if(doc->file != NULL)                                                                                                           // could the file be opened?
100
        {
101
                retvalue = 1;                                                                                                                   // the document could be created on the drive.
102
                doc->state = GPX_DOC_OPENED;                                                                                            // change document state to opened. At next a placemark has to be opened.
103
                fwrite_((void*)GPX_DOCUMENT_HEADER, sizeof(GPX_DOCUMENT_HEADER)-1,1,doc->file);// write the gpx-header to the document.
104
        }
105
 
106
        return(retvalue);
107
}
108
 
109
//________________________________________________________________________________________________________________________________________
110
// Function:    DocumentClose(GPX_Document_t *doc);
111
//
112
// Description: This function closes the document specified by doc.
113
//
114
//
115
// Returnvalue: '1' if the gpx-file could be closed.
116
//________________________________________________________________________________________________________________________________________
117
 
118
u8 GPX_DocumentClose(GPX_Document_t *doc)
119
{
120
 
121
        u8 retvalue = 1;
122
 
123
        if(doc == NULL) return(0);
124
 
125
        while(doc->state != GPX_DOC_CLOSED)                                                             // close linestring, placemark and document before closing the file on the memorycard
126
        {                                  
127
                switch(doc->state)
128
                {
129
                        case GPX_DOC_TRACKSEGMENT_OPENED:
130
                                GPX_TrackSegmentEnd(doc);                                               // write terminating tag to end tracksegment.
131
                                break;
132
 
133
                        case GPX_DOC_TRACK_OPENED:                                                              // write terminating tag to close track.
134
                                GPX_TrackEnd(doc);
135
                                break;
136
 
137
                        case GPX_DOC_OPENED:                                                                    // close the file on the memorycard
138
                                if(doc->file != NULL)
139
                                {
140
                                        fwrite_((void*)GPX_DOCUMENT_FOOTER, sizeof(GPX_DOCUMENT_FOOTER)-1,1,doc->file); // write the gpx-footer to the document.
141
                                        fclose_(doc->file);
142
                                        retvalue = 1;
143
                                }
144
                                doc->state = GPX_DOC_CLOSED;
145
                                break;
146
 
147
                        default:
148
                                doc->state = GPX_DOC_CLOSED;
149
                                break;
150
                }
151
        }
152
        return(retvalue);
153
}
154
 
155
//________________________________________________________________________________________________________________________________________
156
// Function:    u8 GPX_TrackBegin(GPX_Document_t);
157
//
158
// Description: This function adds a track to the document.
159
//
160
//
161
// Returnvalue: '1' if the track could be opened
162
//________________________________________________________________________________________________________________________________________
163
 
164
u8 GPX_TrackBegin(GPX_Document_t *doc)
165
{
166
 
167
        u8 retvalue = 0;
168
        if(doc->state == GPX_DOC_OPENED)
169
        {
170
                if(doc->file != NULL)
171
                {
172
                        doc->state = GPX_DOC_TRACK_OPENED;
173
                        retvalue = 1;
174
                        fwrite_((void*)GPX_TRACK_HEADER, sizeof(GPX_TRACK_HEADER)-1,1,doc->file);
175
                }
176
        }
177
        return(retvalue);
178
}
179
 
180
//________________________________________________________________________________________________________________________________________
181
// Function:    u8 GPX_TrackEnd(KML_Document_t *doc)
182
//
183
// Description: This function ends the track opened before.
184
//
185
//
186
// Returnvalue: 1' if the track could be closed
187
//________________________________________________________________________________________________________________________________________
188
 
189
u8 GPX_TrackEnd(GPX_Document_t *doc)
190
{
191
 
192
        u8 retvalue = 0;
193
 
194
        if(doc->state == GPX_DOC_TRACK_OPENED)
195
        {
196
                if(doc->file != NULL)
197
                {
198
                        doc->state = GPX_DOC_OPENED;
199
                        fwrite_((void*)GPX_TRACK_FOOTER, sizeof(GPX_TRACK_FOOTER)-1,1,doc->file);
200
                        retvalue = 1;
201
                }
202
        }
203
 
204
        return(retvalue);
205
}
206
 
207
//________________________________________________________________________________________________________________________________________
208
// Function:    u8 GPX_TrackSegmentBegin(GPX_Document_t *doc);
209
//
210
// Description: This function starts a track segment.
211
//
212
//
213
// Returnvalue: '1' if the track segement could be started
214
//________________________________________________________________________________________________________________________________________
215
 
216
u8 GPX_TrackSegmentBegin(GPX_Document_t *doc)
217
{
218
 
219
        u8 retvalue = 0;
220
 
221
        if(doc->state == GPX_DOC_TRACK_OPENED)
222
        {
223
                if(doc->file != NULL)
224
                {
225
                        doc->state = GPX_DOC_TRACKSEGMENT_OPENED;
226
                        fwrite_((void*)GPX_TRACKSEGMENT_HEADER, sizeof(GPX_TRACKSEGMENT_HEADER)-1,1,doc->file);
227
                        retvalue = 1;
228
                }
229
        }
230
        return(retvalue);
231
}
232
 
233
//________________________________________________________________________________________________________________________________________
234
// Function:    u8 GPX_TrackSegmentEnd(GPX_Document_t *doc);
235
//
236
// Description: This function ends the tracksegment opened before.
237
//
238
//
239
// Returnvalue: '1' if the track segment could be terminated
240
//________________________________________________________________________________________________________________________________________
241
 
242
u8 GPX_TrackSegmentEnd(GPX_Document_t *doc)
243
{
244
 
245
        u8 retvalue = 0;
246
        if(doc->state == GPX_DOC_TRACKSEGMENT_OPENED)
247
        {
248
                if(doc->file != NULL)
249
                {
250
                        doc->state = GPX_DOC_TRACK_OPENED;
251
                        fwrite_((void*)GPX_TRACKSEGMENT_FOOTER, sizeof(GPX_TRACKSEGMENT_FOOTER)-1,1,doc->file);
252
                        retvalue = 1;
253
                }
254
        }
255
        return(retvalue);
256
}
257
 
258
//________________________________________________________________________________________________________________________________________
259
// Function:    u8 GPX_TrackSegementAddPoint(GPS_Pos_t * pGPS_Position ,GPX_Document_t *doc);
260
//
261
// Description: This function adds a pointof a track segement to the specified document.
262
//
263
//
264
// Returnvalue: '1' if a point was added
265
//________________________________________________________________________________________________________________________________________
266
 
267
u8 GPX_TrackSegementAddPoint(GPX_Document_t *doc)
268
{
269
 
270
        u8 retvalue = 0;
271
        s8 string[50];
272
        s32 rel_altitude = 0;
273
 
274
        if(doc == NULL) return(0);
275
 
276
        if((GPSData.Position.Status != INVALID) && (GPS_HomePosition.Status != INVALID))
277
        {
278
                if(doc->state == GPX_DOC_TRACKSEGMENT_OPENED)
279
                {
280
                        if(doc->file != NULL)
281
                        {
282
                                s32 i1, i2;
283
                                u8 sign;
284
                                // write <trkpt> tag
285
                                if(GPSData.Position.Latitude < 0) sign = '-';
286
                                else sign = '+';
287
                                i1 = abs(GPSData.Position.Latitude)/10000000L;
288
                                i2 = abs(GPSData.Position.Latitude)%10000000L;
289
                                sprintf(string, "<trkpt lat=\"%c%ld.%07ld\" ",sign, i1, i2);
290
                                fputs_(string, doc->file);
291
                                if(GPSData.Position.Longitude < 0) sign = '-';
292
                                else sign = '+';
293
                                i1 = abs(GPSData.Position.Longitude)/10000000L;
294
                                i2 = abs(GPSData.Position.Longitude)%10000000L;
295
                                sprintf(string, "lon=\"%c%ld.%07ld\">\r\n",sign, i1, i2);
296
                                fputs_(string, doc->file);
297
                                // write <ele> taga
298
                                rel_altitude = GPSData.Position.Altitude - GPS_HomePosition.Altitude;
299
                                if(rel_altitude < 0) rel_altitude = 0; // avoid negative altitudes in log
300
                                i1 = rel_altitude/1000L;
301
                                i2 = rel_altitude%1000L;
302
                                sprintf(string,"<ele>%ld.%03ld</ele>\r\n",i1, i2);
303
                                fputs_(string, doc->file);
304
                                // write <time> tag     only at a resolution of one second
305
                                sprintf(string, "<time>%04d-%02d-%02dT%02d:%02d:%02dZ</time>\r\n",SystemTime.Year, SystemTime.Month, SystemTime.Day, SystemTime.Hour, SystemTime.Min, SystemTime.Sec);
306
                                fputs_(string, doc->file);
307
 
308
                                // todo: add  <extensions> tag with additional data to be logged 
309
 
310
                                sprintf(string, "</trkpt>\r\n");
311
                                fputs_(string, doc->file);
312
                                retvalue = 1;
313
                        }
314
                }
315
        }
316
        return(retvalue);
317
}
318
 
319
//________________________________________________________________________________________________________________________________________
320
// Function:    u8 KML_LoggGPSCoordinates(gps_data_t *, KML_Document_t *)
321
//
322
// Description: This function opens and adds gpscoordinates to an GPX-Document. The document will be opened, if not already done
323
//
324
//
325
// Returnvalue: '1' if an gps coordinate was logged
326
//________________________________________________________________________________________________________________________________________
327
 
328
u8 GPX_LoggGPSCoordinates(GPX_Document_t *doc)
329
{
330
        u8 retval = 0;
331
        while(doc->state != GPX_DOC_TRACKSEGMENT_OPENED)                                // automatic create document with default filename on the card.
332
        {
333
                switch(doc->state)
334
                {
335
                        case GPX_DOC_CLOSED:                                                                    // document hasn't been opened yet therefore it will be initialized automatically
336
                                retval = GPX_DocumentOpen("default.gpx",doc);   // open the gpx-document with a standardname.
337
                        break;
338
 
339
                        case GPX_DOC_OPENED:                                                                    // if a document has been opened before but no track exists:
340
                                retval = GPX_TrackBegin(doc);
341
                        break;
342
 
343
                        case GPX_DOC_TRACK_OPENED:                                                              // add tracksegement to the track
344
                                retval = GPX_TrackSegmentBegin(doc);
345
                        break;
346
 
347
                        default:
348
                                retval = 0;
349
                        break;
350
 
351
                }
352
                if(retval != 1) return(retval); // stop on error
353
        }
354
 
355
        if(doc->state == GPX_DOC_TRACKSEGMENT_OPENED)                                           // if the document was opened add coordinates to the document.
356
        {
357
                retval = GPX_TrackSegementAddPoint(doc);                                                // add a track segment point
358
        }
359
        return(retval);
360
}
361