aboutsummaryrefslogtreecommitdiffstats
path: root/deps/sol2/examples/source/overloading_with_members.cpp
diff options
context:
space:
mode:
authorAndy Belle-Isle <drumsetmonkey@gmail.com>2019-08-30 00:19:31 -0400
committerAndy Belle-Isle <drumsetmonkey@gmail.com>2019-08-30 00:19:31 -0400
commitbd3fe0cac583739bc0d7c4b5c8f301bb350abca0 (patch)
tree7eeb1aabcebd6999de1c3457d0882246ec0ff4d4 /deps/sol2/examples/source/overloading_with_members.cpp
parent2662ac356ce14dacfbc91689fd37244facff4989 (diff)
Renamed lib to deps so github will ignore it for language stats
Diffstat (limited to 'deps/sol2/examples/source/overloading_with_members.cpp')
-rw-r--r--deps/sol2/examples/source/overloading_with_members.cpp66
1 files changed, 66 insertions, 0 deletions
diff --git a/deps/sol2/examples/source/overloading_with_members.cpp b/deps/sol2/examples/source/overloading_with_members.cpp
new file mode 100644
index 0000000..92f1260
--- /dev/null
+++ b/deps/sol2/examples/source/overloading_with_members.cpp
@@ -0,0 +1,66 @@
+#define SOL_ALL_SAFETIES_ON 1
+#include <sol/sol.hpp>
+
+#include "assert.hpp"
+
+#include <iostream>
+
+struct pup {
+ int barks = 0;
+
+ void bark () {
+ ++barks; // bark!
+ }
+
+ bool is_cute () const {
+ return true;
+ }
+};
+
+void ultra_bark( pup& p, int barks) {
+ for (; barks --> 0;) p.bark();
+}
+
+void picky_bark( pup& p, std::string s) {
+ if ( s == "bark" )
+ p.bark();
+}
+
+int main () {
+ std::cout << "=== overloading with members ===" << std::endl;
+
+ sol::state lua;
+ lua.open_libraries(sol::lib::base);
+
+ lua.set_function( "bark", sol::overload(
+ ultra_bark,
+ []() { return "the bark from nowhere"; }
+ ) );
+
+ lua.new_usertype<pup>( "pup",
+ // regular function
+ "is_cute", &pup::is_cute,
+ // overloaded function
+ "bark", sol::overload( &pup::bark, &picky_bark )
+ );
+
+ const auto& code = R"(
+ barker = pup.new()
+ print(barker:is_cute())
+ barker:bark() -- calls member function pup::bark
+ barker:bark("meow") -- picky_bark, no bark
+ barker:bark("bark") -- picky_bark, bark
+
+ bark(barker, 20) -- calls ultra_bark
+ print(bark()) -- calls lambda which returns that string
+ )";
+
+ lua.script(code);
+
+ pup& barker = lua["barker"];
+ std::cout << barker.barks << std::endl;
+ c_assert(barker.barks == 22);
+
+ std::cout << std::endl;
+ return 0;
+} \ No newline at end of file