/**************************************************************************/ /* variant_construct.cpp */ /**************************************************************************/ /* This file is part of: */ /* GODOT ENGINE */ /* https://godotengine.org */ /**************************************************************************/ /* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */ /* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */ /* */ /* 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. */ /**************************************************************************/ #include "variant_construct.h" struct VariantConstructData { … }; static LocalVector<VariantConstructData> construct_data[Variant::VARIANT_MAX]; template <typename T> static void add_constructor(const Vector<String> &arg_names) { … } void Variant::_register_variant_constructors() { … } void Variant::_unregister_variant_constructors() { … } void Variant::construct(Variant::Type p_type, Variant &base, const Variant **p_args, int p_argcount, Callable::CallError &r_error) { … } int Variant::get_constructor_count(Variant::Type p_type) { … } Variant::ValidatedConstructor Variant::get_validated_constructor(Variant::Type p_type, int p_constructor) { … } Variant::PTRConstructor Variant::get_ptr_constructor(Variant::Type p_type, int p_constructor) { … } int Variant::get_constructor_argument_count(Variant::Type p_type, int p_constructor) { … } Variant::Type Variant::get_constructor_argument_type(Variant::Type p_type, int p_constructor, int p_argument) { … } String Variant::get_constructor_argument_name(Variant::Type p_type, int p_constructor, int p_argument) { … } void VariantInternal::refcounted_object_assign(Variant *v, const RefCounted *rc) { … } void VariantInternal::object_assign(Variant *v, const Object *o) { … } void Variant::get_constructor_list(Type p_type, List<MethodInfo> *r_list) { … }