2017-08-25 02:39:02 +08:00
|
|
|
#define SOL_CHECK_ARGUMENTS 1
|
2016-09-09 19:48:28 +08:00
|
|
|
#include <sol.hpp>
|
2017-04-03 04:10:00 +08:00
|
|
|
|
2017-09-25 04:36:45 +08:00
|
|
|
#include <iostream>
|
2018-02-11 05:24:17 +08:00
|
|
|
#include "../../assert.hpp"
|
2016-09-09 19:48:28 +08:00
|
|
|
|
|
|
|
int main() {
|
2018-03-16 05:16:28 +08:00
|
|
|
std::cout << "=== namespacing ===" << std::endl;
|
2017-09-25 04:36:45 +08:00
|
|
|
|
2016-09-09 19:48:28 +08:00
|
|
|
struct my_class {
|
|
|
|
int b = 24;
|
|
|
|
|
|
|
|
int f() const {
|
|
|
|
return 24;
|
|
|
|
}
|
|
|
|
|
|
|
|
void g() {
|
|
|
|
++b;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
sol::state lua;
|
|
|
|
lua.open_libraries();
|
|
|
|
|
2017-09-25 04:36:45 +08:00
|
|
|
// "bark" namespacing in Lua
|
|
|
|
// namespacing is just putting things in a table
|
2016-09-09 19:48:28 +08:00
|
|
|
sol::table bark = lua.create_named_table("bark");
|
|
|
|
bark.new_usertype<my_class>("my_class",
|
|
|
|
"f", &my_class::f,
|
2017-09-25 04:36:45 +08:00
|
|
|
"g", &my_class::g); // the usual
|
|
|
|
|
|
|
|
// can add functions, as well (just like the global table)
|
|
|
|
bark.set_function("print_my_class", [](my_class& self) { std::cout << "my_class { b: " << self.b << " }" << std::endl; });
|
2016-09-09 19:48:28 +08:00
|
|
|
|
2017-09-25 04:36:45 +08:00
|
|
|
// this works
|
|
|
|
lua.script("obj = bark.my_class.new()");
|
2016-09-09 19:48:28 +08:00
|
|
|
lua.script("obj:g()");
|
2017-09-25 04:36:45 +08:00
|
|
|
|
|
|
|
// calling this function also works
|
|
|
|
lua.script("bark.print_my_class(obj)");
|
2016-09-09 19:48:28 +08:00
|
|
|
my_class& obj = lua["obj"];
|
2017-12-26 12:27:22 +08:00
|
|
|
c_assert(obj.b == 25);
|
2016-09-09 19:48:28 +08:00
|
|
|
|
2017-09-25 04:36:45 +08:00
|
|
|
std::cout << std::endl;
|
|
|
|
|
2016-09-09 19:48:28 +08:00
|
|
|
return 0;
|
|
|
|
}
|