]> git.mxchange.org Git - flightgear.git/blob - src/Main/viewmgr.cxx
fd6f25fd98265d4fa9251f9628774c355bc7f966
[flightgear.git] / src / Main / viewmgr.cxx
1 // viewmgr.cxx -- class for managing all the views in the flightgear world.
2 //
3 // Written by Curtis Olson, started October 2000.
4 //   partially rewritten by Jim Wilson March 2002
5 //
6 // Copyright (C) 2000  Curtis L. Olson  - http://www.flightgear.org/~curt
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 "viewmgr.hxx"
29
30 #include <string.h>             // strcmp
31
32 #include <simgear/compiler.h>
33 #include <Model/acmodel.hxx>
34 #include <Main/viewer.hxx>
35 #include <Main/fg_props.hxx>
36
37 // Constructor
38 FGViewMgr::FGViewMgr( void ) :
39   axis_long(0),
40   axis_lat(0),
41   view_number(fgGetNode("/sim/current-view/view-number", true)),
42   config_list(fgGetNode("/sim", true)->getChildren("view")),
43   current(0)
44 {
45 }
46
47 // Destructor
48 FGViewMgr::~FGViewMgr( void ) {
49 }
50
51 void
52 FGViewMgr::init ()
53 {
54   double aspect_ratio_multiplier
55       = fgGetDouble("/sim/current-view/aspect-ratio-multiplier");
56
57   for (unsigned int i = 0; i < config_list.size(); i++) {
58     SGPropertyNode *n = config_list[i];
59
60     // find out if this is an internal view (e.g. in cockpit, low near plane)
61     bool internal = n->getBoolValue("internal", false);
62
63     // FIXME:
64     // this is assumed to be an aircraft model...we will need to read
65     // model-from-type as well.
66
67     // find out if this is a model we are looking from...
68     bool from_model = n->getBoolValue("config/from-model");
69     int from_model_index = n->getIntValue("config/from-model-idx");
70
71     double x_offset_m = n->getDoubleValue("config/x-offset-m");
72     double y_offset_m = n->getDoubleValue("config/y-offset-m");
73     double z_offset_m = n->getDoubleValue("config/z-offset-m");
74
75     double heading_offset_deg = n->getDoubleValue("config/heading-offset-deg");
76     n->setDoubleValue("config/heading-offset-deg", heading_offset_deg);
77     double pitch_offset_deg = n->getDoubleValue("config/pitch-offset-deg");
78     n->setDoubleValue("config/pitch-offset-deg", pitch_offset_deg);
79     double roll_offset_deg = n->getDoubleValue("config/roll-offset-deg");
80     n->setDoubleValue("config/roll-offset-deg", roll_offset_deg);
81
82     double fov_deg = n->getDoubleValue("config/default-field-of-view-deg");
83     double near_m = n->getDoubleValue("config/ground-level-nearplane-m");
84
85     // supporting two types "lookat" = 1 and "lookfrom" = 0
86     const char *type = n->getStringValue("type");
87     if (!strcmp(type, "lookat")) {
88
89       bool at_model = n->getBoolValue("config/at-model");
90       int at_model_index = n->getIntValue("config/at-model-idx");
91
92       double damp_roll = n->getDoubleValue("config/at-model-roll-damping");
93       double damp_pitch = n->getDoubleValue("config/at-model-pitch-damping");
94       double damp_heading = n->getDoubleValue("config/at-model-heading-damping");
95
96       double target_x_offset_m = n->getDoubleValue("config/target-x-offset-m");
97       double target_y_offset_m = n->getDoubleValue("config/target-y-offset-m");
98       double target_z_offset_m = n->getDoubleValue("config/target-z-offset-m");
99
100       add_view(new FGViewer ( FG_LOOKAT, from_model, from_model_index,
101                               at_model, at_model_index,
102                               damp_roll, damp_pitch, damp_heading,
103                               x_offset_m, y_offset_m,z_offset_m,
104                               heading_offset_deg, pitch_offset_deg,
105                               roll_offset_deg, fov_deg, aspect_ratio_multiplier,
106                               target_x_offset_m, target_y_offset_m,
107                               target_z_offset_m, near_m, internal ));
108     } else {
109       add_view(new FGViewer ( FG_LOOKFROM, from_model, from_model_index,
110                               false, 0, 0.0, 0.0, 0.0,
111                               x_offset_m, y_offset_m, z_offset_m,
112                               heading_offset_deg, pitch_offset_deg,
113                               roll_offset_deg, fov_deg, aspect_ratio_multiplier,
114                               0, 0, 0, near_m, internal ));
115     }
116   }
117
118   copyToCurrent();
119 }
120
121 void
122 FGViewMgr::reinit ()
123 {
124   // reset offsets and fov to configuration defaults
125   for (unsigned int i = 0; i < config_list.size(); i++) {
126     SGPropertyNode *n = config_list[i];
127     setView(i);
128
129     fgSetDouble("/sim/current-view/x-offset-m",
130         n->getDoubleValue("config/x-offset-m"));
131     fgSetDouble("/sim/current-view/y-offset-m",
132         n->getDoubleValue("config/y-offset-m"));
133     fgSetDouble("/sim/current-view/z-offset-m",
134         n->getDoubleValue("config/z-offset-m"));
135     fgSetDouble("/sim/current-view/pitch-offset-deg",
136         n->getDoubleValue("config/pitch-offset-deg"));
137     fgSetDouble("/sim/current-view/heading-offset-deg",
138         n->getDoubleValue("config/heading-offset-deg"));
139     fgSetDouble("/sim/current-view/roll-offset-deg",
140         n->getDoubleValue("config/roll-offset-deg"));
141
142     double fov_deg = n->getDoubleValue("config/default-field-of-view-deg");
143     if (fov_deg < 10.0)
144       fov_deg = 55.0;
145     fgSetDouble("/sim/current-view/field-of-view", fov_deg);
146
147     // target offsets for lookat mode only...
148     fgSetDouble("/sim/current-view/target-x-offset-m",
149         n->getDoubleValue("config/target-x-offset-m"));
150     fgSetDouble("/sim/current-view/target-y-offset-m",
151         n->getDoubleValue("config/target-y-offset-m"));
152     fgSetDouble("/sim/current-view/target-z-offset-m",
153         n->getDoubleValue("config/target-z-offset-m"));
154   }
155   setView(0);
156 }
157
158 typedef double (FGViewMgr::*double_getter)() const;
159
160 void
161 FGViewMgr::bind ()
162 {
163   // these are bound to the current view properties
164   fgTie("/sim/current-view/heading-offset-deg", this,
165         &FGViewMgr::getViewHeadingOffset_deg,
166         &FGViewMgr::setViewHeadingOffset_deg);
167   fgSetArchivable("/sim/current-view/heading-offset-deg");
168   fgTie("/sim/current-view/goal-heading-offset-deg", this,
169         &FGViewMgr::getViewGoalHeadingOffset_deg,
170         &FGViewMgr::setViewGoalHeadingOffset_deg);
171   fgSetArchivable("/sim/current-view/goal-heading-offset-deg");
172   fgTie("/sim/current-view/pitch-offset-deg", this,
173         &FGViewMgr::getViewPitchOffset_deg,
174         &FGViewMgr::setViewPitchOffset_deg);
175   fgSetArchivable("/sim/current-view/pitch-offset-deg");
176   fgTie("/sim/current-view/goal-pitch-offset-deg", this,
177         &FGViewMgr::getGoalViewPitchOffset_deg,
178         &FGViewMgr::setGoalViewPitchOffset_deg);
179   fgSetArchivable("/sim/current-view/goal-pitch-offset-deg");
180   fgTie("/sim/current-view/roll-offset-deg", this,
181         &FGViewMgr::getViewRollOffset_deg,
182         &FGViewMgr::setViewRollOffset_deg);
183   fgSetArchivable("/sim/current-view/roll-offset-deg");
184   fgTie("/sim/current-view/goal-roll-offset-deg", this,
185         &FGViewMgr::getGoalViewRollOffset_deg,
186         &FGViewMgr::setGoalViewRollOffset_deg);
187   fgSetArchivable("/sim/current-view/goal-roll-offset-deg");
188
189   fgTie("/sim/current-view/view-number", this,
190                       &FGViewMgr::getView, &FGViewMgr::setView);
191   fgSetArchivable("/sim/current-view/view-number", FALSE);
192
193   fgTie("/sim/current-view/axes/long", this,
194         (double_getter)0, &FGViewMgr::setViewAxisLong);
195   fgSetArchivable("/sim/current-view/axes/long");
196
197   fgTie("/sim/current-view/axes/lat", this,
198         (double_getter)0, &FGViewMgr::setViewAxisLat);
199   fgSetArchivable("/sim/current-view/axes/lat");
200
201   fgTie("/sim/current-view/field-of-view", this,
202         &FGViewMgr::getFOV_deg, &FGViewMgr::setFOV_deg);
203   fgSetArchivable("/sim/current-view/field-of-view");
204
205   fgTie("/sim/current-view/aspect-ratio-multiplier", this,
206         &FGViewMgr::getARM_deg, &FGViewMgr::setARM_deg);
207   fgSetArchivable("/sim/current-view/field-of-view");
208
209   fgTie("/sim/current-view/ground-level-nearplane-m", this,
210         &FGViewMgr::getNear_m, &FGViewMgr::setNear_m);
211   fgSetArchivable("/sim/current-view/ground-level-nearplane-m");
212
213   SGPropertyNode *n = fgGetNode("/sim/current-view", true);
214   n->tie("viewer-x-m", SGRawValuePointer<double>(&abs_viewer_position[0]));
215   n->tie("viewer-y-m", SGRawValuePointer<double>(&abs_viewer_position[1]));
216   n->tie("viewer-z-m", SGRawValuePointer<double>(&abs_viewer_position[2]));
217 }
218
219 void
220 FGViewMgr::unbind ()
221 {
222   // FIXME:
223   // need to redo these bindings to the new locations (move to viewer?)
224   fgUntie("/sim/current-view/heading-offset-deg");
225   fgUntie("/sim/current-view/goal-heading-offset-deg");
226   fgUntie("/sim/current-view/pitch-offset-deg");
227   fgUntie("/sim/current-view/goal-pitch-offset-deg");
228   fgUntie("/sim/current-view/field-of-view");
229   fgUntie("/sim/current-view/aspect-ratio-multiplier");
230   fgUntie("/sim/current-view/view-number");
231   fgUntie("/sim/current-view/axes/long");
232   fgUntie("/sim/current-view/axes/lat");
233   fgUntie("/sim/current-view/ground-level-nearplane-m");
234   fgUntie("/sim/current-view/viewer-x-m");
235   fgUntie("/sim/current-view/viewer-y-m");
236   fgUntie("/sim/current-view/viewer-z-m");
237 }
238
239 void
240 FGViewMgr::update (double dt)
241 {
242   FGViewer * view = get_current_view();
243   if (view == 0)
244     return;
245
246   FGViewer *loop_view = (FGViewer *)get_view(current);
247   SGPropertyNode *n = config_list[current];
248   double lon_deg, lat_deg, alt_ft, roll_deg, pitch_deg, heading_deg;
249
250   // Set up view location and orientation
251
252   if (!n->getBoolValue("config/from-model")) {
253     lon_deg = fgGetDouble(n->getStringValue("config/eye-lon-deg-path"));
254     lat_deg = fgGetDouble(n->getStringValue("config/eye-lat-deg-path"));
255     alt_ft = fgGetDouble(n->getStringValue("config/eye-alt-ft-path"));
256     roll_deg = fgGetDouble(n->getStringValue("config/eye-roll-deg-path"));
257     pitch_deg = fgGetDouble(n->getStringValue("config/eye-pitch-deg-path"));
258     heading_deg = fgGetDouble(n->getStringValue("config/eye-heading-deg-path"));
259
260     loop_view->setPosition(lon_deg, lat_deg, alt_ft);
261     loop_view->setOrientation(roll_deg, pitch_deg, heading_deg);
262   } else {
263     // force recalc in viewer
264     loop_view->set_dirty();
265   }
266
267   // if lookat (type 1) then get target data...
268   if (loop_view->getType() == FG_LOOKAT) {
269     if (!n->getBoolValue("config/from-model")) {
270       lon_deg = fgGetDouble(n->getStringValue("config/target-lon-deg-path"));
271       lat_deg = fgGetDouble(n->getStringValue("config/target-lat-deg-path"));
272       alt_ft = fgGetDouble(n->getStringValue("config/target-alt-ft-path"));
273       roll_deg = fgGetDouble(n->getStringValue("config/target-roll-deg-path"));
274       pitch_deg = fgGetDouble(n->getStringValue("config/target-pitch-deg-path"));
275       heading_deg = fgGetDouble(n->getStringValue("config/target-heading-deg-path"));
276
277       loop_view->setTargetPosition(lon_deg, lat_deg, alt_ft);
278       loop_view->setTargetOrientation(roll_deg, pitch_deg, heading_deg);
279     } else {
280       loop_view->set_dirty();
281     }
282   }
283
284   setViewXOffset_m(fgGetDouble("/sim/current-view/x-offset-m"));
285   setViewYOffset_m(fgGetDouble("/sim/current-view/y-offset-m"));
286   setViewZOffset_m(fgGetDouble("/sim/current-view/z-offset-m"));
287
288   setViewTargetXOffset_m(fgGetDouble("/sim/current-view/target-x-offset-m"));
289   setViewTargetYOffset_m(fgGetDouble("/sim/current-view/target-y-offset-m"));
290   setViewTargetZOffset_m(fgGetDouble("/sim/current-view/target-z-offset-m"));
291
292   // Update the current view
293   do_axes();
294   view->update(dt);
295   abs_viewer_position = loop_view->getViewPosition();
296 }
297
298 void
299 FGViewMgr::copyToCurrent()
300 {
301     SGPropertyNode *n = config_list[current];
302     fgSetString("/sim/current-view/name", n->getStringValue("name"));
303     fgSetString("/sim/current-view/type", n->getStringValue("type"));
304
305     // copy certain view config data for default values
306     fgSetDouble("/sim/current-view/config/heading-offset-deg",
307                 n->getDoubleValue("config/default-heading-offset-deg"));
308     fgSetDouble("/sim/current-view/config/pitch-offset-deg",
309                 n->getDoubleValue("config/pitch-offset-deg"));
310     fgSetDouble("/sim/current-view/config/roll-offset-deg",
311                 n->getDoubleValue("config/roll-offset-deg"));
312     fgSetDouble("/sim/current-view/config/default-field-of-view-deg",
313                 n->getDoubleValue("config/default-field-of-view-deg"));
314     fgSetBool("/sim/current-view/config/from-model",
315                 n->getBoolValue("config/from-model"));
316
317     // copy view data
318     fgSetDouble("/sim/current-view/x-offset-m", getViewXOffset_m());
319     fgSetDouble("/sim/current-view/y-offset-m", getViewYOffset_m());
320     fgSetDouble("/sim/current-view/z-offset-m", getViewZOffset_m());
321
322     fgSetDouble("/sim/current-view/goal-heading-offset-deg",
323                 get_current_view()->getGoalHeadingOffset_deg());
324     fgSetDouble("/sim/current-view/goal-pitch-offset-deg",
325                 get_current_view()->getGoalPitchOffset_deg());
326     fgSetDouble("/sim/current-view/goal-roll-offset-deg",
327                 get_current_view()->getRollOffset_deg());
328     fgSetDouble("/sim/current-view/heading-offset-deg",
329                 get_current_view()->getHeadingOffset_deg());
330     fgSetDouble("/sim/current-view/pitch-offset-deg",
331                 get_current_view()->getPitchOffset_deg());
332     fgSetDouble("/sim/current-view/roll-offset-deg",
333                 get_current_view()->getRollOffset_deg());
334     fgSetDouble("/sim/current-view/target-x-offset-m",
335                 get_current_view()->getTargetXOffset_m());
336     fgSetDouble("/sim/current-view/target-y-offset-m",
337                 get_current_view()->getTargetYOffset_m());
338     fgSetDouble("/sim/current-view/target-z-offset-m",
339                 get_current_view()->getTargetZOffset_m());
340     fgSetBool("/sim/current-view/internal",
341                 get_current_view()->getInternal());
342 }
343
344 void
345 FGViewMgr::add_view( FGViewer * v )
346 {
347   views.push_back(v);
348   v->init();
349 }
350     
351 double
352 FGViewMgr::getViewHeadingOffset_deg () const
353 {
354   const FGViewer * view = get_current_view();
355   return (view == 0 ? 0 : view->getHeadingOffset_deg());
356 }
357
358 void
359 FGViewMgr::setViewHeadingOffset_deg (double offset)
360 {
361   FGViewer * view = get_current_view();
362   if (view != 0) {
363     view->setGoalHeadingOffset_deg(offset);
364     view->setHeadingOffset_deg(offset);
365   }
366 }
367
368 double
369 FGViewMgr::getViewGoalHeadingOffset_deg () const
370 {
371   const FGViewer * view = get_current_view();
372   return (view == 0 ? 0 : view->getGoalHeadingOffset_deg());
373 }
374
375 void
376 FGViewMgr::setViewGoalHeadingOffset_deg (double offset)
377 {
378   FGViewer * view = get_current_view();
379   if (view != 0)
380     view->setGoalHeadingOffset_deg(offset);
381 }
382
383 double
384 FGViewMgr::getViewPitchOffset_deg () const
385 {
386   const FGViewer * view = get_current_view();
387   return (view == 0 ? 0 : view->getPitchOffset_deg());
388 }
389
390 void
391 FGViewMgr::setViewPitchOffset_deg (double tilt)
392 {
393   FGViewer * view = get_current_view();
394   if (view != 0) {
395     view->setGoalPitchOffset_deg(tilt);
396     view->setPitchOffset_deg(tilt);
397   }
398 }
399
400 double
401 FGViewMgr::getGoalViewPitchOffset_deg () const
402 {
403   const FGViewer * view = get_current_view();
404   return (view == 0 ? 0 : view->getGoalPitchOffset_deg());
405 }
406
407 void
408 FGViewMgr::setGoalViewPitchOffset_deg (double tilt)
409 {
410   FGViewer * view = get_current_view();
411   if (view != 0)
412     view->setGoalPitchOffset_deg(tilt);
413 }
414
415 double
416 FGViewMgr::getViewRollOffset_deg () const
417 {
418   const FGViewer * view = get_current_view();
419   return (view == 0 ? 0 : view->getRollOffset_deg());
420 }
421
422 void
423 FGViewMgr::setViewRollOffset_deg (double tilt)
424 {
425   FGViewer * view = get_current_view();
426   if (view != 0) {
427     view->setGoalRollOffset_deg(tilt);
428     view->setRollOffset_deg(tilt);
429   }
430 }
431
432 double
433 FGViewMgr::getGoalViewRollOffset_deg () const
434 {
435   const FGViewer * view = get_current_view();
436   return (view == 0 ? 0 : view->getGoalRollOffset_deg());
437 }
438
439 void
440 FGViewMgr::setGoalViewRollOffset_deg (double tilt)
441 {
442   FGViewer * view = get_current_view();
443   if (view != 0)
444     view->setGoalRollOffset_deg(tilt);
445 }
446
447 double
448 FGViewMgr::getViewXOffset_m () const
449 {
450   const FGViewer * view = get_current_view();
451   if (view != 0) {
452     return ((FGViewer *)view)->getXOffset_m();
453   } else {
454     return 0;
455   }
456 }
457
458 void
459 FGViewMgr::setViewXOffset_m (double x)
460 {
461   FGViewer * view = get_current_view();
462   if (view != 0) {
463     view->setXOffset_m(x);
464   }
465 }
466
467 double
468 FGViewMgr::getViewYOffset_m () const
469 {
470   const FGViewer * view = get_current_view();
471   if (view != 0) {
472     return ((FGViewer *)view)->getYOffset_m();
473   } else {
474     return 0;
475   }
476 }
477
478 void
479 FGViewMgr::setViewYOffset_m (double y)
480 {
481   FGViewer * view = get_current_view();
482   if (view != 0) {
483     view->setYOffset_m(y);
484   }
485 }
486
487 double
488 FGViewMgr::getViewZOffset_m () const
489 {
490   const FGViewer * view = get_current_view();
491   if (view != 0) {
492     return ((FGViewer *)view)->getZOffset_m();
493   } else {
494     return 0;
495   }
496 }
497
498 void
499 FGViewMgr::setViewZOffset_m (double z)
500 {
501   FGViewer * view = get_current_view();
502   if (view != 0) {
503     view->setZOffset_m(z);
504   }
505 }
506
507 double
508 FGViewMgr::getViewTargetXOffset_m () const
509 {
510   const FGViewer * view = get_current_view();
511   if (view != 0) {
512     return ((FGViewer *)view)->getTargetXOffset_m();
513   } else {
514     return 0;
515   }
516 }
517
518 void
519 FGViewMgr::setViewTargetXOffset_m (double x)
520 {
521   FGViewer * view = get_current_view();
522   if (view != 0) {
523     view->setTargetXOffset_m(x);
524   }
525 }
526
527 double
528 FGViewMgr::getViewTargetYOffset_m () const
529 {
530   const FGViewer * view = get_current_view();
531   if (view != 0) {
532     return ((FGViewer *)view)->getTargetYOffset_m();
533   } else {
534     return 0;
535   }
536 }
537
538 void
539 FGViewMgr::setViewTargetYOffset_m (double y)
540 {
541   FGViewer * view = get_current_view();
542   if (view != 0) {
543     view->setTargetYOffset_m(y);
544   }
545 }
546
547 double
548 FGViewMgr::getViewTargetZOffset_m () const
549 {
550   const FGViewer * view = get_current_view();
551   if (view != 0) {
552     return ((FGViewer *)view)->getTargetZOffset_m();
553   } else {
554     return 0;
555   }
556 }
557
558 void
559 FGViewMgr::setViewTargetZOffset_m (double z)
560 {
561   FGViewer * view = get_current_view();
562   if (view != 0) {
563     view->setTargetZOffset_m(z);
564   }
565 }
566
567 int
568 FGViewMgr::getView () const
569 {
570   return ( current );
571 }
572
573 void
574 FGViewMgr::setView (int newview)
575 {
576   // negative numbers -> set view with node index -newview
577   if (newview < 0) {
578     for (int i = 0; i < (int)config_list.size(); i++) {
579       int index = -config_list[i]->getIndex();
580       if (index == newview)
581         newview = i;
582     }
583     if (newview < 0)
584       return;
585   }
586
587   // if newview number too low wrap to last view...
588   if (newview < 0)
589     newview = (int)views.size() - 1;
590
591   // if newview number to high wrap to zero...
592   if (newview >= (int)views.size())
593     newview = 0;
594
595   // set new view
596   set_view(newview);
597   // copy in view data
598   copyToCurrent();
599
600   // Copy the fdm's position into the SGLocation which is shared with
601   // some views ...
602   globals->get_aircraft_model()->update(0);
603   // Do the update ...
604   update(0);
605 }
606
607
608 double
609 FGViewMgr::getFOV_deg () const
610 {
611   const FGViewer * view = get_current_view();
612   return (view == 0 ? 0 : view->get_fov());
613 }
614
615 void
616 FGViewMgr::setFOV_deg (double fov)
617 {
618   FGViewer * view = get_current_view();
619   if (view != 0)
620     view->set_fov(fov);
621 }
622
623 double
624 FGViewMgr::getARM_deg () const
625 {
626   const FGViewer * view = get_current_view();
627   return (view == 0 ? 0 : view->get_aspect_ratio_multiplier());
628 }
629
630 void
631 FGViewMgr::setARM_deg (double aspect_ratio_multiplier)
632 {
633   FGViewer * view = get_current_view();
634   if (view != 0)
635     view->set_aspect_ratio_multiplier(aspect_ratio_multiplier);
636 }
637
638 double
639 FGViewMgr::getNear_m () const
640 {
641   const FGViewer * view = get_current_view();
642   return (view == 0 ? 0.5f : view->getNear_m());
643 }
644
645 void
646 FGViewMgr::setNear_m (double near_m)
647 {
648   FGViewer * view = get_current_view();
649   if (view != 0)
650     view->setNear_m(near_m);
651 }
652
653 void
654 FGViewMgr::setViewAxisLong (double axis)
655 {
656   axis_long = axis;
657 }
658
659 void
660 FGViewMgr::setViewAxisLat (double axis)
661 {
662   axis_lat = axis;
663 }
664
665 void
666 FGViewMgr::do_axes ()
667 {
668                                 // Take no action when hat is centered
669   if ( ( axis_long <  0.01 ) &&
670        ( axis_long > -0.01 ) &&
671        ( axis_lat  <  0.01 ) &&
672        ( axis_lat  > -0.01 )
673      )
674     return;
675
676   double viewDir = 999;
677
678   /* Do all the quick and easy cases */
679   if (axis_long < 0) {          // Longitudinal axis forward
680     if (axis_lat == axis_long)
681       viewDir = fgGetDouble("/sim/view/config/front-left-direction-deg");
682     else if (axis_lat == - axis_long)
683       viewDir = fgGetDouble("/sim/view/config/front-right-direction-deg");
684     else if (axis_lat == 0)
685       viewDir = fgGetDouble("/sim/view/config/front-direction-deg");
686   } else if (axis_long > 0) {   // Longitudinal axis backward
687     if (axis_lat == - axis_long)
688       viewDir = fgGetDouble("/sim/view/config/back-left-direction-deg");
689     else if (axis_lat == axis_long)
690       viewDir = fgGetDouble("/sim/view/config/back-right-direction-deg");
691     else if (axis_lat == 0)
692       viewDir = fgGetDouble("/sim/view/config/back-direction-deg");
693   } else if (axis_long == 0) {  // Longitudinal axis neutral
694     if (axis_lat < 0)
695       viewDir = fgGetDouble("/sim/view/config/left-direction-deg");
696     else if (axis_lat > 0)
697       viewDir = fgGetDouble("/sim/view/config/right-direction-deg");
698     else return; /* And assertion failure maybe? */
699   }
700
701                                 // Do all the difficult cases
702   if ( viewDir > 900 )
703     viewDir = SGD_RADIANS_TO_DEGREES * atan2 ( -axis_lat, -axis_long );
704   if ( viewDir < -1 ) viewDir += 360;
705
706   get_current_view()->setGoalHeadingOffset_deg(viewDir);
707 }