]> git.mxchange.org Git - simgear.git/blob - simgear/nasal/cppbind/from_nasal.cxx
First working version of DOM like Canvas event handling
[simgear.git] / simgear / nasal / cppbind / from_nasal.cxx
1 // Conversion functions to convert Nasal types to C++ types
2 //
3 // Copyright (C) 2012  Thomas Geymayer <tomgey@gmail.com>
4 //
5 // This library is free software; you can redistribute it and/or
6 // modify it under the terms of the GNU Library General Public
7 // License as published by the Free Software Foundation; either
8 // version 2 of the License, or (at your option) any later version.
9 //
10 // This library is distributed in the hope that it will be useful,
11 // but WITHOUT ANY WARRANTY; without even the implied warranty of
12 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13 // Library General Public License for more details.
14 //
15 // You should have received a copy of the GNU Library General Public
16 // License along with this library; if not, write to the Free Software
17 // Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301, USA
18
19 #include "from_nasal_detail.hxx"
20 #include "NasalHash.hxx"
21
22 namespace nasal
23 {
24   //----------------------------------------------------------------------------
25   bad_nasal_cast::bad_nasal_cast()
26   {
27
28   }
29
30   //----------------------------------------------------------------------------
31   bad_nasal_cast::bad_nasal_cast(const std::string& msg):
32    _msg( msg )
33   {
34
35   }
36
37   //----------------------------------------------------------------------------
38   bad_nasal_cast::~bad_nasal_cast() throw()
39   {
40
41   }
42
43   //----------------------------------------------------------------------------
44   const char* bad_nasal_cast::what() const throw()
45   {
46     return _msg.empty() ? bad_cast::what() : _msg.c_str();
47   }
48
49   //----------------------------------------------------------------------------
50   std::string from_nasal_helper(naContext c, naRef ref, std::string*)
51   {
52     naRef na_str = naStringValue(c, ref);
53     return std::string(naStr_data(na_str), naStr_len(na_str));
54   }
55
56   //----------------------------------------------------------------------------
57   Hash from_nasal_helper(naContext c, naRef ref, Hash*)
58   {
59     if( !naIsHash(ref) )
60       throw bad_nasal_cast("Not a hash");
61
62     return Hash(ref, c);
63   }
64
65 } // namespace nasal