]> git.mxchange.org Git - flightgear.git/blobdiff - src/Scenery/scenery.cxx
Make sure pu.h doesn't include glut by accident.
[flightgear.git] / src / Scenery / scenery.cxx
index b5a4406f0abf62202f4ba5539a6f6bcc0dbef6bb..88435c10cd7dc72a6677c388232e3a841f95e970 100644 (file)
 #  include <config.h>
 #endif
 
-#ifdef HAVE_WINDOWS_H
-#  include <windows.h>
-#endif
-
-#include <GL/glut.h>
-#include <GL/gl.h>
-
 #include <stdio.h>
 #include <string.h>
 
 #include <simgear/debug/logstream.hxx>
+#include <simgear/scene/tgdb/userdata.hxx>
+
+#include <Main/fg_props.hxx>
 
 #include "scenery.hxx"
 
 
-// Shared structure to hold current scenery parameters
-struct fgSCENERY scenery;
+// Scenery Management system
+FGScenery::FGScenery() {
+    SG_LOG( SG_TERRAIN, SG_INFO, "Initializing scenery subsystem" );
+
+    center = Point3D(0.0);
+    cur_elev = -9999;
+}
 
 
 // Initialize the Scenery Management system
-int fgSceneryInit( void ) {
-    SG_LOG( SG_TERRAIN, SG_INFO, "Initializing scenery subsystem" );
+FGScenery::~FGScenery() {
+}
+
+
+void FGScenery::init() {
+    // Scene graph root
+    scene_graph = new ssgRoot;
+    scene_graph->setName( "Scene" );
+
+    // Terrain branch
+    terrain_branch = new ssgBranch;
+    terrain_branch->setName( "Terrain" );
+    scene_graph->addKid( terrain_branch );
+
+    models_branch = new ssgBranch;
+    models_branch->setName( "Models" );
+    scene_graph->addKid( models_branch );
+
+    aircraft_branch = new ssgBranch;
+    aircraft_branch->setName( "Aircraft" );
+    scene_graph->addKid( aircraft_branch );
+
+    // Lighting
+    gnd_lights_root = new ssgRoot;
+    gnd_lights_root->setName( "Ground Lighting Root" );
+
+    vasi_lights_root = new ssgRoot;
+    vasi_lights_root->setName( "VASI/PAPI Lighting Root" );
+
+    rwy_lights_root = new ssgRoot;
+    rwy_lights_root->setName( "Runway Lighting Root" );
+
+    taxi_lights_root = new ssgRoot;
+    taxi_lights_root->setName( "Taxi Lighting Root" );
+
+    // Initials values needed by the draw-time object loader
+    sgUserDataInit( globals->get_model_lib(), globals->get_fg_root(),
+                    globals->get_props(), globals->get_sim_time_sec() );
+}
+
+
+void FGScenery::update(double dt) {
+}
+
+
+void FGScenery::bind() {
+    fgTie("/environment/ground-elevation-m", this,
+         &FGScenery::get_cur_elev, &FGScenery::set_cur_elev);
+}
 
-    scenery.center = Point3D(0.0);
-    scenery.cur_elev = -9999;
 
-    return 1;
+void FGScenery::unbind() {
+    fgUntie("/environment/ground-elevation-m");
 }