2019-05-21 19:17:31 -04:00
|
|
|
#define SOL_ALL_SAFETIES_ON 1
|
2018-09-27 22:27:38 -07:00
|
|
|
#include <sol/sol.hpp>
|
2017-08-05 19:20:28 -04:00
|
|
|
|
2017-12-25 23:27:22 -05:00
|
|
|
#include "assert.hpp"
|
2017-08-05 19:20:28 -04:00
|
|
|
#include <iostream>
|
|
|
|
|
|
|
|
struct object {
|
|
|
|
int value = 0;
|
|
|
|
};
|
|
|
|
|
|
|
|
int main(int, char*[]) {
|
2018-03-15 17:16:28 -04:00
|
|
|
std::cout << "=== runtime_additions ===" << std::endl;
|
2017-08-05 19:20:28 -04:00
|
|
|
|
|
|
|
sol::state lua;
|
|
|
|
lua.open_libraries(sol::lib::base);
|
|
|
|
|
|
|
|
lua.new_usertype<object>("object");
|
|
|
|
|
|
|
|
// runtime additions: through the sol API
|
|
|
|
lua["object"]["func"] = [](object& o) {
|
|
|
|
++o.value;
|
|
|
|
return o.value;
|
|
|
|
};
|
|
|
|
// runtime additions: through a lua script
|
|
|
|
lua.script(R"(
|
|
|
|
function object:print ()
|
|
|
|
print(self:func())
|
|
|
|
end
|
|
|
|
)");
|
|
|
|
|
|
|
|
// see it work
|
|
|
|
lua.script(R"(
|
|
|
|
obj = object.new()
|
|
|
|
obj:print()
|
|
|
|
)");
|
|
|
|
|
|
|
|
object& obj = lua["obj"];
|
2017-12-25 23:27:22 -05:00
|
|
|
c_assert(obj.value == 1);
|
2017-08-05 19:20:28 -04:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|