1998-10-16 23:26:44 +00:00
|
|
|
// scenery.hxx -- data structures and routines for managing scenery.
|
|
|
|
//
|
|
|
|
// Written by Curtis Olson, started May 1997.
|
|
|
|
//
|
|
|
|
// Copyright (C) 1997 Curtis L. Olson - curt@infoplane.com
|
|
|
|
//
|
|
|
|
// 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$
|
1997-06-21 17:57:21 +00:00
|
|
|
|
|
|
|
|
1998-04-30 12:35:26 +00:00
|
|
|
#ifndef _SCENERY_HXX
|
|
|
|
#define _SCENERY_HXX
|
1997-06-21 17:57:21 +00:00
|
|
|
|
|
|
|
|
1998-04-30 12:35:26 +00:00
|
|
|
#ifndef __cplusplus
|
|
|
|
# error This library requires C++
|
|
|
|
#endif
|
1998-04-22 13:21:26 +00:00
|
|
|
|
|
|
|
|
2000-06-15 22:32:26 +00:00
|
|
|
#include <plib/sg.h>
|
2000-02-16 23:01:03 +00:00
|
|
|
#include <simgear/math/point3d.hxx>
|
1998-04-21 17:02:27 +00:00
|
|
|
|
2001-10-28 16:16:30 +00:00
|
|
|
#include <Main/fgfs.hxx>
|
|
|
|
|
1998-04-21 17:02:27 +00:00
|
|
|
|
1998-10-16 23:26:44 +00:00
|
|
|
// Define a structure containing global scenery parameters
|
2001-10-28 16:16:30 +00:00
|
|
|
class FGScenery : public FGSubsystem {
|
1998-10-16 23:26:44 +00:00
|
|
|
// center of current scenery chunk
|
1998-10-16 00:51:46 +00:00
|
|
|
Point3D center;
|
1997-09-04 02:17:18 +00:00
|
|
|
|
1998-10-16 23:26:44 +00:00
|
|
|
// next center of current scenery chunk
|
1998-10-16 00:51:46 +00:00
|
|
|
Point3D next_center;
|
1998-02-20 00:16:14 +00:00
|
|
|
|
1998-10-16 23:26:44 +00:00
|
|
|
// angle of sun relative to current local horizontal
|
1997-09-04 02:17:18 +00:00
|
|
|
double sun_angle;
|
1998-07-12 03:18:27 +00:00
|
|
|
|
|
|
|
// elevation of terrain at our current lat/lon (based on the
|
|
|
|
// actual drawn polygons)
|
|
|
|
double cur_elev;
|
2000-05-15 18:19:17 +00:00
|
|
|
|
|
|
|
// the distance (radius) from the center of the earth to the
|
|
|
|
// current scenery elevation point
|
|
|
|
double cur_radius;
|
2000-06-15 22:32:26 +00:00
|
|
|
|
|
|
|
// unit normal at point used to determine current elevation
|
|
|
|
sgdVec3 cur_normal;
|
2001-10-28 16:16:30 +00:00
|
|
|
|
|
|
|
public:
|
|
|
|
|
|
|
|
FGScenery();
|
|
|
|
~FGScenery();
|
|
|
|
|
|
|
|
// Implementation of FGSubsystem.
|
|
|
|
void init ();
|
|
|
|
void bind ();
|
|
|
|
void unbind ();
|
|
|
|
void update ();
|
|
|
|
|
|
|
|
inline double get_cur_elev() const { return cur_elev; }
|
|
|
|
inline void set_cur_elev( double e ) { cur_elev = e; }
|
|
|
|
|
|
|
|
inline Point3D get_center() const { return center; }
|
|
|
|
inline void set_center( Point3D p ) { center = p; }
|
|
|
|
|
|
|
|
inline Point3D get_next_center() const { return next_center; }
|
|
|
|
inline void set_next_center( Point3D p ) { next_center = p; }
|
|
|
|
|
|
|
|
inline void set_cur_radius( double r ) { cur_radius = r; }
|
|
|
|
inline void set_cur_normal( sgdVec3 n ) { sgdCopyVec3( cur_normal, n ); }
|
1997-07-11 01:29:58 +00:00
|
|
|
};
|
|
|
|
|
2001-10-28 16:16:30 +00:00
|
|
|
|
|
|
|
extern FGScenery scenery;
|
1997-07-11 01:29:58 +00:00
|
|
|
|
|
|
|
|
1998-10-16 23:26:44 +00:00
|
|
|
// Initialize the Scenery Management system
|
1998-03-14 00:30:50 +00:00
|
|
|
int fgSceneryInit( void );
|
1997-06-26 22:14:53 +00:00
|
|
|
|
1997-07-23 21:52:10 +00:00
|
|
|
|
1998-10-16 23:26:44 +00:00
|
|
|
#endif // _SCENERY_HXX
|
|
|
|
|
|
|
|
|