1 // kln89_page_*.[ch]xx - this file is one of the "pages" that
2 // are used in the KLN89 GPS unit simulation.
4 // Written by David Luff, started 2005.
6 // Copyright (C) 2005 - David C Luff: daveluff --AT-- ntlworld --D0T-- com
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.
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.
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.
28 #include <Main/fg_props.hxx>
29 #include "kln89_page_cal.hxx"
31 KLN89CalPage::KLN89CalPage(KLN89* parent)
37 _ground_speed_ms = 110 * 0.514444444444;
38 _alarmAnnotate = false;
42 KLN89CalPage::~KLN89CalPage() {
45 void KLN89CalPage::Update(double dt) {
46 bool crsr = (_kln89->_mode == KLN89_MODE_CRSR);
47 bool blink = _kln89->_blink;
49 if(1) { // TODO - fix this hardwiring!
51 _kln89->DrawText(">Fpl:", 2, 0, 3);
52 _kln89->DrawText("0", 2, 6, 3);// TODO - fix this hardwiring!
53 GPSFlightPlan* fp = _kln89->_flightPlans[_nFp0];
55 unsigned int n = fp->waypoints.size();
57 // TODO - check that this is what really happens
58 _kln89->DrawText("----", 2, 9, 3);
59 _kln89->DrawText("----", 2, 9, 2);
61 _kln89->DrawText(fp->waypoints[0]->id, 2, 9, 3);
62 _kln89->DrawText(fp->waypoints[n-1]->id, 2, 9, 2);
63 double cum_tot_m = 0.0;
64 for(unsigned int i = 1; i < fp->waypoints.size(); ++i) {
65 cum_tot_m += _kln89->GetGreatCircleDistance(fp->waypoints[i-1]->lat, fp->waypoints[i-1]->lon,
66 fp->waypoints[i]->lat, fp->waypoints[i]->lon);
68 double ete = (cum_tot_m * SG_NM_TO_METER) / _ground_speed_ms;
69 _kln89->DrawDist(cum_tot_m, 2, 5, 1);
70 _kln89->DrawSpeed(_ground_speed_ms / 0.5144444444, 2, 5, 0);
71 _kln89->DrawTime(ete, 2, 14, 0);
74 _kln89->DrawText("----", 2, 9, 3);
75 _kln89->DrawText("----", 2, 9, 2);
78 _kln89->DrawText(">Wpt:", 2, 0, 3);
80 _kln89->DrawText("To", 2, 6, 2);
81 _kln89->DrawText("ESA ----'", 2, 7, 1); // TODO - implement an ESA calc
82 _kln89->DrawText("ETE", 2, 7, 0);
83 } else if(_subPage == 1) {
84 _kln89->DrawText(">Fpl: 0", 2, 0, 3); // TODO - fix this hardwiring!
85 _kln89->DrawText("FF:", 2, 0, 2);
86 _kln89->DrawText("Res:", 2, 7, 1);
87 _kln89->DrawText("Fuel Req", 2, 0, 0);
88 } else if(_subPage == 2) {
89 _kln89->DrawText("Time:", 2, 0, 3);
90 // TODO - hardwired to UTC at the moment
91 if(!(_uLinePos == 1 && crsr && blink)) { _kln89->DrawText("UTC", 2, 6, 3); }
92 if(_uLinePos == 1 && crsr) { _kln89->Underline(2, 6, 3, 3); }
93 string th = fgGetString("/instrumentation/clock/indicated-hour");
94 string tm = fgGetString("/instrumentation/clock/indicated-min");
95 ClockTime t(atoi(th.c_str()), atoi(tm.c_str()));
96 if(th.size() == 1) th = "0" + th;
97 if(tm.size() == 1) tm = "0" + tm;
98 _kln89->DrawText(th + tm, 2, 11, 3);
101 _kln89->DrawText("Alarm at:", 2, 0, 2);
102 _kln89->DrawText("in:", 2, 6, 1);
104 _alarmIn = _alarmTime - t;
105 snprintf(buf, 5, "%02i", _alarmTime.hr());
106 if(!(_uLinePos == 2 && crsr && blink)) { _kln89->DrawText((string)buf, 2, 11, 2); }
107 snprintf(buf, 5, "%02i", _alarmTime.min());
108 if(!(_uLinePos == 3 && crsr && blink)) { _kln89->DrawText((string)buf, 2, 13, 2); }
110 if(!(_uLinePos == 2 && crsr && blink)) { _kln89->DrawText("--", 2, 11, 2); }
111 if(!(_uLinePos == 3 && crsr && blink)) { _kln89->DrawText("--", 2, 13, 2); }
113 if(_alarmAnnotate && _alarmIn.hr() < 10) {
114 sprintf(buf, "%01i", _alarmIn.hr());
115 if(!(_uLinePos == 4 && crsr && blink)) { _kln89->DrawText((string)buf, 2, 11, 1); }
116 sprintf(buf, "%02i", _alarmIn.min());
117 if(!(_uLinePos == 5 && crsr && blink)) { _kln89->DrawText((string)buf, 2, 13, 1); }
119 if(!(_uLinePos == 4 && crsr && blink)) { _kln89->DrawText("-", 2, 11, 1); }
120 if(!(_uLinePos == 5 && crsr && blink)) { _kln89->DrawText("--", 2, 13, 1); }
122 _kln89->DrawText(":", 2, 12, 1);
124 if(_uLinePos == 2) { _kln89->Underline(2, 11, 2, 2); }
125 if(_uLinePos == 3) { _kln89->Underline(2, 13, 2, 2); }
126 if(_uLinePos == 4) { _kln89->Underline(2, 11, 1, 1); }
127 if(_uLinePos == 5) { _kln89->Underline(2, 13, 1, 2); }
131 _kln89->DrawText("Elapsed", 2, 0, 0);
132 ClockTime te = t - _kln89->_powerOnTime;
133 // There is the possibility that when we reset it we may end up a minute ahead of the
134 // alarm time for a second, so treat 23:59 as 0.00
135 if(te.hr() == 23 && te.min() == 59) {
139 if(!(_uLinePos == 6 && crsr && blink)) {
141 // The elapsed time blanks out
142 // when past 9:59 on the kln89 sim.
143 _kln89->DrawText("-:--", 2, 11, 0);
145 snprintf(buf, 5, "%01i:%02i", te.hr(), te.min());
146 _kln89->DrawText((string)buf, 2, 11, 0);
149 if(_uLinePos == 6 && crsr) { _kln89->Underline(2, 11, 0, 4); }
150 } else if(_subPage == 3) {
151 _kln89->DrawText("PRESSURE ALT", 2, 1, 3);
152 _kln89->DrawText("Ind:", 2, 0, 2);
153 _kln89->DrawText("Baro:", 2, 0, 1);
154 _kln89->DrawText("Prs", 2, 0, 0);
155 } else if(_subPage == 4) {
156 _kln89->DrawText("DENSITY ALT", 2, 1, 3);
157 _kln89->DrawText("Prs:", 2, 0, 2);
158 _kln89->DrawText("Temp:", 2, 0, 1);
159 _kln89->DrawText("Den", 2, 0, 0);
160 } else if(_subPage == 5) {
161 _kln89->DrawText("CAS:", 2, 0, 3);
162 _kln89->DrawText("Prs:", 2, 0, 2);
163 _kln89->DrawText("Temp:", 2, 0, 1);
164 _kln89->DrawText("TAS", 2, 0, 0);
165 } else if(_subPage == 6) {
166 _kln89->DrawText("TAS:", 2, 0, 3);
167 _kln89->DrawText("Hdg:", 2, 0, 2);
168 _kln89->DrawText("Headwind:", 2, 0, 1);
169 _kln89->DrawText("True", 2, 4, 0);
171 _kln89->DrawText("SUNRISE", 2, 0, 1);
172 _kln89->DrawText("SUNSET", 2, 0, 0);
175 KLN89Page::Update(dt);
178 void KLN89CalPage::CrsrPressed() {
179 if(_kln89->_obsMode) {
189 void KLN89CalPage::ClrPressed() {
190 if(_kln89->_mode != KLN89_MODE_CRSR) {
191 KLN89Page::ClrPressed();
193 if(_subPage == 2 && _uLinePos == 6) {
194 _kln89->ResetPowerOnTimer();
196 KLN89Page::ClrPressed();
200 void KLN89CalPage::Knob2Left1() {
201 if(_kln89->_mode != KLN89_MODE_CRSR) {
202 KLN89Page::Knob2Left1();
208 // TODO - allow time zone to be changed
209 } else if(_uLinePos == 2) {
212 _alarmTime = _alarmTime - t;
214 _alarmTime.set_hr(atoi(fgGetString("/instrumentation/clock/indicated-hour")));
215 _alarmTime.set_min(atoi(fgGetString("/instrumentation/clock/indicated-min")));
216 _alarmTime = _alarmTime - t;
217 _alarmAnnotate = true;
220 } else if(_uLinePos == 3) {
223 _alarmTime = _alarmTime - t;
225 _alarmTime.set_hr(atoi(fgGetString("/instrumentation/clock/indicated-hour")));
226 _alarmTime.set_min(atoi(fgGetString("/instrumentation/clock/indicated-min")));
227 _alarmTime = _alarmTime - t;
228 _alarmAnnotate = true;
231 } else if(_uLinePos == 4) {
233 // If the _alarmIn time is dashed out due to being > 9:59
234 // then changing it starts from zero again.
235 if(_alarmAnnotate && _alarmIn.hr() < 10) {
236 _alarmIn = _alarmIn - t;
237 if(_alarmIn.hr() > 9) { _alarmIn.set_hr(9); }
241 _alarmAnnotate = true;
244 t.set_hr(atoi(fgGetString("/instrumentation/clock/indicated-hour")));
245 t.set_min(atoi(fgGetString("/instrumentation/clock/indicated-min")));
246 _alarmTime = t + _alarmIn;
247 } else if(_uLinePos == 5) {
249 if(_alarmAnnotate && _alarmIn.hr() < 10) {
250 _alarmIn = _alarmIn - t;
251 if(_alarmIn.hr() > 9) { _alarmIn.set_hr(9); }
254 _alarmIn.set_min(59);
255 _alarmAnnotate = true;
258 t.set_hr(atoi(fgGetString("/instrumentation/clock/indicated-hour")));
259 t.set_min(atoi(fgGetString("/instrumentation/clock/indicated-min")));
260 _alarmTime = t + _alarmIn;
265 void KLN89CalPage::Knob2Right1() {
266 if(_kln89->_mode != KLN89_MODE_CRSR) {
267 KLN89Page::Knob2Right1();
273 // TODO - allow time zone to be changed
274 } else if(_uLinePos == 2) {
277 _alarmTime = _alarmTime + t;
279 _alarmTime.set_hr(atoi(fgGetString("/instrumentation/clock/indicated-hour")));
280 _alarmTime.set_min(atoi(fgGetString("/instrumentation/clock/indicated-min")));
281 _alarmTime = _alarmTime + t;
282 _alarmAnnotate = true;
285 } else if(_uLinePos == 3) {
288 _alarmTime = _alarmTime + t;
290 _alarmTime.set_hr(atoi(fgGetString("/instrumentation/clock/indicated-hour")));
291 _alarmTime.set_min(atoi(fgGetString("/instrumentation/clock/indicated-min")));
292 _alarmTime = _alarmTime + t;
293 _alarmAnnotate = true;
296 } else if(_uLinePos == 4) {
298 if(_alarmAnnotate && _alarmIn.hr() < 10) {
299 _alarmIn = _alarmIn + t;
300 if(_alarmIn.hr() > 9) { _alarmIn.set_hr(0); }
304 _alarmAnnotate = true;
307 t.set_hr(atoi(fgGetString("/instrumentation/clock/indicated-hour")));
308 t.set_min(atoi(fgGetString("/instrumentation/clock/indicated-min")));
309 _alarmTime = t + _alarmIn;
310 } else if(_uLinePos == 5) {
312 if(_alarmAnnotate && _alarmIn.hr() < 10) {
313 _alarmIn = _alarmIn + t;
314 if(_alarmIn.hr() > 9) { _alarmIn.set_hr(0); }
318 _alarmAnnotate = true;
321 t.set_hr(atoi(fgGetString("/instrumentation/clock/indicated-hour")));
322 t.set_min(atoi(fgGetString("/instrumentation/clock/indicated-min")));
323 _alarmTime = t + _alarmIn;
328 void KLN89CalPage::LooseFocus() {
330 _kln89->SetAlarm(_alarmTime.hr(), _alarmTime.min());