]> git.mxchange.org Git - flightgear.git/blob - src/Canvas/FGCanvasSystemAdapter.cxx
Fix cursor hide timeout if hovering on canvas windows
[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 <Scripting/NasalSys.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     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   /**
102    * Get current FGNasalSys instance.
103    */
104   static FGNasalSys* getNasalSys()
105   {
106     static FGNasalSys* nasal_sys = 0;
107     // TODO if Nasal is able to be removed and/or recreated at runtime we need
108     //      to ensure that always the current instance is used
109     if( !nasal_sys )
110     {
111       nasal_sys = dynamic_cast<FGNasalSys*>(globals->get_subsystem("nasal"));
112       if( !nasal_sys )
113         throw std::runtime_error("FGCanvasSystemAdapter: no NasalSys");
114     }
115
116     return nasal_sys;
117   }
118
119   //----------------------------------------------------------------------------
120   naContext FGCanvasSystemAdapter::getNasalContext() const
121   {
122     return getNasalSys()->context();
123   }
124
125   //----------------------------------------------------------------------------
126   int FGCanvasSystemAdapter::gcSave(naRef r)
127   {
128     return getNasalSys()->gcSave(r);
129   }
130
131   //----------------------------------------------------------------------------
132   void FGCanvasSystemAdapter::gcRelease(int key)
133   {
134     getNasalSys()->gcRelease(key);
135   }
136
137   //------------------------------------------------------------------------------
138   naRef FGCanvasSystemAdapter::callMethod( naRef code,
139                                            naRef self,
140                                            int argc,
141                                            naRef* args,
142                                            naRef locals )
143   {
144     return getNasalSys()->callMethod(code, self, argc, args, locals);
145   }
146
147 }