]> git.mxchange.org Git - flightgear.git/blob - src/Instrumentation/KLN89/kln89_page_fpl.cxx
KLN89: Fix both incorrect behaviour and a segfault when deleting a partially-entered...
[flightgear.git] / src / Instrumentation / KLN89 / kln89_page_fpl.cxx
1 // kln89_page_*.[ch]xx - this file is one of the "pages" that
2 //                       are used in the KLN89 GPS unit simulation. 
3 //
4 // Written by David Luff, started 2005.
5 //
6 // Copyright (C) 2005 - David C Luff - daveluff AT ntlworld.com
7 //
8 // This program is free software; you can redistribute it and/or
9 // modify it under the terms of the GNU General Public License as
10 // published by the Free Software Foundation; either version 2 of the
11 // License, or (at your option) any later version.
12 //
13 // This program is distributed in the hope that it will be useful, but
14 // WITHOUT ANY WARRANTY; without even the implied warranty of
15 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
16 // General Public License for more details.
17 //
18 // You should have received a copy of the GNU General Public License
19 // along with this program; if not, write to the Free Software
20 // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
21 //
22 // $Id$
23
24 #ifdef HAVE_CONFIG_H
25 #  include "config.h"
26 #endif
27
28 #include "kln89_page_fpl.hxx"
29
30 #include <algorithm>
31 #include <iostream>
32
33 using namespace std;
34
35 KLN89FplPage::KLN89FplPage(KLN89* parent)
36 : KLN89Page(parent) {
37     _nSubPages = 26;
38     _subPage = 0;
39     _name = "FPL";
40     _fpMode = 0;
41     _actFpMode = 0;
42     _wLinePos = 0;
43     _bEntWp = false;
44     _bEntExp = false;
45     _entWp = NULL;
46     _fplPos = 0;
47     _resetFplPos0 = true;
48     _delFP = false;
49     _delWp = false;
50     _delAppr = false;
51     _changeAppr = false;
52     _fp0SelWpId = "";
53 }
54
55 KLN89FplPage::~KLN89FplPage() {
56 }
57
58 void KLN89FplPage::Update(double dt) {
59     Calc();
60     
61     // NOTE - we need to draw the active leg arrow outside of this block to avoid the _delFP check.
62     // TODO - we really ought to merge the page 0 and other pages drawing code with a couple of lines of extra logic.
63     if(_subPage == 0 && !_delFP) {  // Note that in the _delFP case, the active flightplan gets a header, and hence the same geometry as the other fps, so we draw it there.
64         // active FlightPlan
65         // NOTE THAT FOR THE ACTIVE FLIGHT PLAN, TOP POSITION IS STILL 4 in the underline position scheme, to make 
66         // copy and paste easier!!!!
67
68         // ---------------------------------- Copy the active FlightPlan and insert approach header and fence if required ---------------
69         // For synatical convienience
70         //vector<GPSWaypoint*> waylist = _kln89->_flightPlans[_subPage]->waypoints;
71         // Copy every waypoint for now.
72         // This is inefficient, but allows us to insert dummy waypoints to represent the header and fence 
73         // in our *local copy* of the flightplan, if an approach is loaded.  There must be a better way to do this!!!!
74         vector<GPSWaypoint> waylist;
75         for(unsigned int i=0; i<_kln89->_flightPlans[_subPage]->waypoints.size(); ++i) {
76             waylist.push_back(*_kln89->_flightPlans[_subPage]->waypoints[i]);
77         }
78         _hdrPos = -1;
79         _fencePos = -1;
80         if(_kln89->_approachLoaded) {
81             GPSWaypoint wp;
82             wp.id = "HHHH";
83             wp.type = GPS_WP_VIRT;
84             wp.appType = GPS_HDR;
85             for(unsigned int i=0; i<waylist.size(); ++i) {
86                 // Insert the hdr immediately before the IAF
87                 if(waylist[i].appType == GPS_IAF) {
88                     waylist.insert(waylist.begin()+i, wp);
89                     // Need to insert empty string into the params to keep them in sync
90                     // Guard against empty params list.
91                     // This shouldn't happen, but currently it can until ETE and UTC params are implemeted
92                     // (and better the ugly params list ripped out and replaced with something more maintainable!).
93                     if(!_params.empty()) {
94                         _params.insert(_params.begin()+i-1, "");
95                     }
96                     _hdrPos = i;
97                     break;
98                 }
99             }
100             wp.id = "FFFF";
101             wp.type = GPS_WP_VIRT;
102             wp.appType = GPS_FENCE;
103             for(unsigned int i=0; i<waylist.size(); ++i) {
104                 // Insert the fence between the MAF and the MAP
105                 if(waylist[i].appType == GPS_MAHP) {
106                     waylist.insert(waylist.begin()+i, wp);
107                     // Need to insert empty string into the params to keep them in sync
108                     // Guard against empty params list. See comments a few lines above.
109                     if(!_params.empty()) {
110                         _params.insert(_params.begin()+i-1, "");
111                     }
112                     _fencePos = i;
113                     break;
114                 }
115             }
116         }
117         /*
118         // Now make up a vector of waypoint numbers, since they aren't aligned with list position anymore
119         int num = 0;
120         vector<int> numlist;
121         numlist.clear();
122         for(unsigned int i=0; i<waylist.size(); ++i) {
123             if(waylist[i].appType != GPS_HDR && waylist[i].appType != GPS_FENCE) {
124                 numlist.push_back(num);
125                 num++;
126             } else {
127                 numlist.push_back(-1);
128             }
129         }
130         */
131         int hfcount = 0;
132         for(unsigned int i=0; i<waylist.size(); ++i) {
133             //cout << i + 1 - hfcount << ":  ID= " << waylist[i].id;
134             if(waylist[i].appType == GPS_HDR) {
135                 hfcount++;
136                 //cout << " HDR!";
137             }
138             if(waylist[i].appType == GPS_FENCE) {
139                 hfcount++;
140                 //cout << " FENCE!";
141             }
142             //cout << '\n';
143         }
144         //----------------------------------------- end active FP copy ------------------------------------------------
145         
146         // Recalculate which waypoint is displayed at the top of the list if required (generally if this page has lost focus).
147         int idx = _kln89->GetActiveWaypointIndex();
148         if(_resetFplPos0) {
149             if(waylist.size() <= 1) {
150                 _fplPos = 0;
151             } else if(waylist.size() <= 4) {
152                 _fplPos = 1;
153             } else {
154                 // Make the active waypoint the second WP displayed
155                 _fplPos = idx;
156                 if(_fplPos != 0) {
157                     _fplPos--;
158                 }
159             }
160             //cout << "HeaderPos = " << _hdrPos << ", fencePos = " << _fencePos << ", _fplPos = " << _fplPos << ", active waypoint index = " << _parent->GetActiveWaypointIndex() << '\n';
161             if(_hdrPos >= 0 && idx >= _hdrPos) {
162                 _fplPos++;
163                 if(_fencePos >= 0 && (idx + 1) >= _fencePos) {
164                     _fplPos++;
165                 }
166             }
167             _resetFplPos0 = false;
168         }
169         
170         // Increment the active waypoint position if required due hdr and fence here not above so it gets called every frame
171         if(_hdrPos >= 0 && idx >= _hdrPos) {
172             idx++;
173             if(_fencePos >= 0 && idx >= _fencePos) {
174                 idx++;
175             }
176         }
177         
178         // Draw the leg arrow etc
179         int diff = idx - (int)_fplPos;
180         int drawPos = -1;
181         if(idx < 0) {
182             // No active waypoint
183         } else if(diff < 0) {
184             // Off screen to the top
185         } else if(diff > 2) {
186             // TODO !
187         } else {
188             drawPos = diff;
189         }
190         // Only the head is blinked during waypoint alerting
191         if(!(_kln89->_waypointAlert && _kln89->_blink)) {
192             _kln89->DrawSpecialChar(4, 2, 0, 3-drawPos);
193         }
194         // If the active waypoint is immediately after an approach header then we need to do an extra-long tail leg
195         if(_hdrPos >= 0 && idx == _hdrPos + 1) {
196             if(drawPos > 0 && !_kln89->_dto) _kln89->DrawLongLegTail(3-drawPos);
197         } else {
198             if(drawPos > 0 && !_kln89->_dto) _kln89->DrawLegTail(3-drawPos);
199         }
200         
201         //cout << "Top pos is " << _fplPos0 << ' ';
202         
203         if(_kln89->_mode == KLN89_MODE_CRSR) {
204             if(_uLinePos == 3) {
205                 _kln89->Underline(2, 13, 3, 3);
206             } else if(_uLinePos >= 4) {
207                 if(_bEntWp) {
208                     if(_wLinePos == 0) {
209                         _kln89->Underline(2, 5, 3 - (_uLinePos - 4), 4);
210                     } else if(_wLinePos == 4) {
211                         _kln89->Underline(2, 4, 3 - (_uLinePos - 4), 4);
212                     } else {
213                         _kln89->Underline(2, 4, 3 - (_uLinePos - 4), _wLinePos);
214                         _kln89->Underline(2, 5 + _wLinePos, 3 - (_uLinePos - 4), 4 - _wLinePos);
215                     }
216                     if(!_kln89->_blink) {
217                         //_kln89->DrawText(_entWp->id, 2, 4, 2 - (_uLinePos - 4), false, _wLinePos);
218                         _kln89->DrawEnt();
219                     }
220                 } else {
221                     _kln89->Underline(2, 4, 3 - (_uLinePos - 4), 5);
222                 }
223             }
224         }
225         // ----------------------------------
226             
227         // Sanity check the top position - remember that we can have an extra blank one at the bottom even if CRSR is off if crsr is switched on then off
228         if((int)_fplPos > ((int)waylist.size()) - 3) _fplPos = (((int)waylist.size()) - 3 < 0 ? 0 : waylist.size() - 3);
229         unsigned int last_pos;
230         if(waylist.empty()) {
231             last_pos = 0;
232         } else {
233             last_pos = ((int)_fplPos == ((int)waylist.size()) - 3 ? waylist.size() : waylist.size() - 1);
234         }
235         //cout << "Initialising last_pos, last_pos = " << last_pos << '\n';
236         if(waylist.size() < 4) last_pos = waylist.size();
237         
238         // Don't draw the cyclic field header if the top waypoint is the approach header
239         // Not sure if this also applies to the fence - don't think so but TODO - check!
240         if(!waylist.empty() && _fplPos < waylist.size()) {
241             if(waylist[_fplPos].appType != GPS_HDR) {
242                 _kln89->DrawChar('>', 2, 12, 3);
243                 if(!(_kln89->_mode == KLN89_MODE_CRSR && _uLinePos == 3 && _kln89->_blink)) {
244                     DrawFpMode(3);
245                 }
246             }
247         }
248         
249         //
250         // NOTE: this is the drawing routine for the ACTIVE flightplan, due to the number
251         // of differences there is a seperate routine for the stored flightplans.
252         //
253         // There are 4 rows to display flightplan data on the KLN89.  Draw each row.
254         for(unsigned int i=0; i<4; ++i) {
255             // Sanity check - we should no longer tickle this.
256             if((_fplPos+i) > waylist.size()) {
257                 break;
258             }
259
260             // Draw the number and (optional) colon for each row.
261             bool drawNum = true;
262             int n = (i < 3 ? _fplPos + i + 1 : last_pos + 1);
263             if(_kln89->_approachLoaded) {
264                 if(n > _hdrPos) --n;
265                 if(n > _fencePos) --n;
266             }
267             string s = GPSitoa(n);
268             if(_fplPos+i < waylist.size()) {
269                 // Don't draw the waypoint number for the header or fence
270                 if((waylist[_fplPos+i].appType == GPS_HDR || waylist[_fplPos+i].appType == GPS_FENCE) 
271                     && i != 3) {    // By definition, the header and fence lines can't be displayed on the last line hence the unconditional !i==3 is safe.
272                     drawNum = false;
273                 } else {
274                     // Don't draw the colon for waypoints that are part of the published approach
275                     if(waylist[_fplPos+i].appType == GPS_APP_NONE) {
276                         s += ':';
277                     }
278                 }
279             } else {
280                 // We must be drawing the next entry field at the end of the list - this has a colon
281                 s += ':';
282             }
283             if(drawNum) {
284                 if(!(_delWp && _uLinePos == i+4)) _kln89->DrawText(s, 2, 4 - (s[s.size()-1] == ':' ? s.size() : s.size()+1), 3 - i);
285             }
286             // Done drawing numbers and colons.
287                 
288             bool drawID = true;
289             if(_delWp && _uLinePos == i+4) {
290                 if(!_kln89->_blink) {
291                     _kln89->DrawText("Del", 2, 0, 3-i);
292                     _kln89->DrawChar('?', 2, 10, 3-i);
293                     _kln89->Underline(2, 0, 3-i, 11);
294                     _kln89->DrawEnt();
295                 }
296             } else if(_kln89->_mode == KLN89_MODE_CRSR && _bEntWp && _uLinePos == i+4) {
297                 if(!_kln89->_blink) {
298                     if(_wLinePos >= _entWpStr.size()) {
299                         _kln89->DrawText(_entWpStr, 2, 4, 3-i);
300                         _kln89->DrawChar(' ', 2, 4+_wLinePos, 3-i, false, true);
301                     } else {
302                         _kln89->DrawText(_entWpStr.substr(0, _wLinePos), 2, 4, 3-i);
303                         _kln89->DrawChar(_entWpStr[_wLinePos], 2, 4+_wLinePos, 3-i, false, true);
304                         _kln89->DrawText(_entWpStr.substr(_wLinePos+1, _entWpStr.size()-_wLinePos-1), 2, 5+_wLinePos, 3-i);
305                     }
306                 }
307                 drawID = false;
308             }
309             if(drawID) {
310                 if(i == 3 || _fplPos + i == waylist.size()) {
311                     //cout << "_uLinePos = " << _uLinePos << ", i = " << i << ", waylist.size() = " << waylist.size() << endl;
312                     if(!(_kln89->_mode == KLN89_MODE_CRSR && _uLinePos == (i + 4) && _kln89->_blink)) {
313                         // Draw the underline symbol at the end of the flightplan
314                         _kln89->DrawText(last_pos < waylist.size() ? waylist[last_pos].GetAprId() : "_____", 2, 4, 3-i);
315                     }
316                     //cout << "last_pos = " << last_pos << endl;
317                     if(last_pos > 0 && last_pos < waylist.size() && i > 0) {
318                         // Draw the param
319                         if(_actFpMode == 0) {
320                             string s = _params[last_pos - 1];
321                             _kln89->DrawText(s, 2, 16-s.size(), 3-i);
322                         } else if(_actFpMode == 3) {
323                             string s = _params[last_pos - 1];
324                             _kln89->DrawText(s, 2, 15-s.size(), 3-i);
325                             _kln89->DrawSpecialChar(0, 2, 15, 3-i);
326                         }
327                     }
328                     break;
329                 } else {
330                     if(!(_kln89->_mode == KLN89_MODE_CRSR && _uLinePos == (i + 4) && _kln89->_blink)) {
331                         if(waylist[_fplPos+i].appType == GPS_HDR) {
332                             if(_delAppr) {
333                                 _kln89->DrawText("DELETE APPR?", 2, 1, 3-i);
334                             } else if(_changeAppr) {
335                                 _kln89->DrawText("CHANGE APPR?", 2, 1, 3-i);
336                             } else {
337                                 _kln89->DrawText(_kln89->_approachAbbrev, 2, 1, 3-i);
338                                 _kln89->DrawText(_kln89->_approachRwyStr, 2, 7, 3-i);
339                                 _kln89->DrawText(_kln89->_approachID, 2, 12, 3-i);
340                             }
341                         } else if(waylist[_fplPos+i].appType == GPS_FENCE) {
342                             _kln89->DrawText("*NO WPT SEQ", 2, 0, 3-i);
343                         } else {
344                             _kln89->DrawText(waylist[_fplPos+i].GetAprId(), 2, 4, 3-i);
345                         }
346                     }
347                 }
348                 if(i > 0) {
349                     // Draw the param
350                     //cout << "i > 0 param draw...\n";
351                     if(_actFpMode == 0) {
352                         string s = _params[_fplPos + i - 1];
353                         _kln89->DrawText(s, 2, 16-s.size(), 3-i);
354                     } else if(_actFpMode == 3) {
355                         string s = _params[_fplPos + i - 1];
356                         _kln89->DrawText(s, 2, 15-s.size(), 3-i);
357                         _kln89->DrawSpecialChar(0, 2, 15, 3-i);
358                     }
359                 }
360             }
361         }
362     } else {  // Not active flightplan
363         //cout << "Top pos is " << _fplPos << ' ';
364         // For synatical convienience
365         //int nWp = (_subPage == 0 && !_delFP ? 4 : 3); // number of waypoints to display
366         vector<GPSWaypoint*> waylist = _kln89->_flightPlans[_subPage]->waypoints;
367         if(waylist.empty()) {
368             if(!(_kln89->_mode == KLN89_MODE_CRSR && _uLinePos == 1 && _kln89->_blink)) {
369                 _kln89->DrawText(_delFP ? "Delete FPL?" : "Copy FPL 0?", 2, 0, 3);
370             }
371         } else {
372             if(!(_kln89->_mode == KLN89_MODE_CRSR && (_uLinePos == 1 || _uLinePos == 2) && _kln89->_blink)) {
373                 _kln89->DrawText(_delFP ? "Delete FPL?" : "Use?", 2, 0, 3);
374             }
375             if(!(_kln89->_mode == KLN89_MODE_CRSR && _uLinePos == 2 && _kln89->_blink)) {
376                 if(!_delFP) _kln89->DrawText("Inverted?", 2, 5, 3);
377             }
378         }
379         
380         // ----------------------------------
381         if(_kln89->_mode == KLN89_MODE_CRSR) {
382             if(_uLinePos == 1) {
383                 if(!_kln89->_blink) {
384                     _kln89->Underline(2, 0, 3, (waylist.empty() || _delFP ? 11 : 4));   // This underline is blinked
385                     _kln89->DrawEnt();
386                 }
387             } else if(_uLinePos == 2) {
388                 // assert(!waylist.empty());
389                 if(!_kln89->_blink) {
390                     _kln89->Underline(2, 0, 3, 14); // This underline is blinked
391                     _kln89->DrawEnt();
392                 }
393             } else if(_uLinePos == 3) {
394                 _kln89->Underline(2, 13, 2, 3);
395             } else if(_uLinePos >= 4) {
396                 if(_bEntWp) {
397                     if(_wLinePos == 0) {
398                         _kln89->Underline(2, 5, 2 - (_uLinePos - 4), 4);
399                     } else if(_wLinePos == 4) {
400                         _kln89->Underline(2, 4, 2 - (_uLinePos - 4), 4);
401                     } else {
402                         _kln89->Underline(2, 4, 2 - (_uLinePos - 4), _wLinePos);
403                         _kln89->Underline(2, 5 + _wLinePos, 2 - (_uLinePos - 4), 4 - _wLinePos);
404                     }
405                     if(!_kln89->_blink) {
406                         //_kln89->DrawText(_entWp->id, 2, 4, 2 - (_uLinePos - 4), false, _wLinePos);
407                         _kln89->DrawEnt();
408                     }
409                 } else {
410                     if(!_delWp) _kln89->Underline(2, 4, 2 - (_uLinePos - 4), 5);
411                 }
412             }
413         }
414         // ----------------------------------
415             
416         _kln89->DrawChar('>', 2, 12, 2);
417         if(!(_kln89->_mode == KLN89_MODE_CRSR && _uLinePos == 3 && _kln89->_blink)) DrawFpMode(2);
418         // Sanity check the top position - remember that we can have an extra blank one at the bottom even if CRSR is off if crsr is switched on then off
419         if((int)_fplPos > ((int)waylist.size()) - 2) _fplPos = (((int)waylist.size()) - 2 < 0 ? 0 : waylist.size() - 2);
420         unsigned int last_pos;
421         if(waylist.empty()) {
422             last_pos = 0;
423         } else {
424             last_pos = ((int)_fplPos == ((int)waylist.size()) - 2 ? waylist.size() : waylist.size() - 1);
425         }
426         if(waylist.size() < 3) last_pos = waylist.size();
427         for(unsigned int i=0; i<3; ++i) {
428             string s = GPSitoa(i < 2 ? _fplPos + i + 1 : last_pos + 1);
429             s += ':';
430             if(!(_delWp && _uLinePos == i+4)) _kln89->DrawText(s, 2, 4 - s.size(), 2 - i);
431             bool drawID = true;
432             if(_delWp && _uLinePos == i+4) {
433                 if(!_kln89->_blink) {
434                     _kln89->DrawText("Del", 2, 0, 2-i);
435                     _kln89->DrawChar('?', 2, 10, 2-i);
436                     _kln89->Underline(2, 0, 2-i, 11);
437                     _kln89->DrawEnt();
438                 }
439             } else if(_kln89->_mode == KLN89_MODE_CRSR && _bEntWp && _uLinePos == i+4) {
440                 if(!_kln89->_blink) {
441                     if(_wLinePos >= _entWpStr.size()) {
442                         _kln89->DrawText(_entWpStr, 2, 4, 2-i);
443                         _kln89->DrawChar(' ', 2, 4+_wLinePos, 2-i, false, true);
444                     } else {
445                         _kln89->DrawText(_entWpStr.substr(0, _wLinePos), 2, 4, 2-i);
446                         _kln89->DrawChar(_entWpStr[_wLinePos], 2, 4+_wLinePos, 2-i, false, true);
447                         _kln89->DrawText(_entWpStr.substr(_wLinePos+1, _entWpStr.size()-_wLinePos-1), 2, 5+_wLinePos, 2-i);
448                     }
449                 }
450                 drawID = false;
451             }
452             if(drawID) {
453                 if(i == 2 || _fplPos + i == waylist.size()) {
454                     if(!(_kln89->_mode == KLN89_MODE_CRSR && _uLinePos == (i + 4) && _kln89->_blink)) {
455                         _kln89->DrawText(last_pos < waylist.size() ? waylist[last_pos]->id : "_____", 2, 4, 2-i);
456                     }
457                     if(last_pos > 0 && last_pos < waylist.size() && i > 0) {
458                         // Draw the param
459                         if(_fpMode == 0) {
460                             string s = _params[last_pos - 1];
461                             _kln89->DrawText(s, 2, 16-s.size(), 2-i);
462                         }
463                     }
464                     break;
465                 } else {
466                     if(!(_kln89->_mode == KLN89_MODE_CRSR && _uLinePos == (i + 4) && _kln89->_blink)) {
467                         _kln89->DrawText(waylist[_fplPos+i]->id, 2, 4, 2-i);
468                     }
469                     if(i > 0) {
470                         // Draw the param
471                         if(_fpMode == 0) {
472                             string s = _params[_fplPos + i - 1];
473                             _kln89->DrawText(s, 2, 16-s.size(), 2-i);
474                         }
475                     }
476                 }
477             }
478         }
479     }
480     
481     KLN89Page::Update(dt);
482 }
483
484 void KLN89FplPage::DrawFpMode(int ypos) {
485     string s = "Dis";
486     if(0 == _subPage) {
487         if(_actFpMode == 1) {
488             s = "ETE";
489         } else if(_actFpMode == 2) {
490             s = "UTC";  // TODO - alter depending on chosen timezone
491         } else if(_actFpMode == 3) {
492             s = (_kln89->_obsMode ? "OBS" : "Dtk");
493         }
494     } else {
495         if(_fpMode == 1) {
496             s = "Dtk";
497         }
498     }
499     _kln89->DrawText(s, 2, 13, ypos);
500 }
501
502 // Calculate the displayable parameters for the currently displayed flightplan.
503 // These are Distance, ETE, ETA (UTC) and DTK for the active flight plan, and Distance and DTK for the stored flightplans.
504 // These are then converted into strings and pushed onto a string list (_params) which matches the flightplan,
505 // which is a really really really ugly and potentially bug-prone and hard to maintain way of doing this.
506 // TODO: When the unit is fully working rip out _params and replace with a better solution.
507 void KLN89FplPage::Calc() {
508     _params.clear();
509     GPSFlightPlan* fp = _kln89->_flightPlans[_subPage];
510     vector<GPSWaypoint*> wv = fp->waypoints;
511     // Some parameters are calculated differently for the active and the stored flightplans, so
512     // do the two cases seperately.
513     if(0 == _subPage) {
514         // Active FP - parameters are only displayed for the active waypoint onwards for the active plan,
515         // and distance is cumulative from the user position.
516         if(0 == _actFpMode) {
517             // Dis
518             double cum_tot = 0.0;
519             if(wv.size() > 0) {
520                 cum_tot += _kln89->GetGreatCircleDistance(_kln89->_gpsLat, _kln89->_gpsLon, wv[0]->lat, wv[0]->lon);
521             }
522             for(unsigned int i=1; i<wv.size(); ++i) {
523                 cum_tot += _kln89->GetGreatCircleDistance(wv[i-1]->lat, wv[i-1]->lon, wv[i]->lat, wv[i]->lon);  // TODO - add units switch!
524                 int n = (int)(cum_tot + 0.5);
525                 _params.push_back(GPSitoa(n));
526             }
527         } else if(1 == _actFpMode) {
528             // TODO
529         } else if(2 == _actFpMode) {
530             // TODO
531         } else {
532             // Dtk
533             for(unsigned int i=1; i<wv.size(); ++i) {
534                 double dtk = _kln89->GetMagHeadingFromTo(wv[i-1]->lat, wv[i-1]->lon, wv[i]->lat, wv[i]->lon);
535                 int n = (int)(dtk + 0.5);
536                 _params.push_back(GPSitoa(n));
537             }
538             
539         }
540     } else {
541         // other FPs
542         if(0 == _fpMode) {
543             double cum_tot = 0.0;
544             for(unsigned int i=1; i<wv.size(); ++i) {
545                 cum_tot += _kln89->GetGreatCircleDistance(wv[i-1]->lat, wv[i-1]->lon, wv[i]->lat, wv[i]->lon);  // TODO - add units switch!
546                 int n = (int)(cum_tot + 0.5);
547                 _params.push_back(GPSitoa(n));
548             }
549         } else {
550             // Dtk
551             for(unsigned int i=1; i<wv.size(); ++i) {
552                 double dtk = _kln89->GetMagHeadingFromTo(wv[i-1]->lat, wv[i-1]->lon, wv[i]->lat, wv[i]->lon);
553                 int n = (int)(dtk + 0.5);
554                 _params.push_back(GPSitoa(n));
555             }
556         }
557     }
558 }
559
560 void KLN89FplPage::CrsrPressed() {
561     if(_delFP || _delAppr) {
562         _delFP = _delAppr = false;
563         _kln89->_mode = KLN89_MODE_DISP;
564         return;
565     }
566
567     _wLinePos = 0;
568     if(_kln89->_mode == KLN89_MODE_DISP) {
569         _fp0SelWpId.clear();
570         if(_bEntWp) {
571             for(unsigned int i = 0; i < _kln89->_flightPlans[_subPage]->waypoints.size(); ++i) {
572                 if(_kln89->_flightPlans[_subPage]->waypoints[i] == _entWp) {
573                     _kln89->_flightPlans[_subPage]->waypoints.erase(_kln89->_flightPlans[_subPage]->waypoints.begin() + i);
574                 }
575             }
576             delete _entWp;
577             _entWp = NULL;
578             _bEntWp = false;
579             _entWpStr.clear();
580         }
581     } else {
582         if(_kln89->_obsMode) {
583             _uLinePos = 0;
584         } else {
585             if(_kln89->_flightPlans[_subPage]->IsEmpty()) {
586                 _uLinePos = 4;
587             } else {
588                 _uLinePos = (_subPage == 0 ? 3 : 1);
589             }
590         }
591     }
592 }
593
594 void KLN89FplPage::ClrPressed() {
595     if(_delFP || _delAppr) {
596         _delFP = _delAppr = false;
597         _kln89->_mode = KLN89_MODE_DISP;
598     } else {
599         if(KLN89_MODE_CRSR == _kln89->_mode) {
600             // TODO - see if we need to delete a waypoint
601             if(_uLinePos >= 4) {
602                 if(_delWp) {
603                     // If we are already displaying a clear waypoint dialog in response to the CLR button,
604                     // then a further press of the CLR button cancels the dialog.
605                     _kln89->_mode = KLN89_MODE_DISP;
606                     _delWp = false;
607                 } else if(_bEntWp) {
608                     // If we are currently entering a waypoint, then CLR deletes it unconditionally
609                     // without a confirmation dialog and cancels waypoint entry.
610                     int pos = _uLinePos - 4 + _fplPos;
611                     // Sanity check - the calculated wp position should never be off the end of the waypoint list.
612                     if(pos > static_cast<int>(_kln89->_flightPlans[_subPage]->waypoints.size()) - 1) {
613                         SG_LOG(SG_GENERAL, SG_ALERT, "ERROR - _uLinePos too big in KLN89FplPage::ClrPressed!\n");
614                         return;
615                     }
616                     _kln89->_flightPlans[_subPage]->waypoints.erase(_kln89->_flightPlans[_subPage]->waypoints.begin() + pos);
617                     _bEntWp = false;
618                     _entWp = NULL;
619                     _entWpStr.clear();
620                     _wLinePos = 0;
621                     // Do we need to re-calc _fplPos here?                    
622                 } else {
623                     // First check that we're not trying to delete an approach waypoint.  Note that we can delete the approach by deleting the header though.
624                     // Check for approach waypoints or header/fences in flightplan 0
625                     int n = _fplPos + _uLinePos - 4;
626                     bool hdrPos = false;
627                     bool fencePos = false;
628                     //cout << "_fplPos = " << _fplPos << ", _uLinePos = " << _uLinePos << ", n = " << n << ", _hdrPos = " << _hdrPos << ", _fencePos = " << _fencePos << '\n';
629                     if(n == _hdrPos) {
630                         //cout << "HEADER POS\n";
631                         hdrPos = true;
632                     }
633                     if(n == _fencePos) {
634                         //cout << "FENCE POS\n";
635                         fencePos = true;
636                     }
637                     if(_hdrPos >= 0 && n > _hdrPos) --n;
638                     if(_fencePos >= 0 && n >= _fencePos) --n;   // This one needs to be >= since n is already decremented by 1 in the line above!
639                     //cout << "New n = " << n << '\n';
640                     if(hdrPos) {
641                         //cout << "HDRP\n";
642                         _delAppr = true;
643                     } else if(fencePos) {
644                         //cout << "FENP\n";
645                         // no-op
646                     } else if(n >= static_cast<int>(_kln89->_flightPlans[_subPage]->waypoints.size())) {
647                         // no-op - off the end of the list on the entry field
648                     } else if(_kln89->_flightPlans[_subPage]->waypoints[n]->appType == GPS_APP_NONE) {
649                         //cout << "DELFP\n";
650                         _kln89->_mode = KLN89_MODE_CRSR;
651                         _delWp = true;
652                     } else {
653                         ShowScratchpadMessage("Invald", " Del  ");
654                     }
655                 }
656             } else if(_uLinePos == 3) {
657                 if(_subPage == 0) {
658                     _actFpMode++;
659                     if(_actFpMode > 3) _actFpMode = 0;
660                 } else {
661                     _fpMode++;
662                     if(_fpMode > 1) _fpMode = 0;
663                 }
664             }
665         } else {
666             _delFP = true;
667             _uLinePos = 1;
668             _kln89->_mode = KLN89_MODE_CRSR;
669         }
670     }
671 }
672
673 void KLN89FplPage::CleanUp() {
674     // TODO - possibly need to clean up _delWp here as well, since it goes off if dto and then ent are pressed.
675     
676     _bEntWp = false;
677     for(unsigned int i = 0; i < _kln89->_flightPlans[_subPage]->waypoints.size(); ++i) {
678         if(_kln89->_flightPlans[_subPage]->waypoints[i] == _entWp) {
679             _kln89->_flightPlans[_subPage]->waypoints.erase(_kln89->_flightPlans[_subPage]->waypoints.begin() + i);
680         }
681     }
682     delete _entWp;
683     _entWp = NULL;
684     _entWpStr.clear();
685     KLN89Page::CleanUp();
686 }
687
688 void KLN89FplPage::LooseFocus() {
689     _fplPos = 0;
690     _resetFplPos0 = true;
691     _wLinePos = 0;
692     _uLinePos = 0;
693     _fp0SelWpId.clear();
694     _scratchpadMsg = false;
695 }
696
697 void KLN89FplPage::EntPressed() {
698     if(_delFP) {
699         _kln89->ClearFlightPlan(_subPage);
700         CrsrPressed();
701     } else if(_delWp) {
702         int pos = _uLinePos - 4 + _fplPos;
703         // Sanity check - the calculated wp position should never be off the end of the waypoint list.
704         if(pos > static_cast<int>(_kln89->_flightPlans[_subPage]->waypoints.size()) - 1) {
705             SG_LOG(SG_GENERAL, SG_ALERT, "ERROR - _uLinePos too big in KLN89FplPage::EntPressed!\n");
706             return;
707         }
708         _kln89->_flightPlans[_subPage]->waypoints.erase(_kln89->_flightPlans[_subPage]->waypoints.begin() + pos);
709         _delWp = false;
710         // Do we need to re-calc _fplPos here?
711     } else if(_bEntExp) {
712         _bEntWp = false;
713         _bEntExp = false;
714         _entWp = NULL;  // DON'T delete it! - it's been pushed onto the waypoint list at this point.
715         _entWpStr.clear();
716         _kln89->_cleanUpPage = -1;
717         _wLinePos = 0;
718         // TODO - in actual fact the previously underlined waypoint stays in the same position and underlined
719         // in some or possibly all circumstances - need to check this out and match it, but not too important
720         // for now.
721     } else if(_bEntWp) {
722         if(_entWp != NULL) {
723             // TODO - should be able to get rid of this switch I think and use the enum values.
724             switch(_entWp->type) {
725             case GPS_WP_APT:
726                 _kln89->_activePage = _kln89->_pages[0];
727                 _kln89->_curPage = 0;
728                 ((KLN89Page*)_kln89->_pages[0])->SetEntInvert(true);
729                 break;
730             case GPS_WP_VOR:
731                 _kln89->_activePage = _kln89->_pages[1];
732                 _kln89->_curPage = 1;
733                 ((KLN89Page*)_kln89->_pages[1])->SetEntInvert(true);
734                 break;
735             case GPS_WP_NDB:
736                 _kln89->_activePage = _kln89->_pages[2];
737                 _kln89->_curPage = 2;
738                 ((KLN89Page*)_kln89->_pages[2])->SetEntInvert(true);
739                 break;
740             case GPS_WP_INT:
741                 _kln89->_activePage = _kln89->_pages[3];
742                 _kln89->_curPage = 3;
743                 ((KLN89Page*)_kln89->_pages[3])->SetEntInvert(true);
744                 break;
745             case GPS_WP_USR:
746                 _kln89->_activePage = _kln89->_pages[4];
747                 _kln89->_curPage = 4;
748                 ((KLN89Page*)_kln89->_pages[4])->SetEntInvert(true);
749                 break;
750             default:
751                 SG_LOG(SG_GENERAL, SG_ALERT, "Error - unknown waypoint type found in KLN89::FplPage::EntPressed()\n");
752             }
753             _kln89->_activePage->SetId(_entWp->id);
754             _kln89->_entJump = 7;
755             _kln89->_cleanUpPage = 7;
756             _kln89->_entRestoreCrsr = true;
757             _kln89->_mode = KLN89_MODE_DISP;
758         }
759         _bEntExp = true;
760     } else if(_uLinePos == 1) {
761         if(_kln89->_flightPlans[_subPage]->IsEmpty()) {
762             // Copy fpl 0
763             for(unsigned int i=0; i<_kln89->_flightPlans[0]->waypoints.size(); ++i) {
764                 GPSWaypoint* wp = new GPSWaypoint;
765                 *wp = *(_kln89->_flightPlans[0]->waypoints[i]);
766                 _kln89->_flightPlans[_subPage]->waypoints.push_back(wp);
767             }
768         } else {
769             // Use
770             _kln89->ClearFlightPlan(0);
771             for(unsigned int i=0; i<_kln89->_flightPlans[_subPage]->waypoints.size(); ++i) {
772                 GPSWaypoint* wp = new GPSWaypoint;
773                 *wp = *(_kln89->_flightPlans[_subPage]->waypoints[i]);
774                 _kln89->_flightPlans[0]->waypoints.push_back(wp);
775             }
776             _kln89->OrientateToActiveFlightPlan();
777             _subPage = 0;
778         }
779         _kln89->CrsrPressed();
780     } else if(_uLinePos == 2) {
781         if(_kln89->_flightPlans[_subPage]->IsEmpty()) {
782             // ERROR !!!
783         } else {
784             // Use Invert
785             _kln89->ClearFlightPlan(0);
786             for(unsigned int i=0; i<_kln89->_flightPlans[_subPage]->waypoints.size(); ++i) {
787                 GPSWaypoint* wp = new GPSWaypoint;
788                 *wp = *(_kln89->_flightPlans[_subPage]->waypoints[i]);
789                 // FIXME - very inefficient - use a reverse iterator on the source array and push_back instead!!!!!!!!
790                 _kln89->_flightPlans[0]->waypoints.insert(_kln89->_flightPlans[0]->waypoints.begin(), wp);
791             }
792             _kln89->OrientateToActiveFlightPlan();
793         }
794         _kln89->CrsrPressed();
795         _subPage = 0;
796     }
797 }
798
799 void KLN89FplPage::Knob1Left1() {
800     if(_delFP) {
801         _delFP = false;
802         return;
803     }
804     _delWp = false;
805     _changeAppr = false;
806
807     if(_kln89->_mode == KLN89_MODE_CRSR) {
808         if(_bEntWp) {
809             if(_wLinePos > 0) _wLinePos--;
810         } else {
811             // _uLinePos with empty/not-empty plan: 1 = Copy FPL 0? / Use?, 2 = unused if empty / Invert?, 3 = >Dis/Dtk field, 4+ = Waypoint 1+
812             if(_uLinePos == 0) {
813                 // No-op
814             } else if(_uLinePos == 1 || _uLinePos == 2) {
815                 _uLinePos--;
816             } else if(_uLinePos == 3) {
817                 _uLinePos = 4;
818             } else if(_uLinePos == 4) {
819                 if(_kln89->_flightPlans[_subPage]->IsEmpty()) {
820                     _uLinePos = (_subPage == 0 ? 0 : 1);
821                 } else if(_fplPos == 0) {
822                     _uLinePos = (_subPage == 0 ? 0 : 2);
823                 } else {
824                     _fplPos--;
825                 }
826             } else if(_uLinePos == 5) {
827                 _uLinePos = 3;
828             } else {
829                 _uLinePos--;
830             }
831
832             if(_subPage == 0 && _uLinePos > 3) {
833                 int ix = _fplPos + (_uLinePos - 4);
834                 if(_fencePos >= 0 && ix >= _fencePos) ix--;
835                 if(_hdrPos >= 0 && ix >= _hdrPos) ix--;
836                 if(ix >= static_cast<int>(_kln89->_activeFP->waypoints.size())) {
837                     _fp0SelWpId.clear();
838                 } else {
839                     _fp0SelWpId = _kln89->_activeFP->waypoints[ix]->id;
840                 }
841             } else {
842                 _fp0SelWpId.clear();
843                 //cout << "Not page 0, or not in waypoints, clearing id!\n";
844             }
845         }
846     }
847 }
848
849 void KLN89FplPage::Knob1Right1() {
850     if(_delFP) {
851         _delFP = false;
852         return;
853     }
854     _delWp = false;
855     _changeAppr = false;
856     
857     if(_kln89->_mode == KLN89_MODE_CRSR) {
858         if(_bEntWp) {
859             if(_wLinePos < 4) _wLinePos++;
860         } else {
861             // _uLinePos with empty/not-empty plan: 
862             // 1 = Copy FPL 0? / Use?, 2 = unused if empty / Invert?, 3 = >Dis/Dtk field, 4+ = Waypoint 1+
863             if(_uLinePos == 0) {
864                 _uLinePos = (_subPage == 0 ? 4 : 1);
865             } else if(_uLinePos == 1) {
866                 _uLinePos = (_kln89->_flightPlans[_subPage]->IsEmpty() ? 4 : 2);
867             } else if(_uLinePos == 2) {
868                 _uLinePos = 4;
869             } else if(_uLinePos == 3) {
870                 if(!_kln89->_flightPlans[_subPage]->IsEmpty()) _uLinePos = 5;
871             } else if(_uLinePos == 4) {
872                 _uLinePos = 3;
873             } else if((_subPage == 0 && _uLinePos == 6) || (_subPage > 0 && _uLinePos == 5)) {
874                 // Urrggh - complicated!
875                 // 3 possibilities:
876                 // 1: We're on the entry field at the end of the list, and can't move any more.
877                 // 2: We're on the last or second-last field, and move to the last position
878                 // 3: We're on a field before the second-last one, and don't move, but change the list-head position
879                 // And 4: _subPage 0 can be complicated by the presence of header/fence lines in an approach.
880                 int hfcount = 0;
881                 if(_subPage == 0) {
882                     if(_hdrPos >= 0) hfcount++;
883                     if(_fencePos >= 0) hfcount++;
884                 }
885                 if(_kln89->_flightPlans[_subPage]->waypoints.size() == 1 || _fplPos == _kln89->_flightPlans[_subPage]->waypoints.size() + hfcount - 1) {
886                     // 1: Don't move
887                 } else if(_fplPos >= _kln89->_flightPlans[_subPage]->waypoints.size() + hfcount - (_subPage == 0 ? 4 : 3)) {
888                     _uLinePos++;
889                 } else {
890                     _fplPos++;
891                 }
892             } else if(_uLinePos == 5) {
893                 // Must be _subPage 0
894                 _uLinePos++;
895             } else {
896                 // Must be the last line - either _uLinePos 6 or 7 depending on _subPage
897                 const unsigned thresh = (_subPage == 0 ? 3 : 2);
898                 if(_kln89->_flightPlans[_subPage]->waypoints.size() == thresh || _fplPos == _kln89->_flightPlans[_subPage]->waypoints.size() - thresh) {
899                     // Don't move
900                 } else {
901                     _fplPos++;
902                 }
903             }
904             
905             if(_subPage == 0 && _uLinePos > 3) {
906                 int ix = _fplPos + (_uLinePos - 4);
907                 if(_fencePos >= 0 && ix >= _fencePos) ix--;
908                 if(_hdrPos >= 0 && ix >= _hdrPos) ix--;
909                 if(ix >= static_cast<int>(_kln89->_activeFP->waypoints.size())) {
910                     _fp0SelWpId.clear();
911                 } else {
912                     _fp0SelWpId = _kln89->_activeFP->waypoints[ix]->id;
913                 }
914             } else {
915                 _fp0SelWpId.clear();
916                 //cout << "Not page 0, or not in waypoints, clearing id!\n";
917             }
918         }
919     }
920 }
921
922 void KLN89FplPage::Knob2Left1() {
923     if(_delFP) {
924         _delFP = false;
925         return;
926     }
927     _delWp = false;
928
929     if(_kln89->_mode != KLN89_MODE_CRSR || _uLinePos == 0) {
930         if(_kln89->_mode != KLN89_MODE_CRSR) _resetFplPos0 = true;
931         KLN89Page::Knob2Left1();
932     } else {
933         if(_uLinePos > 3) {
934             // Check for approach waypoints or header/fences in flightplan 0
935             int n = _fplPos + _uLinePos - 4;
936             bool hdrPos = false;
937             bool fencePos = false;
938             bool appWp = false;
939             //cout << "_fplPos = " << _fplPos << ", _uLinePos = " << _uLinePos << ", n = " << n << ", _hdrPos = " << _hdrPos << ", _fencePos = " << _fencePos << '\n';
940             if(n == _hdrPos) {
941                 //cout << "HEADER POS\n";
942                 hdrPos = true;
943             }
944             if(n == _fencePos) {
945                 //cout << "FENCE POS\n";
946                 fencePos = true;
947             }
948             if(_hdrPos >= 0 && n > _hdrPos) --n;
949             if(_fencePos >= 0 && n >= _fencePos) --n;   // This one needs to be >= since n is already decremented by 1 in the line above!
950             //cout << "New n = " << n << '\n';
951             
952             if(n < static_cast<int>(_kln89->_flightPlans[_subPage]->waypoints.size())) {
953                 if(_kln89->_flightPlans[_subPage]->waypoints[n]->appType != GPS_APP_NONE) {
954                     appWp = true;
955                 }
956             }
957             
958             if(hdrPos) {
959                 // TODO - not sure what we actually do in this condition
960                 _changeAppr = true;
961             } else if(fencePos) {
962                 // no-op?
963             } else if(appWp) {
964                 ShowScratchpadMessage("Invald", " Add  ");
965             } else {
966                 if((_wLinePos + 1) > _entWpStr.size()) {
967                     _entWpStr += '9';
968                 } else {
969                     _entWpStr[_wLinePos] = _kln89->DecChar(_entWpStr[_wLinePos], (_wLinePos == 0 ? false : true));
970                 }
971                 _bEntWp = true;
972                 _fp0SelWpId.clear();    // Waypoints don't become the DTO default whilst being entered.
973                 
974                 GPSWaypoint* wp = _kln89->FindFirstById(_entWpStr.substr(0, _wLinePos+1));
975                 if(NULL == wp) {
976                     // No ID matches the partial ID entered so _entWpStr must be shortened to the cursor
977                     // position if it was longer due to a match on the previous character.
978                     if(_entWpStr.size() > _wLinePos+1) {
979                         _entWpStr = _entWpStr.substr(0, _wLinePos+1);
980                     }
981                 } else {
982                     // There is a matching full ID to the entered partial ID, so copy the full ID
983                     // into _entWpStr
984                     _entWpStr = wp->id;
985                     if(_entWp) {
986                         *_entWp = *wp; // copy
987                         delete wp;
988                     } else {
989                         _entWp = wp;
990                         if(_fplPos + (_uLinePos - 4) >= _kln89->_flightPlans[_subPage]->waypoints.size()) {
991                             _kln89->_flightPlans[_subPage]->waypoints.push_back(_entWp);
992                         } else {
993                             _kln89->_flightPlans[_subPage]->waypoints.insert(_kln89->_flightPlans[_subPage]->waypoints.begin()+(_fplPos + (_uLinePos - 4)), _entWp);
994                         }
995                     }
996                 }
997             }
998         }
999     }
1000 }
1001
1002 void KLN89FplPage::Knob2Right1() {
1003     if(_delFP) {
1004         _delFP = false;
1005         return;
1006     }
1007     _delWp = false;
1008
1009     if(_kln89->_mode != KLN89_MODE_CRSR || _uLinePos == 0) {
1010         if(_kln89->_mode != KLN89_MODE_CRSR) _resetFplPos0 = true;
1011         KLN89Page::Knob2Right1();
1012     } else {
1013         if(_uLinePos > 3) {
1014             // Check for approach waypoints or header/fences in flightplan 0
1015             int n = _fplPos + _uLinePos - 4;
1016             bool hdrPos = false;
1017             bool fencePos = false;
1018             bool appWp = false;
1019             //cout << "_fplPos = " << _fplPos << ", _uLinePos = " << _uLinePos << ", n = " << n << ", _hdrPos = " << _hdrPos << ", _fencePos = " << _fencePos << '\n';
1020             if(n == _hdrPos) {
1021                 //cout << "HEADER POS\n";
1022                 hdrPos = true;
1023             }
1024             if(n == _fencePos) {
1025                 //cout << "FENCE POS\n";
1026                 fencePos = true;
1027             }
1028             if(_hdrPos >= 0 && n > _hdrPos) --n;
1029             if(_fencePos >= 0 && n >= _fencePos) --n;   // This one needs to be >= since n is already decremented by 1 in the line above!
1030             //cout << "New n = " << n << '\n';
1031             
1032             if(n < static_cast<int>(_kln89->_flightPlans[_subPage]->waypoints.size())) {
1033                 if(_kln89->_flightPlans[_subPage]->waypoints[n]->appType != GPS_APP_NONE) {
1034                     appWp = true;
1035                 }
1036             }
1037             
1038             if(hdrPos) {
1039                 // TODO - not sure what we actually do in this condition
1040                 _changeAppr = true;
1041             } else if(fencePos) {
1042                 // no-op?
1043             } else if(appWp) {
1044                 ShowScratchpadMessage("Invald", " Add  ");
1045             } else {
1046                 if((_wLinePos + 1) > _entWpStr.size()) {
1047                     _entWpStr += 'A';
1048                 } else {
1049                     _entWpStr[_wLinePos] = _kln89->IncChar(_entWpStr[_wLinePos], (_wLinePos == 0 ? false : true));
1050                 }
1051                 _bEntWp = true;
1052                 _fp0SelWpId.clear();    // Waypoints don't become the DTO default whilst being entered.
1053                 
1054                 GPSWaypoint* wp = _kln89->FindFirstById(_entWpStr.substr(0, _wLinePos+1));
1055                 if(NULL == wp) {
1056                     // No ID matches the partial ID entered so _entWpStr must be shortened to the cursor
1057                     // position if it was longer due to a match on the previous character.
1058                     if(_entWpStr.size() > _wLinePos+1) {
1059                         _entWpStr = _entWpStr.substr(0, _wLinePos+1);
1060                     }
1061                 } else {
1062                     // There is a matching full ID to the entered partial ID, so copy the full ID
1063                     // into _entWpStr
1064                     _entWpStr = wp->id;
1065                     if(_entWp) {
1066                         *_entWp = *wp; // copy
1067                         delete wp;
1068                     } else {
1069                         _entWp = wp;
1070                         if(_fplPos + (_uLinePos - 4) >= _kln89->_flightPlans[_subPage]->waypoints.size()) {
1071                             _kln89->_flightPlans[_subPage]->waypoints.push_back(_entWp);
1072                         } else {
1073                             _kln89->_flightPlans[_subPage]->waypoints.insert(_kln89->_flightPlans[_subPage]->waypoints.begin()+(_fplPos + (_uLinePos - 4)), _entWp);
1074                         }
1075                     }
1076                 }
1077             }
1078         }
1079     }
1080 }