mirror of
https://github.com/OpenMW/openmw.git
synced 2025-07-08 22:41:35 +00:00
To fix warning (silenced by 3b97af0ac417c6f5ee2d16fa4c2cab2885409352): In file included from ../../../extern/sol3/sol/stack_check_get.hpp:28, from ../../../extern/sol3/sol/stack.hpp:32, from ../../../extern/sol3/sol/sol.hpp:52, from ../../../components/lua/luastate.hpp:8, from ../../../apps/openmw/mwlua/context.hpp:4, from ../../../apps/openmw/mwlua/soundbindings.hpp:6, from ../../../apps/openmw/mwlua/soundbindings.cpp:1: In function 'OptionalType sol::stack::stack_detail::get_optional(lua_State*, int, Handler&&, sol::stack::record&) [with OptionalType = sol::optional<float>; T = float; Handler = int (*)(lua_State*, int, sol::type, sol::type, const char*) noexcept]', inlined from 'static Optional sol::stack::qualified_getter<Optional, typename std::enable_if<is_optional_v<Optional>, void>::type>::get(lua_State*, int, sol::stack::record&) [with Optional = sol::optional<float>]' at ../../../extern/sol3/sol/stack_check_get_qualified.hpp:133:50, inlined from 'decltype(auto) sol::stack::stack_detail::unchecked_get(lua_State*, int, sol::stack::record&) [with T = sol::optional<float>]' at ../../../extern/sol3/sol/stack_core.hpp:725:18, inlined from 'decltype (unchecked_get<T>(L, index, tracking)) sol::stack::get(lua_State*, int, record&) [with T = sol::optional<float>]' at ../../../extern/sol3/sol/stack_core.hpp:1186:41, inlined from 'decltype(auto) sol::stack::get(lua_State*, int) [with T = sol::optional<float>]' at ../../../extern/sol3/sol/stack_core.hpp:1193:17: ../../../extern/sol3/sol/stack_check_get_qualified.hpp:112:49: error: '*(float*)((char*)&<unnamed> + offsetof(sol::optional<float>,sol::optional<float>::<unnamed>.sol::detail::optional_move_assign_base<float, true>::<unnamed>.sol::detail::optional_copy_assign_base<float, true>::<unnamed>.sol::detail::optional_move_base<float, true>::<unnamed>.sol::detail::optional_copy_base<float, true>::<unnamed>.sol::detail::optional_operations_base<float>::<unnamed>.sol::detail::optional_storage_base<float, true>::<unnamed>))' may be used uninitialized [-Werror=maybe-uninitialized] 112 | return {}; | ^ ../../../extern/sol3/sol/stack_check_get_qualified.hpp: In function 'decltype(auto) sol::stack::get(lua_State*, int) [with T = sol::optional<float>]': ../../../extern/sol3/sol/stack_check_get_qualified.hpp:112:49: note: '<anonymous>' declared here 112 | return {}; | ^
195 lines
7.2 KiB
C++
195 lines
7.2 KiB
C++
// sol2
|
|
|
|
// The MIT License (MIT)
|
|
|
|
// Copyright (c) 2013-2022 Rapptz, ThePhD and contributors
|
|
|
|
// 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_INHERITANCE_HPP
|
|
#define SOL_INHERITANCE_HPP
|
|
|
|
#include <sol/types.hpp>
|
|
#include <sol/usertype_traits.hpp>
|
|
#include <sol/unique_usertype_traits.hpp>
|
|
|
|
namespace sol {
|
|
template <typename... Args>
|
|
struct base_list { };
|
|
template <typename... Args>
|
|
using bases = base_list<Args...>;
|
|
|
|
typedef bases<> base_classes_tag;
|
|
const auto base_classes = base_classes_tag();
|
|
|
|
template <typename... Args>
|
|
struct is_to_stringable<base_list<Args...>> : std::false_type { };
|
|
|
|
namespace detail {
|
|
|
|
inline decltype(auto) base_class_check_key() {
|
|
static const auto& key = "class_check";
|
|
return key;
|
|
}
|
|
|
|
inline decltype(auto) base_class_cast_key() {
|
|
static const auto& key = "class_cast";
|
|
return key;
|
|
}
|
|
|
|
inline decltype(auto) base_class_index_propogation_key() {
|
|
static const auto& key = u8"\xF0\x9F\x8C\xB2.index";
|
|
return key;
|
|
}
|
|
|
|
inline decltype(auto) base_class_new_index_propogation_key() {
|
|
static const auto& key = u8"\xF0\x9F\x8C\xB2.new_index";
|
|
return key;
|
|
}
|
|
|
|
template <typename T>
|
|
struct inheritance {
|
|
typedef typename base<T>::type bases_t;
|
|
|
|
static bool type_check_bases(types<>, const string_view&) {
|
|
return false;
|
|
}
|
|
|
|
template <typename Base, typename... Args>
|
|
static bool type_check_bases(types<Base, Args...>, const string_view& ti) {
|
|
return ti == usertype_traits<Base>::qualified_name() || type_check_bases(types<Args...>(), ti);
|
|
}
|
|
|
|
static bool type_check(const string_view& ti) {
|
|
return ti == usertype_traits<T>::qualified_name() || type_check_bases(bases_t(), ti);
|
|
}
|
|
|
|
template <typename... Bases>
|
|
static bool type_check_with(const string_view& ti) {
|
|
return ti == usertype_traits<T>::qualified_name() || type_check_bases(types<Bases...>(), ti);
|
|
}
|
|
|
|
static void* type_cast_bases(types<>, T*, const string_view&) {
|
|
return nullptr;
|
|
}
|
|
|
|
template <typename Base, typename... Args>
|
|
static void* type_cast_bases(types<Base, Args...>, T* data, const string_view& ti) {
|
|
// Make sure to convert to T first, and then dynamic cast to the proper type
|
|
return ti != usertype_traits<Base>::qualified_name() ? type_cast_bases(types<Args...>(), data, ti)
|
|
: static_cast<void*>(static_cast<Base*>(data));
|
|
}
|
|
|
|
static void* type_cast(void* voiddata, const string_view& ti) {
|
|
T* data = static_cast<T*>(voiddata);
|
|
return static_cast<void*>(ti != usertype_traits<T>::qualified_name() ? type_cast_bases(bases_t(), data, ti) : data);
|
|
}
|
|
|
|
template <typename... Bases>
|
|
static void* type_cast_with(void* voiddata, const string_view& ti) {
|
|
T* data = static_cast<T*>(voiddata);
|
|
return static_cast<void*>(ti != usertype_traits<T>::qualified_name() ? type_cast_bases(types<Bases...>(), data, ti) : data);
|
|
}
|
|
|
|
template <typename U>
|
|
static bool type_unique_cast_bases(types<>, void*, void*, const string_view&) {
|
|
return 0;
|
|
}
|
|
|
|
template <typename U, typename Base, typename... Args>
|
|
static int type_unique_cast_bases(types<Base, Args...>, void* source_data, void* target_data, const string_view& ti) {
|
|
using uu_traits = unique_usertype_traits<U>;
|
|
using base_ptr = typename uu_traits::template rebind_actual_type<Base>;
|
|
string_view base_ti = usertype_traits<Base>::qualified_name();
|
|
if (base_ti == ti) {
|
|
if (target_data != nullptr) {
|
|
U* source = static_cast<U*>(source_data);
|
|
base_ptr* target = static_cast<base_ptr*>(target_data);
|
|
// perform proper derived -> base conversion
|
|
*target = *source;
|
|
}
|
|
return 2;
|
|
}
|
|
return type_unique_cast_bases<U>(types<Args...>(), source_data, target_data, ti);
|
|
}
|
|
|
|
template <typename U>
|
|
static int type_unique_cast(void* source_data, void* target_data, const string_view& ti, const string_view& rebind_ti) {
|
|
if constexpr (is_actual_type_rebindable_for_v<U>) {
|
|
using rebound_actual_type = unique_usertype_rebind_actual_t<U>;
|
|
using maybe_bases_or_empty = meta::conditional_t<std::is_void_v<rebound_actual_type>, types<>, bases_t>;
|
|
string_view this_rebind_ti = usertype_traits<rebound_actual_type>::qualified_name();
|
|
if (rebind_ti != this_rebind_ti) {
|
|
// this is not even of the same unique type
|
|
return 0;
|
|
}
|
|
string_view this_ti = usertype_traits<T>::qualified_name();
|
|
if (ti == this_ti) {
|
|
// direct match, return 1
|
|
return 1;
|
|
}
|
|
return type_unique_cast_bases<U>(maybe_bases_or_empty(), source_data, target_data, ti);
|
|
}
|
|
else {
|
|
(void)rebind_ti;
|
|
string_view this_ti = usertype_traits<T>::qualified_name();
|
|
if (ti == this_ti) {
|
|
// direct match, return 1
|
|
return 1;
|
|
}
|
|
return type_unique_cast_bases<U>(types<>(), source_data, target_data, ti);
|
|
}
|
|
}
|
|
|
|
template <typename U, typename... Bases>
|
|
static int type_unique_cast_with(void* source_data, void* target_data, const string_view& ti, const string_view& rebind_ti) {
|
|
using uc_bases_t = types<Bases...>;
|
|
if constexpr (is_actual_type_rebindable_for_v<U>) {
|
|
using rebound_actual_type = unique_usertype_rebind_actual_t<U>;
|
|
using cond_bases_t = meta::conditional_t<std::is_void_v<rebound_actual_type>, types<>, uc_bases_t>;
|
|
string_view this_rebind_ti = usertype_traits<rebound_actual_type>::qualified_name();
|
|
if (rebind_ti != this_rebind_ti) {
|
|
// this is not even of the same unique type
|
|
return 0;
|
|
}
|
|
string_view this_ti = usertype_traits<T>::qualified_name();
|
|
if (ti == this_ti) {
|
|
// direct match, return 1
|
|
return 1;
|
|
}
|
|
return type_unique_cast_bases<U>(cond_bases_t(), source_data, target_data, ti);
|
|
}
|
|
else {
|
|
(void)rebind_ti;
|
|
string_view this_ti = usertype_traits<T>::qualified_name();
|
|
if (ti == this_ti) {
|
|
// direct match, return 1
|
|
return 1;
|
|
}
|
|
return type_unique_cast_bases<U>(types<>(), source_data, target_data, ti);
|
|
}
|
|
}
|
|
};
|
|
|
|
using inheritance_check_function = decltype(&inheritance<void>::type_check);
|
|
using inheritance_cast_function = decltype(&inheritance<void>::type_cast);
|
|
using inheritance_unique_cast_function = decltype(&inheritance<void>::type_unique_cast<void>);
|
|
} // namespace detail
|
|
} // namespace sol
|
|
|
|
#endif // SOL_INHERITANCE_HPP
|