2017-09-13 14:46:56 +08:00
|
|
|
// The MIT License (MIT)
|
2016-04-01 04:16:07 +08:00
|
|
|
|
2017-05-15 22:41:50 +08:00
|
|
|
// Copyright (c) 2013-2017 Rapptz, ThePhD and contributors
|
2016-04-01 04:16:07 +08:00
|
|
|
|
|
|
|
// Permission is hereby granted, free of charge, to any person obtaining a copy of
|
|
|
|
// this software and associated documentation files (the "Software"), to deal in
|
|
|
|
// the Software without restriction, including without limitation the rights to
|
|
|
|
// use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
|
|
|
|
// the Software, and to permit persons to whom the Software is furnished to do so,
|
|
|
|
// subject to the following conditions:
|
|
|
|
|
|
|
|
// The above copyright notice and this permission notice shall be included in all
|
|
|
|
// copies or substantial portions of the Software.
|
|
|
|
|
|
|
|
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
|
|
|
|
// FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
|
|
|
|
// COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
|
|
|
|
// IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
|
|
|
// CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
|
|
|
|
|
|
#ifndef SOL_STACK_PROXY_HPP
|
|
|
|
#define SOL_STACK_PROXY_HPP
|
|
|
|
|
2017-11-10 06:41:46 +08:00
|
|
|
#include "stack_proxy_base.hpp"
|
2016-04-01 04:16:07 +08:00
|
|
|
|
|
|
|
namespace sol {
|
2017-11-10 06:41:46 +08:00
|
|
|
struct stack_proxy : public stack_proxy_base {
|
2016-06-20 05:59:40 +08:00
|
|
|
private:
|
|
|
|
lua_State* L;
|
|
|
|
int index;
|
|
|
|
|
|
|
|
public:
|
2017-09-13 14:46:56 +08:00
|
|
|
stack_proxy()
|
2017-11-10 06:41:46 +08:00
|
|
|
: stack_proxy_base() {
|
2017-09-13 14:46:56 +08:00
|
|
|
}
|
|
|
|
stack_proxy(lua_State* L, int index)
|
2017-11-10 06:41:46 +08:00
|
|
|
: stack_proxy_base(L, index) {
|
2017-09-13 14:46:56 +08:00
|
|
|
}
|
2016-06-20 05:59:40 +08:00
|
|
|
|
2017-09-13 14:46:56 +08:00
|
|
|
template <typename... Ret, typename... Args>
|
2017-11-10 06:41:46 +08:00
|
|
|
decltype(auto) call(Args&&... args);
|
2016-06-20 05:59:40 +08:00
|
|
|
|
2017-09-13 14:46:56 +08:00
|
|
|
template <typename... Args>
|
2016-06-20 05:59:40 +08:00
|
|
|
decltype(auto) operator()(Args&&... args) {
|
|
|
|
return call<>(std::forward<Args>(args)...);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
namespace stack {
|
|
|
|
template <>
|
|
|
|
struct getter<stack_proxy> {
|
|
|
|
static stack_proxy get(lua_State* L, int index = -1) {
|
|
|
|
return stack_proxy(L, index);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
template <>
|
|
|
|
struct pusher<stack_proxy> {
|
|
|
|
static int push(lua_State*, const stack_proxy& ref) {
|
|
|
|
return ref.push();
|
|
|
|
}
|
|
|
|
};
|
2017-09-13 14:46:56 +08:00
|
|
|
} // namespace stack
|
|
|
|
} // namespace sol
|
2016-04-01 04:16:07 +08:00
|
|
|
|
|
|
|
#endif // SOL_STACK_PROXY_HPP
|