2018-09-28 14:55:09 +08:00
|
|
|
// sol3
|
2018-02-20 10:15:26 +08:00
|
|
|
|
2017-09-13 14:46:56 +08:00
|
|
|
// The MIT License (MIT)
|
2013-11-25 17:56:27 +08:00
|
|
|
|
2018-02-20 10:15:26 +08:00
|
|
|
// Copyright (c) 2013-2018 Rapptz, ThePhD and contributors
|
2013-11-25 17:56:27 +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_TABLE_HPP
|
|
|
|
#define SOL_TABLE_HPP
|
|
|
|
|
2016-01-09 05:16:06 +08:00
|
|
|
#include "table_core.hpp"
|
2018-09-28 13:27:38 +08:00
|
|
|
#include "usertype.hpp"
|
2013-12-09 12:05:03 +08:00
|
|
|
|
2013-11-25 17:56:27 +08:00
|
|
|
namespace sol {
|
2016-06-20 05:59:40 +08:00
|
|
|
typedef table_core<false> table;
|
2017-04-19 08:23:20 +08:00
|
|
|
|
2018-09-28 13:27:38 +08:00
|
|
|
template <bool top_level, typename base_type>
|
|
|
|
template <typename Class, typename Key>
|
|
|
|
usertype<Class> basic_table_core<top_level, base_type>::new_usertype(Key&& key, optional<no_construction> no_default_constructor /* = nullopt*/) {
|
|
|
|
int mt_index = u_detail::register_usertype<Class>(this->lua_state(), std::move(no_default_constructor));
|
|
|
|
usertype<Class> mt(this->lua_state(), -mt_index);
|
|
|
|
set(std::forward<Key>(key), mt);
|
|
|
|
return mt;
|
|
|
|
}
|
|
|
|
|
2018-09-28 15:55:47 +08:00
|
|
|
template <typename base_type>
|
|
|
|
template <typename Key, typename Value>
|
|
|
|
void basic_metatable<base_type>::set(Key&& key, Value&& value) {
|
|
|
|
optional<u_detail::usertype_storage_base&> maybe_uts = u_detail::maybe_get_usertype_storage_base(this->lua_state());
|
|
|
|
if (maybe_uts) {
|
|
|
|
u_detail::usertype_storage_base& uts = *maybe_uts;
|
|
|
|
uts.set(std::forward<Key>(key), std::forward<Value>(value));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-04-19 08:23:20 +08:00
|
|
|
namespace stack {
|
|
|
|
template <>
|
|
|
|
struct getter<metatable_t> {
|
|
|
|
static table get(lua_State* L, int index = -1) {
|
|
|
|
if (lua_getmetatable(L, index) == 0) {
|
|
|
|
return table(L, ref_index(LUA_REFNIL));
|
|
|
|
}
|
|
|
|
return table(L, -1);
|
|
|
|
}
|
|
|
|
};
|
2017-09-13 14:46:56 +08:00
|
|
|
} // namespace stack
|
|
|
|
} // namespace sol
|
2013-11-25 17:56:27 +08:00
|
|
|
|
2014-06-07 10:54:45 +08:00
|
|
|
#endif // SOL_TABLE_HPP
|