mirror of
https://github.com/ThePhD/sol2.git
synced 2024-03-22 13:10:44 +08:00
6c40c559e3
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
36 lines
700 B
C++
36 lines
700 B
C++
#define SOL_CHECK_ARGUMENTS 1
|
|
#include <sol.hpp>
|
|
|
|
#include <iostream>
|
|
|
|
int main() {
|
|
std::cout << "=== self_call ===" << std::endl;
|
|
|
|
sol::state lua;
|
|
lua.open_libraries(sol::lib::base, sol::lib::package, sol::lib::table);
|
|
|
|
// a small script using 'self' syntax
|
|
lua.script(R"(
|
|
some_table = { some_val = 100 }
|
|
|
|
function some_table:add_to_some_val(value)
|
|
self.some_val = self.some_val + value
|
|
end
|
|
|
|
function print_some_val()
|
|
print("some_table.some_val = " .. some_table.some_val)
|
|
end
|
|
)");
|
|
|
|
// do some printing
|
|
lua["print_some_val"]();
|
|
// 100
|
|
|
|
sol::table self = lua["some_table"];
|
|
self["add_to_some_val"](self, 10);
|
|
lua["print_some_val"]();
|
|
|
|
std::cout << std::endl;
|
|
|
|
return 0;
|
|
} |