]> git.mxchange.org Git - simgear.git/blob - simgear/nasal/cppbind/to_nasal.hxx
Missing file...
[simgear.git] / simgear / nasal / cppbind / to_nasal.hxx
1 ///@file
2 /// Conversion functions to convert C++ types to Nasal types
3 ///
4 // Copyright (C) 2012  Thomas Geymayer <tomgey@gmail.com>
5 //
6 // This library is free software; you can redistribute it and/or
7 // modify it under the terms of the GNU Library General Public
8 // License as published by the Free Software Foundation; either
9 // version 2 of the License, or (at your option) any later version.
10 //
11 // This library is distributed in the hope that it will be useful,
12 // but WITHOUT ANY WARRANTY; without even the implied warranty of
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14 // Library General Public License for more details.
15 //
16 // You should have received a copy of the GNU Library General Public
17 // License along with this library; if not, write to the Free Software
18 // Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301, USA
19
20 #ifndef SG_TO_NASAL_HXX_
21 #define SG_TO_NASAL_HXX_
22
23 #include "nasal_traits.hxx"
24
25 #include <simgear/nasal/nasal.h>
26
27 #include <boost/utility/enable_if.hpp>
28 #include <boost/type_traits.hpp>
29
30 #include <string>
31 #include <vector>
32
33 namespace nasal
34 {
35   class Hash;
36
37   /**
38    * Convert std::string to Nasal string
39    */
40   naRef to_nasal(naContext c, const std::string& str);
41
42   /**
43    * Convert C-string to Nasal string
44    */
45   // We need this to prevent the array overload of to_nasal being called
46   naRef to_nasal(naContext c, const char* str);
47
48   /**
49    * Convert function pointer to Nasal function
50    */
51   naRef to_nasal(naContext c, naCFunction func);
52
53   /**
54    * Convert a nasal::Hash to a Nasal hash
55    */
56   naRef to_nasal(naContext c, const Hash& hash);
57
58   /**
59    * Simple pass-through of naRef types to allow generic usage of to_nasal
60    */
61   naRef to_nasal(naContext c, naRef ref);
62
63   /**
64    * Convert a numeric type to Nasal number
65    */
66   template<class T>
67   typename boost::enable_if< boost::is_arithmetic<T>, naRef >::type
68   to_nasal(naContext c, T num)
69   {
70     return naNum(num);
71   }
72
73   /**
74    * Convert a fixed size array to a Nasal vector
75    */
76   template<class T, size_t N>
77   naRef to_nasal(naContext c, const T(&array)[N])
78   {
79     naRef ret = naNewVector(c);
80     naVec_setsize(c, ret, N);
81     for(size_t i = 0; i < N; ++i)
82       naVec_set(ret, i, to_nasal(c, array[i]));
83     return ret;
84   }
85
86   /**
87    * Convert std::vector to Nasal vector
88    */
89   template< template<class T, class Alloc> class Vector,
90             class T,
91             class Alloc
92           >
93   typename boost::enable_if< boost::is_same< Vector<T,Alloc>,
94                                              std::vector<T,Alloc>
95                                            >,
96                              naRef
97                            >::type
98   to_nasal(naContext c, const Vector<T, Alloc>& vec)
99   {
100     naRef ret = naNewVector(c);
101     naVec_setsize(c, ret, vec.size());
102     for(size_t i = 0; i < vec.size(); ++i)
103       naVec_set(ret, i, to_nasal(c, vec[i]));
104     return ret;
105   }
106
107   /**
108    * Convert a 2d vector to Nasal vector with 2 elements
109    */
110   template<class Vec2>
111   typename boost::enable_if<is_vec2<Vec2>, naRef>::type
112   to_nasal(naContext c, const Vec2& vec)
113   {
114     // We take just double because in Nasal every number is represented as
115     // double
116     double nasal_vec[2] = {vec[0], vec[1]};
117     return to_nasal(c, nasal_vec);
118   }
119
120 } // namespace nasal
121
122 #endif /* SG_TO_NASAL_HXX_ */