2000-10-26 21:51:09 +00:00
|
|
|
// viewmgr.hxx -- class for managing all the views in the flightgear world.
|
|
|
|
//
|
|
|
|
// Written by Curtis Olson, started October 2000.
|
|
|
|
//
|
2004-11-19 22:10:41 +00:00
|
|
|
// Copyright (C) 2000 Curtis L. Olson - http://www.flightgear.org/~curt
|
2000-10-26 21:51:09 +00:00
|
|
|
//
|
|
|
|
// 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
|
2006-02-21 01:16:04 +00:00
|
|
|
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
2000-10-26 21:51:09 +00:00
|
|
|
//
|
|
|
|
// $Id$
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef _VIEWMGR_HXX
|
|
|
|
#define _VIEWMGR_HXX
|
|
|
|
|
2007-05-04 14:58:52 +00:00
|
|
|
#include <vector>
|
2009-11-05 09:18:27 +00:00
|
|
|
#include <list>
|
2000-10-26 21:51:09 +00:00
|
|
|
|
|
|
|
#include <simgear/compiler.h>
|
2003-09-24 17:20:55 +00:00
|
|
|
#include <simgear/structure/subsystem_mgr.hxx>
|
2011-02-27 11:53:47 +00:00
|
|
|
#include <simgear/props/props.hxx>
|
2009-09-18 16:50:08 +00:00
|
|
|
#include <simgear/math/SGMath.hxx>
|
2000-10-26 21:51:09 +00:00
|
|
|
|
2009-09-18 16:50:08 +00:00
|
|
|
// forward decls
|
|
|
|
class FGViewer;
|
2009-10-05 09:12:50 +00:00
|
|
|
class SGSoundMgr;
|
2009-09-18 16:50:08 +00:00
|
|
|
typedef SGSharedPtr<FGViewer> FGViewerPtr;
|
2000-10-26 21:51:09 +00:00
|
|
|
|
|
|
|
// Define a structure containing view information
|
2003-09-24 17:20:55 +00:00
|
|
|
class FGViewMgr : public SGSubsystem
|
2002-03-14 00:29:20 +00:00
|
|
|
{
|
2000-10-26 21:51:09 +00:00
|
|
|
|
|
|
|
public:
|
|
|
|
|
|
|
|
// Constructor
|
|
|
|
FGViewMgr( void );
|
|
|
|
|
|
|
|
// Destructor
|
|
|
|
~FGViewMgr( void );
|
|
|
|
|
2002-03-14 00:29:20 +00:00
|
|
|
virtual void init ();
|
|
|
|
virtual void bind ();
|
|
|
|
virtual void unbind ();
|
2002-05-11 16:28:50 +00:00
|
|
|
virtual void update (double dt);
|
2003-02-06 19:44:32 +00:00
|
|
|
virtual void reinit ();
|
2002-03-14 00:29:20 +00:00
|
|
|
|
2000-10-26 21:51:09 +00:00
|
|
|
// getters
|
|
|
|
inline int size() const { return views.size(); }
|
2000-10-30 15:09:17 +00:00
|
|
|
inline int get_current() const { return current; }
|
2009-09-19 18:41:55 +00:00
|
|
|
|
|
|
|
FGViewer *get_current_view();
|
|
|
|
const FGViewer *get_current_view() const;
|
|
|
|
|
|
|
|
FGViewer *get_view( int i );
|
|
|
|
const FGViewer *get_view( int i ) const;
|
|
|
|
|
|
|
|
FGViewer *next_view();
|
|
|
|
FGViewer *prev_view();
|
|
|
|
|
2000-10-26 21:51:09 +00:00
|
|
|
// setters
|
2009-09-19 18:41:55 +00:00
|
|
|
void clear();
|
2010-10-22 11:22:00 +00:00
|
|
|
|
2009-09-18 16:50:08 +00:00
|
|
|
void add_view( FGViewer * v );
|
|
|
|
|
2002-03-14 00:29:20 +00:00
|
|
|
private:
|
2010-10-22 11:22:00 +00:00
|
|
|
void do_bind();
|
|
|
|
|
2009-11-05 09:18:27 +00:00
|
|
|
list<const char*> tied_props;
|
|
|
|
|
2002-03-14 00:29:20 +00:00
|
|
|
double axis_long;
|
|
|
|
double axis_lat;
|
|
|
|
|
|
|
|
void do_axes ();
|
|
|
|
|
2003-02-06 19:44:32 +00:00
|
|
|
// callbacks in manager to access viewer methods
|
|
|
|
double getViewHeadingOffset_deg () const;
|
|
|
|
void setViewHeadingOffset_deg (double offset);
|
|
|
|
double getViewGoalHeadingOffset_deg () const;
|
|
|
|
void setViewGoalHeadingOffset_deg (double offset);
|
|
|
|
double getViewPitchOffset_deg () const;
|
|
|
|
void setViewPitchOffset_deg (double tilt);
|
|
|
|
double getGoalViewPitchOffset_deg () const;
|
2004-03-19 03:30:18 +00:00
|
|
|
void setGoalViewRollOffset_deg (double tilt);
|
|
|
|
double getViewRollOffset_deg () const;
|
|
|
|
void setViewRollOffset_deg (double tilt);
|
|
|
|
double getGoalViewRollOffset_deg () const;
|
2003-02-06 19:44:32 +00:00
|
|
|
void setGoalViewPitchOffset_deg (double tilt);
|
|
|
|
double getViewXOffset_m () const;
|
|
|
|
void setViewXOffset_m (double x);
|
|
|
|
double getViewYOffset_m () const;
|
|
|
|
void setViewYOffset_m (double y);
|
|
|
|
double getViewZOffset_m () const;
|
|
|
|
void setViewZOffset_m (double z);
|
|
|
|
double getViewTargetXOffset_m () const;
|
|
|
|
void setViewTargetXOffset_m (double x);
|
|
|
|
double getViewTargetYOffset_m () const;
|
|
|
|
void setViewTargetYOffset_m (double y);
|
|
|
|
double getViewTargetZOffset_m () const;
|
|
|
|
void setViewTargetZOffset_m (double z);
|
2002-03-14 00:29:20 +00:00
|
|
|
double getFOV_deg () const;
|
|
|
|
void setFOV_deg (double fov);
|
2005-02-25 21:20:17 +00:00
|
|
|
double getARM_deg () const; // Aspect Ratio Multiplier
|
|
|
|
void setARM_deg (double fov);
|
2002-04-18 16:51:47 +00:00
|
|
|
double getNear_m () const;
|
|
|
|
void setNear_m (double near_m);
|
2002-03-14 00:29:20 +00:00
|
|
|
void setViewAxisLong (double axis);
|
|
|
|
void setViewAxisLat (double axis);
|
2003-02-06 19:44:32 +00:00
|
|
|
int getView () const;
|
|
|
|
void setView (int newview);
|
2009-11-11 13:35:58 +00:00
|
|
|
|
|
|
|
// quaternion accessors, for debugging:
|
|
|
|
double getCurrentViewOrientation_w() const;
|
|
|
|
double getCurrentViewOrientation_x() const;
|
|
|
|
double getCurrentViewOrientation_y() const;
|
|
|
|
double getCurrentViewOrientation_z() const;
|
|
|
|
double getCurrentViewOrOffset_w() const;
|
|
|
|
double getCurrentViewOrOffset_x() const;
|
|
|
|
double getCurrentViewOrOffset_y() const;
|
|
|
|
double getCurrentViewOrOffset_z() const;
|
|
|
|
double getCurrentViewFrame_w() const;
|
|
|
|
double getCurrentViewFrame_x() const;
|
|
|
|
double getCurrentViewFrame_y() const;
|
|
|
|
double getCurrentViewFrame_z() const;
|
2009-11-05 09:18:27 +00:00
|
|
|
|
2009-10-11 13:40:12 +00:00
|
|
|
bool stationary () const;
|
2002-03-14 00:29:20 +00:00
|
|
|
|
2010-10-22 11:22:00 +00:00
|
|
|
// copies current offset settings to current-view path...
|
|
|
|
void copyToCurrent ();
|
|
|
|
|
|
|
|
bool inited;
|
2007-06-11 19:02:01 +00:00
|
|
|
SGPropertyNode_ptr view_number;
|
2007-05-04 14:58:52 +00:00
|
|
|
vector<SGPropertyNode_ptr> config_list;
|
2009-09-18 16:50:08 +00:00
|
|
|
typedef std::vector<FGViewerPtr> viewer_list;
|
2002-03-14 00:29:20 +00:00
|
|
|
viewer_list views;
|
2008-12-19 13:37:54 +00:00
|
|
|
SGVec3d abs_viewer_position;
|
2002-03-14 00:29:20 +00:00
|
|
|
|
|
|
|
int current;
|
2009-11-05 09:18:27 +00:00
|
|
|
SGQuatd current_view_orientation, current_view_or_offset;
|
2002-03-14 00:29:20 +00:00
|
|
|
|
2009-10-05 09:12:50 +00:00
|
|
|
SGSoundMgr *smgr;
|
|
|
|
|
2000-10-26 21:51:09 +00:00
|
|
|
};
|
|
|
|
|
2009-11-08 13:41:03 +00:00
|
|
|
// This takes the conventional aviation XYZ body system
|
|
|
|
// i.e. x=forward, y=starboard, z=bottom
|
|
|
|
// which is widely used in FGFS
|
|
|
|
// and rotates it into the OpenGL camera system
|
|
|
|
// i.e. Xprime=starboard, Yprime=top, Zprime=aft.
|
2009-11-09 09:24:46 +00:00
|
|
|
inline const SGQuatd fsb2sta()
|
|
|
|
{
|
|
|
|
return SGQuatd(-0.5, -0.5, 0.5, 0.5);
|
|
|
|
}
|
2000-10-26 21:51:09 +00:00
|
|
|
|
|
|
|
#endif // _VIEWMGR_HXX
|