]> git.mxchange.org Git - flightgear.git/blob - src/Canvas/FGCanvasSystemAdapter.cxx
Reset work, fix time-slew on OSG event handling.
[flightgear.git] / src / Canvas / FGCanvasSystemAdapter.cxx
1 // Integrate Canvas into FlightGear
2 //
3 // Copyright (C) 2012  Thomas Geymayer <tomgey@gmail.com>
4 //
5 // This program is free software; you can redistribute it and/or
6 // modify it under the terms of the GNU General Public License as
7 // published by the Free Software Foundation; either version 2 of the
8 // License, or (at your option) any later version.
9 //
10 // This program is distributed in the hope that it will be useful, but
11 // WITHOUT ANY WARRANTY; without even the implied warranty of
12 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13 // General Public License for more details.
14 //
15 // You should have received a copy of the GNU General Public License
16 // along with this program; if not, write to the Free Software
17 // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
18
19 #include "FGCanvasSystemAdapter.hxx"
20
21 #include <Main/globals.hxx>
22 #include <Main/util.hxx>
23 #include <Viewer/renderer.hxx>
24
25 #include <osgDB/ReadFile>
26 #include <stdexcept>
27
28 namespace canvas
29 {
30   //----------------------------------------------------------------------------
31   simgear::canvas::FontPtr
32   FGCanvasSystemAdapter::getFont(const std::string& name) const
33   {
34     SGPath path = globals->resolve_resource_path("Fonts/" + name);
35     if( path.isNull() )
36     {
37       SG_LOG
38       (
39         SG_GL,
40         SG_ALERT,
41         "canvas::Text: No such font: " << name
42       );
43       return simgear::canvas::FontPtr();
44     }
45
46     SG_LOG
47     (
48       SG_GL,
49       SG_INFO,
50       "canvas::Text: using font file " << path.str()
51     );
52
53     simgear::canvas::FontPtr font = osgText::readFontFile(path.c_str());
54     if( !font )
55       SG_LOG
56       (
57         SG_GL,
58         SG_ALERT,
59         "canvas::Text: Failed to open font file " << path.c_str()
60       );
61
62     return font;
63   }
64
65   //----------------------------------------------------------------------------
66   void FGCanvasSystemAdapter::addCamera(osg::Camera* camera) const
67   {
68     globals->get_renderer()->addCamera(camera, false);
69   }
70
71   //----------------------------------------------------------------------------
72   void FGCanvasSystemAdapter::removeCamera(osg::Camera* camera) const
73   {
74     if( globals->get_renderer() )
75       globals->get_renderer()->removeCamera(camera);
76   }
77
78   //----------------------------------------------------------------------------
79   osg::Image* FGCanvasSystemAdapter::getImage(const std::string& path) const
80   {
81     if( SGPath(path).isAbsolute() )
82     {
83       const char* valid_path = fgValidatePath(path.c_str(), false);
84       if( valid_path )
85         return osgDB::readImageFile(valid_path);
86
87       SG_LOG(SG_IO, SG_ALERT, "canvas::Image: reading '" << path << "' denied");
88     }
89     else
90     {
91       SGPath tpath = globals->resolve_resource_path(path);
92       if( !tpath.isNull() )
93         return osgDB::readImageFile(tpath.c_str());
94
95       SG_LOG(SG_IO, SG_ALERT, "canvas::Image: No such image: '" << path << "'");
96     }
97
98     return 0;
99   }
100
101 }