2019-05-22 07:17:31 +08:00
|
|
|
#define SOL_ALL_SAFETIES_ON 1
|
2018-09-28 13:27:38 +08:00
|
|
|
#include <sol/sol.hpp>
|
2018-02-25 06:19:16 +08:00
|
|
|
#include <iostream>
|
|
|
|
|
|
|
|
inline void my_panic(sol::optional<std::string> maybe_msg) {
|
2021-03-06 23:14:48 +08:00
|
|
|
std::cerr << "Lua is in a panic state and will now abort() "
|
|
|
|
"the application"
|
|
|
|
<< std::endl;
|
2018-02-25 06:19:16 +08:00
|
|
|
if (maybe_msg) {
|
|
|
|
const std::string& msg = maybe_msg.value();
|
|
|
|
std::cerr << "\terror message: " << msg << std::endl;
|
|
|
|
}
|
2021-03-06 23:14:48 +08:00
|
|
|
// When this function exits, Lua will exhibit default
|
|
|
|
// behavior and abort()
|
2018-02-25 06:19:16 +08:00
|
|
|
}
|
|
|
|
|
2021-03-06 14:03:23 +08:00
|
|
|
int main(int, char*[]) {
|
2018-02-25 06:19:16 +08:00
|
|
|
sol::state lua(sol::c_call<decltype(&my_panic), &my_panic>);
|
|
|
|
// or, if you already have a lua_State* L
|
2021-03-06 23:14:48 +08:00
|
|
|
// lua_atpanic( L, sol::c_call<decltype(&my_panic),
|
|
|
|
// &my_panic> ); or, with state/state_view: sol::state_view
|
|
|
|
// lua(L); lua.set_panic( sol::c_call<decltype(&my_panic),
|
|
|
|
// &my_panic> );
|
2018-02-25 06:19:16 +08:00
|
|
|
|
|
|
|
// uncomment the below to see
|
2021-03-06 14:03:23 +08:00
|
|
|
// lua.script("boom_goes.the_dynamite");
|
2018-02-25 06:19:16 +08:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|