1998-10-16 23:26:44 +00:00
|
|
|
// scenery.cxx -- 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-27 02:26:30 +00:00
|
|
|
|
|
|
|
|
1998-04-24 00:51:07 +00:00
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
# include <config.h>
|
|
|
|
#endif
|
1998-04-03 22:09:02 +00:00
|
|
|
|
|
|
|
#ifdef HAVE_WINDOWS_H
|
1997-07-16 20:04:42 +00:00
|
|
|
# include <windows.h>
|
|
|
|
#endif
|
|
|
|
|
1997-06-29 21:16:47 +00:00
|
|
|
#include <GL/glut.h>
|
2000-02-16 23:01:03 +00:00
|
|
|
#include <simgear/xgl/xgl.h>
|
1997-12-15 23:54:25 +00:00
|
|
|
|
1997-08-27 03:29:38 +00:00
|
|
|
#include <stdio.h>
|
1997-08-22 21:34:32 +00:00
|
|
|
#include <string.h>
|
|
|
|
|
2000-02-16 23:01:03 +00:00
|
|
|
#include <simgear/debug/logstream.hxx>
|
2000-02-15 03:30:01 +00:00
|
|
|
|
1998-06-17 21:36:39 +00:00
|
|
|
#include "scenery.hxx"
|
1997-06-29 21:16:47 +00:00
|
|
|
|
|
|
|
|
1998-10-16 23:26:44 +00:00
|
|
|
// Shared structure to hold current scenery parameters
|
1997-12-10 22:37:34 +00:00
|
|
|
struct 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 ) {
|
1998-11-06 21:17:31 +00:00
|
|
|
FG_LOG( FG_TERRAIN, FG_INFO, "Initializing scenery subsystem" );
|
1997-12-30 20:47:34 +00:00
|
|
|
|
1998-07-12 03:18:27 +00:00
|
|
|
scenery.cur_elev = -9999;
|
1998-03-14 00:30:50 +00:00
|
|
|
|
2000-07-23 21:32:59 +00:00
|
|
|
return 1;
|
1997-06-27 02:26:30 +00:00
|
|
|
}
|