]> git.mxchange.org Git - simgear.git/blob - simgear/scene/tgdb/ReaderWriterSTG.cxx
Merge branch 'jmt/ref_ptr-conv'
[simgear.git] / simgear / scene / tgdb / ReaderWriterSTG.cxx
1 // tileentry.cxx -- routines to handle a scenery tile
2 //
3 // Written by Curtis Olson, started May 1998.
4 //
5 // Copyright (C) 1998 - 2001  Curtis L. Olson  - http://www.flightgear.org/~curt
6 //
7 // This program is free software; you can redistribute it and/or
8 // modify it under the terms of the GNU General Public License as
9 // published by the Free Software Foundation; either version 2 of the
10 // License, or (at your option) any later version.
11 //
12 // This program is distributed in the hope that it will be useful, but
13 // WITHOUT ANY WARRANTY; without even the implied warranty of
14 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15 // General Public License for more details.
16 //
17 // You should have received a copy of the GNU General Public License
18 // along with this program; if not, write to the Free Software
19 // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
20 //
21
22 #ifdef HAVE_CONFIG_H
23 #  include <simgear_config.h>
24 #endif
25
26 #include <simgear/scene/model/ModelRegistry.hxx>
27
28 #include <osgDB/Registry>
29 #include <osgDB/FileNameUtils>
30
31 #include "TileEntry.hxx"
32 #include "ReaderWriterSTG.hxx"
33
34 using namespace simgear;
35
36 ReaderWriterSTG::ReaderWriterSTG()
37 {
38     supportsExtension("stg", "SimGear stg database format");
39 }
40
41 ReaderWriterSTG::~ReaderWriterSTG()
42 {
43 }
44
45 const char* ReaderWriterSTG::className() const
46 {
47     return "STG Database reader";
48 }
49
50 //#define SLOW_PAGER 1
51 #ifdef SLOW_PAGER
52 #include <unistd.h>
53 #endif
54
55 osgDB::ReaderWriter::ReadResult
56 ReaderWriterSTG::readNode(const std::string& fileName,
57                           const osgDB::ReaderWriter::Options* options) const
58 {
59     osg::Node* result = TileEntry::loadTileByFileName(fileName, options);
60     // For debugging race conditions
61 #ifdef SLOW_PAGER
62     sleep(5);
63 #endif
64     if (result)
65         return result;
66     else
67         return ReadResult::FILE_NOT_HANDLED;
68 }
69