]> git.mxchange.org Git - flightgear.git/blob - src/Canvas/FGCanvasSystemAdapter.cxx
894ca0bdc6b213d312ad196f3da9e0f89644a95f
[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 <Network/HTTPClient.hxx>
24 #include <Viewer/renderer.hxx>
25
26 #include <osgDB/ReadFile>
27 #include <stdexcept>
28
29 namespace canvas
30 {
31   //----------------------------------------------------------------------------
32   simgear::canvas::FontPtr
33   FGCanvasSystemAdapter::getFont(const std::string& name) const
34   {
35     SGPath path = globals->resolve_resource_path("Fonts/" + name);
36     if( path.isNull() )
37     {
38       SG_LOG
39       (
40         SG_GL,
41         SG_ALERT,
42         "canvas::Text: No such font: " << name
43       );
44       return simgear::canvas::FontPtr();
45     }
46
47     SG_LOG
48     (
49       SG_GL,
50       SG_INFO,
51       "canvas::Text: using font file " << path.str()
52     );
53
54     simgear::canvas::FontPtr font = osgText::readFontFile(path.c_str());
55     if( !font )
56       SG_LOG
57       (
58         SG_GL,
59         SG_ALERT,
60         "canvas::Text: Failed to open font file " << path.c_str()
61       );
62
63     return font;
64   }
65
66   //----------------------------------------------------------------------------
67   void FGCanvasSystemAdapter::addCamera(osg::Camera* camera) const
68   {
69     globals->get_renderer()->addCamera(camera, false);
70   }
71
72   //----------------------------------------------------------------------------
73   void FGCanvasSystemAdapter::removeCamera(osg::Camera* camera) const
74   {
75     if( globals->get_renderer() )
76       globals->get_renderer()->removeCamera(camera);
77   }
78
79   //----------------------------------------------------------------------------
80   osg::ref_ptr<osg::Image> FGCanvasSystemAdapter::getImage(const std::string& path) const
81   {
82     if( SGPath(path).isAbsolute() )
83     {
84       std::string valid_path = fgValidatePath(path, false);
85       if( !valid_path.empty() )
86         return osgDB::readImageFile(valid_path.c_str());
87
88       SG_LOG(SG_IO, SG_ALERT, "canvas::Image: reading '" << path << "' denied");
89     }
90     else
91     {
92       SGPath tpath = globals->resolve_resource_path(path);
93       if( !tpath.isNull() )
94         return osgDB::readRefImageFile(tpath.c_str());
95
96       SG_LOG(SG_IO, SG_ALERT, "canvas::Image: No such image: '" << path << "'");
97     }
98
99     return 0;
100   }
101
102   //----------------------------------------------------------------------------
103   SGSubsystem*
104   FGCanvasSystemAdapter::getSubsystem(const std::string& name) const
105   {
106     return globals->get_subsystem(name.c_str());
107   }
108
109   //----------------------------------------------------------------------------
110   simgear::HTTP::Client* FGCanvasSystemAdapter::getHTTPClient() const
111   {
112     FGHTTPClient* http = globals->get_subsystem<FGHTTPClient>();
113
114     if( http )
115       return http->client();
116
117     SG_LOG( SG_IO,
118             SG_ALERT,
119             "FGCanvasSystemAdapter: Failed to get HTTP subsystem" );
120     return 0;
121   }
122
123 }