sol2/examples/overloading_with_members.cpp
ThePhD 6c40c559e3 prepare for new usertype
change how type T is gleaned from destructors and constructors in case of new syntax
add a hell of a lot more examples, update and clean documentation
2018-03-15 17:16:28 -04:00

66 lines
1.3 KiB
C++

#define SOL_CHECK_ARGUMENTS 1
#include <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;
}