mirror of
https://github.com/ThePhD/sol2.git
synced 2024-03-22 13:10:44 +08:00
44 lines
982 B
C++
44 lines
982 B
C++
#define SOL_NO_EXCEPTIONS 1
|
|
#define SOL_SAFE_REFERENCES 1
|
|
#define SOL_SAFE_USERTYPE 1
|
|
#define SOL_SAFE_FUNCTION_CALLS 1
|
|
#define SOL_SAFE_FUNCTION 1
|
|
#define SOL_SAFE_NUMERICS 1
|
|
#define SOL_SAFE_GETTER 1
|
|
|
|
#include <sol/sol.hpp>
|
|
#include <iostream>
|
|
|
|
std::string testFunc(std::string str) {
|
|
return std::string("hello ") + str;
|
|
}
|
|
|
|
int main() {
|
|
sol::state lua;
|
|
lua.open_libraries(sol::lib::base);
|
|
|
|
lua["testFunc"] = &testFunc;
|
|
|
|
lua.script(R"(
|
|
function f ()
|
|
-- call a function with wrong arguments
|
|
-- to trigger lua_error
|
|
testFunc()
|
|
end
|
|
)");
|
|
|
|
sol::protected_function f(lua["f"]);
|
|
|
|
sol::protected_function_result result = f();
|
|
if (result.valid()) {
|
|
// Call succeeded
|
|
std::cout << "call succeeded" << std::endl;
|
|
}
|
|
else {
|
|
// Call failed
|
|
sol::error err = result;
|
|
std::string what = err.what();
|
|
std::cout << "call failed, sol::error::what() is " << what << std::endl;
|
|
}
|
|
}
|