mirror of
https://github.com/ThePhD/sol2.git
synced 2024-03-22 13:10:44 +08:00
85 lines
3.9 KiB
ReStructuredText
85 lines
3.9 KiB
ReStructuredText
function
|
|
========
|
|
calling functions bound to Lua
|
|
------------------------------
|
|
|
|
.. code-block:: cpp
|
|
|
|
class function : public reference;
|
|
|
|
Function is a correct-assuming version of :doc:`protected_function<protected_function>`, omitting the need for typechecks and error handling. It is the default function type of Sol. Grab a function directly off the stack using the constructor:
|
|
|
|
.. code-block:: cpp
|
|
:caption: constructor: function
|
|
|
|
function(lua_State* L, int index = -1);
|
|
|
|
|
|
When called without the return types being specified by either a ``sol::types<...>`` list or a ``call<Ret...>( ... )`` template type list, it generates a :ref:`function_result<function-result>` class that gets implicitly converted to the requested return type. For example:
|
|
|
|
.. code-block:: lua
|
|
:caption: func_barks.lua
|
|
:linenos:
|
|
|
|
bark_power = 11;
|
|
|
|
function woof ( bark_energy )
|
|
return (bark_energy * (bark_power / 4))
|
|
end
|
|
|
|
The following C++ code will call this function from this file and retrieve the return value:
|
|
|
|
.. code-block:: cpp
|
|
:linenos:
|
|
|
|
sol::state lua;
|
|
|
|
lua.script_file( "func_barks.lua" );
|
|
|
|
sol::function woof = lua["woof"];
|
|
double numwoof = woof(20);
|
|
|
|
The call ``woof(20)`` generates a :ref:`function_result<function-result>`, which is then implicitly converted to an ``double`` after being called. The intermediate temporary ``function_result`` is then destructed, popping the Lua function call results off the Lua stack.
|
|
|
|
You can also return multiple values by using std::tuple, or if you need to bind them to pre-existing variables use ``sol::bond``:
|
|
|
|
.. code-block:: cpp
|
|
:linenos:
|
|
|
|
sol::state lua;
|
|
|
|
lua.script( "function f () return 10, 11, 12 end" );
|
|
|
|
sol::function f = lua["f"];
|
|
std::tuple<int, int, int> abc = f(); // 10, 11, 12 from Lua
|
|
// or
|
|
int a, b, c;
|
|
sol::bond(a, b, c) = f(); // a = 10, b = 11, c = 12 from Lua
|
|
|
|
This makes it much easier to work with multiple return values. Using ``std::tie`` from the C++ standard will result in dangling references or bad behavior because of the very poor way in which C++ tuples were implemented: please use ``sol::bond( ... )`` instead to satisfy any multi-return needs.
|
|
|
|
.. _function-result-warning:
|
|
|
|
.. warning::
|
|
|
|
Do NOT save the return type of a :ref:`function_result<function-result>` with ``auto``, as in ``auto numwoof = woof(20);``, and do NOT store it anywhere. Unlike its counterpart :ref:`protected_function_result<protected-function-result>`, ``function_result`` is NOT safe to store as it assumes that its return types are still at the top of the stack and when its destructor is called will pop the number of results the function was supposed to return off the top of the stack. If you mess with the Lua stack between saving ``function_result`` and it being destructed, you will be subject to an incredible number of surprising and hard-to-track bugs. Don't do it.
|
|
|
|
.. code-block:: cpp
|
|
:caption: function: call operator / function call
|
|
|
|
template<typename... Args>
|
|
protected_function_result operator()( Args&&... args );
|
|
|
|
template<typename... Ret, typename... Args>
|
|
decltype(auto) call( Args&&... args );
|
|
|
|
template<typename... Ret, typename... Args>
|
|
decltype(auto) operator()( types<Ret...>, Args&&... args );
|
|
|
|
Calls the function. The second ``operator()`` lets you specify the templated return types using the ``my_func(sol::types<int, std::string>, ...)`` syntax. Function assumes there are no runtime errors, and thusly will call the ``atpanic`` function if an error does occur.
|
|
|
|
|
|
function call safety
|
|
--------------------
|
|
|
|
You can have functions here and on usertypes check to definitely make sure that the types passed to C++ functions are what they're supposed to be by adding a ``#define SOL_CHECK_ARGUMENTS`` before including Sol, or passing it on the command line. Otherwise, for speed reasons, these checks are only used where absolutely necessary (like discriminating between :doc:`overloads<overload>`). See :doc:`safety<../safety>` for more information. |