1
0
Fork 0
flightgear/src/Main/viewmgr.hxx
curt 42a5ee93d7 This patch includes the FGLocation class, a few fixes, cleanup in viewer code.
Synced to CVS 19:36 EDT 2002-04-10 (after this evenings JSMsim and Base
package updates).

Description:
Added FGLocation class which is new home for calculating matrix rotations.
Viewer can now be configured to access rotations created by the model rather
than repeating the same calculations again.

Changed model initialization for the time being so that its location data is
available for the viewer (currently required by other subsystems).  At some
point we can move this back to fg_init along with the viewer initialization.

Seperated the update from the draw function in the model code.  The viewer
code needs the same matrix data, and moving the update portion at this time
does not increase the number of matrix math iterations.

Moved the model draw so that it always appears "in front" of lights and clouds.

Reogranized viewer update routine for using the FGLocation class and
simplified some more tasks.  The routine is fairly easy to follow now, with
the steps ordered and spelled out in comments.

Viewmgr only updates the current (visible) view now, with the exception of an
old reference to "chase view" that will be corrected in forthcoming changes.
Also will be doing some work on the viewmgr outputs.

Model is now clears the z-buffer in all modes.  This will be changed with the
next viewmgr update.  The only side effect is that models always disappear
when over 5km distant from the eye point (can't really see them anyway:-)).

Other than a flag to indicate "internal" view I don't anticipate the
configuration interface for viewmgr/views will be changed a lot for now.  It
is close to done.  The next viewmgr update will however rework the outputs so
may change location.

This code will run with the previous version of preferences.xml, but will run
faster with the newer version.  I am attaching a preferences.xml that should
not be commited before the code.  All the changes are in the /sim/view section
and should show a simpler view configuration that references model locations.
 Note that I've added a 2nd tower view in "lookfrom" mode for illustration
purposes. You can look around using the mouse.  You may want to remove that or
comment it out.
2002-04-11 04:26:07 +00:00

148 lines
3.6 KiB
C++

// viewmgr.hxx -- class for managing all the views in the flightgear world.
//
// Written by Curtis Olson, started October 2000.
//
// Copyright (C) 2000 Curtis L. Olson - curt@flightgear.org
//
// This program is free software; you can redistribute it and/or
// modify it under the terms of the GNU General Public License as
// published by the Free Software Foundation; either version 2 of the
// License, or (at your option) any later version.
//
// This program is distributed in the hope that it will be useful, but
// WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
// General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program; if not, write to the Free Software
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
//
// $Id$
#ifndef _VIEWMGR_HXX
#define _VIEWMGR_HXX
#ifndef __cplusplus
# error This library requires C++
#endif
#include <simgear/compiler.h>
#ifdef HAVE_CONFIG_H
# include <config.h>
#endif
#include <vector>
#include "fgfs.hxx"
#include "viewer.hxx"
SG_USING_STD(vector);
// Define a structure containing view information
class FGViewMgr : public FGSubsystem
{
public:
// Constructor
FGViewMgr( void );
// Destructor
~FGViewMgr( void );
virtual void init ();
virtual void bind ();
virtual void unbind ();
virtual void update (int dt);
// getters
inline int size() const { return views.size(); }
inline int get_current() const { return current; }
inline FGViewer *get_current_view() {
if ( current < (int)views.size() ) {
return views[current];
} else {
return NULL;
}
}
inline const FGViewer *get_current_view() const {
if ( current < (int)views.size() ) {
return views[current];
} else {
return NULL;
}
}
inline FGViewer *get_view( int i ) {
if ( i < 0 ) { i = 0; }
if ( i >= (int)views.size() ) { i = views.size() - 1; }
return views[i];
}
inline const FGViewer *get_view( int i ) const {
if ( i < 0 ) { i = 0; }
if ( i >= (int)views.size() ) { i = views.size() - 1; }
return views[i];
}
inline FGViewer *next_view() {
++current;
if ( current >= (int)views.size() ) {
current = 0;
}
return views[current];
}
inline FGViewer *prev_view() {
--current;
if ( current < 0 ) {
current = views.size() - 1;
}
return views[current];
}
// setters
inline void clear() { views.clear(); }
inline void set_view( const int v ) { current = v; }
inline void add_view( FGViewer * v ) {
views.push_back(v);
v->init();
}
private:
double axis_long;
double axis_lat;
void do_axes ();
double getViewOffset_deg () const;
void setViewOffset_deg (double offset);
double getGoalViewOffset_deg () const;
void setGoalViewOffset_deg (double offset);
double getViewTilt_deg () const;
void setViewTilt_deg (double tilt);
double getGoalViewTilt_deg () const;
void setGoalViewTilt_deg (double tilt);
double getPilotXOffset_m () const;
void setPilotXOffset_m (double x);
double getPilotYOffset_m () const;
void setPilotYOffset_m (double y);
double getPilotZOffset_m () const;
void setPilotZOffset_m (double z);
double getFOV_deg () const;
void setFOV_deg (double fov);
void setViewAxisLong (double axis);
void setViewAxisLat (double axis);
typedef vector < FGViewer * > viewer_list;
viewer_list views;
int current;
};
#endif // _VIEWMGR_HXX