2014-02-10 01:10:30 +00:00
|
|
|
/*************************************************************************/
|
|
|
|
/* doc_data.h */
|
|
|
|
/*************************************************************************/
|
|
|
|
/* This file is part of: */
|
|
|
|
/* GODOT ENGINE */
|
2017-08-27 12:16:55 +00:00
|
|
|
/* https://godotengine.org */
|
2014-02-10 01:10:30 +00:00
|
|
|
/*************************************************************************/
|
2022-01-03 20:27:34 +00:00
|
|
|
/* Copyright (c) 2007-2022 Juan Linietsky, Ariel Manzur. */
|
|
|
|
/* Copyright (c) 2014-2022 Godot Engine contributors (cf. AUTHORS.md). */
|
2014-02-10 01:10:30 +00: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. */
|
|
|
|
/*************************************************************************/
|
2018-01-04 23:50:27 +00:00
|
|
|
|
2014-02-10 01:10:30 +00:00
|
|
|
#ifndef DOC_DATA_H
|
|
|
|
#define DOC_DATA_H
|
|
|
|
|
2018-09-11 16:13:45 +00:00
|
|
|
#include "core/io/xml_parser.h"
|
2020-11-07 22:33:38 +00:00
|
|
|
#include "core/variant/variant.h"
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2020-11-29 02:37:57 +00:00
|
|
|
struct ScriptMemberInfo {
|
|
|
|
PropertyInfo propinfo;
|
|
|
|
String doc_string;
|
|
|
|
StringName setter;
|
|
|
|
StringName getter;
|
|
|
|
|
|
|
|
bool has_default_value = false;
|
|
|
|
Variant default_value;
|
|
|
|
};
|
|
|
|
|
2014-02-10 01:10:30 +00:00
|
|
|
class DocData {
|
|
|
|
public:
|
|
|
|
struct ArgumentDoc {
|
|
|
|
String name;
|
|
|
|
String type;
|
2017-08-23 22:10:32 +00:00
|
|
|
String enumeration;
|
2014-02-10 01:10:30 +00:00
|
|
|
String default_value;
|
2020-05-20 12:34:49 +00:00
|
|
|
bool operator<(const ArgumentDoc &p_arg) const {
|
2020-11-09 16:46:03 +00:00
|
|
|
if (name == p_arg.name) {
|
|
|
|
return type < p_arg.type;
|
|
|
|
}
|
2020-05-20 12:34:49 +00:00
|
|
|
return name < p_arg.name;
|
|
|
|
}
|
2014-02-10 01:10:30 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
struct MethodDoc {
|
|
|
|
String name;
|
|
|
|
String return_type;
|
2017-08-23 22:10:32 +00:00
|
|
|
String return_enum;
|
2014-02-10 01:10:30 +00:00
|
|
|
String qualifiers;
|
|
|
|
String description;
|
2022-08-28 06:17:25 +00:00
|
|
|
bool is_deprecated = false;
|
|
|
|
bool is_experimental = false;
|
2014-02-10 01:10:30 +00:00
|
|
|
Vector<ArgumentDoc> arguments;
|
2021-08-24 18:16:25 +00:00
|
|
|
Vector<int> errors_returned;
|
2020-05-20 12:34:49 +00:00
|
|
|
bool operator<(const MethodDoc &p_method) const {
|
2020-11-09 16:46:03 +00:00
|
|
|
if (name == p_method.name) {
|
2021-11-28 08:48:57 +00:00
|
|
|
// Must be an operator or a constructor since there is no other overloading
|
|
|
|
if (name.left(8) == "operator") {
|
|
|
|
if (arguments.size() == p_method.arguments.size()) {
|
|
|
|
if (arguments.size() == 0) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return arguments[0].type < p_method.arguments[0].type;
|
|
|
|
}
|
2020-11-09 16:46:03 +00:00
|
|
|
return arguments.size() < p_method.arguments.size();
|
2021-11-28 08:48:57 +00:00
|
|
|
} else {
|
|
|
|
// Must be a constructor
|
|
|
|
// We want this arbitrary order for a class "Foo":
|
|
|
|
// - 1. Default constructor: Foo()
|
|
|
|
// - 2. Copy constructor: Foo(Foo)
|
|
|
|
// - 3+. Other constructors Foo(Bar, ...) based on first argument's name
|
|
|
|
if (arguments.size() == 0 || p_method.arguments.size() == 0) { // 1.
|
|
|
|
return arguments.size() < p_method.arguments.size();
|
|
|
|
}
|
|
|
|
if (arguments[0].type == return_type || p_method.arguments[0].type == p_method.return_type) { // 2.
|
|
|
|
return (arguments[0].type == return_type) || (p_method.arguments[0].type != p_method.return_type);
|
|
|
|
}
|
|
|
|
return arguments[0] < p_method.arguments[0];
|
2020-11-09 16:46:03 +00:00
|
|
|
}
|
|
|
|
}
|
2020-05-20 12:34:49 +00:00
|
|
|
return name < p_method.name;
|
2016-05-29 14:37:26 +00:00
|
|
|
}
|
2014-02-10 01:10:30 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
struct ConstantDoc {
|
|
|
|
String name;
|
|
|
|
String value;
|
2020-11-24 09:12:55 +00:00
|
|
|
bool is_value_valid = false;
|
2017-08-23 22:10:32 +00:00
|
|
|
String enumeration;
|
2022-06-24 09:16:37 +00:00
|
|
|
bool is_bitfield = false;
|
2014-02-10 01:10:30 +00:00
|
|
|
String description;
|
2022-08-28 06:17:25 +00:00
|
|
|
bool is_deprecated = false;
|
|
|
|
bool is_experimental = false;
|
2020-05-20 12:34:49 +00:00
|
|
|
bool operator<(const ConstantDoc &p_const) const {
|
|
|
|
return name < p_const.name;
|
|
|
|
}
|
2014-02-10 01:10:30 +00:00
|
|
|
};
|
|
|
|
|
2020-11-29 02:37:57 +00:00
|
|
|
struct EnumDoc {
|
|
|
|
String name = "@unnamed_enum";
|
2022-06-24 09:16:37 +00:00
|
|
|
bool is_bitfield = false;
|
2020-11-29 02:37:57 +00:00
|
|
|
String description;
|
|
|
|
Vector<DocData::ConstantDoc> values;
|
|
|
|
};
|
|
|
|
|
2014-02-10 01:10:30 +00:00
|
|
|
struct PropertyDoc {
|
|
|
|
String name;
|
|
|
|
String type;
|
2017-08-23 22:10:32 +00:00
|
|
|
String enumeration;
|
2014-02-10 01:10:30 +00:00
|
|
|
String description;
|
2017-01-04 04:16:14 +00:00
|
|
|
String setter, getter;
|
2019-06-01 13:42:22 +00:00
|
|
|
String default_value;
|
2020-05-20 12:34:49 +00:00
|
|
|
bool overridden = false;
|
2021-12-02 19:38:49 +00:00
|
|
|
String overrides;
|
2022-08-28 06:17:25 +00:00
|
|
|
bool is_deprecated = false;
|
|
|
|
bool is_experimental = false;
|
2016-06-21 20:20:34 +00:00
|
|
|
bool operator<(const PropertyDoc &p_prop) const {
|
|
|
|
return name < p_prop.name;
|
|
|
|
}
|
2014-02-10 01:10:30 +00:00
|
|
|
};
|
|
|
|
|
2021-08-04 16:54:41 +00:00
|
|
|
struct ThemeItemDoc {
|
|
|
|
String name;
|
|
|
|
String type;
|
|
|
|
String data_type;
|
|
|
|
String description;
|
|
|
|
String default_value;
|
|
|
|
bool operator<(const ThemeItemDoc &p_theme_item) const {
|
2021-12-01 18:02:20 +00:00
|
|
|
// First sort by the data type, then by name.
|
|
|
|
if (data_type == p_theme_item.data_type) {
|
|
|
|
return name < p_theme_item.name;
|
|
|
|
}
|
|
|
|
return data_type < p_theme_item.data_type;
|
2021-08-04 16:54:41 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2020-06-07 01:26:35 +00:00
|
|
|
struct TutorialDoc {
|
|
|
|
String link;
|
|
|
|
String title;
|
|
|
|
};
|
|
|
|
|
2014-02-10 01:10:30 +00:00
|
|
|
struct ClassDoc {
|
|
|
|
String name;
|
|
|
|
String inherits;
|
2022-03-26 14:46:01 +00:00
|
|
|
String category; // FIXME: Wrongly used by VisualScriptPropertySelector, should be removed.
|
2014-02-10 01:10:30 +00:00
|
|
|
String brief_description;
|
|
|
|
String description;
|
2020-06-07 01:26:35 +00:00
|
|
|
Vector<TutorialDoc> tutorials;
|
2021-09-21 02:49:02 +00:00
|
|
|
Vector<MethodDoc> constructors;
|
2014-02-10 01:10:30 +00:00
|
|
|
Vector<MethodDoc> methods;
|
2021-09-21 02:49:02 +00:00
|
|
|
Vector<MethodDoc> operators;
|
2014-02-10 01:10:30 +00:00
|
|
|
Vector<MethodDoc> signals;
|
|
|
|
Vector<ConstantDoc> constants;
|
2022-05-13 13:04:37 +00:00
|
|
|
HashMap<String, String> enums;
|
2014-02-10 01:10:30 +00:00
|
|
|
Vector<PropertyDoc> properties;
|
2022-07-04 15:56:34 +00:00
|
|
|
Vector<MethodDoc> annotations;
|
2021-08-04 16:54:41 +00:00
|
|
|
Vector<ThemeItemDoc> theme_properties;
|
2022-08-28 06:17:25 +00:00
|
|
|
bool is_deprecated = false;
|
|
|
|
bool is_experimental = false;
|
2020-11-29 02:37:57 +00:00
|
|
|
bool is_script_doc = false;
|
|
|
|
String script_path;
|
2020-05-20 12:34:49 +00:00
|
|
|
bool operator<(const ClassDoc &p_class) const {
|
|
|
|
return name < p_class.name;
|
|
|
|
}
|
2014-02-10 01:10:30 +00:00
|
|
|
};
|
|
|
|
|
2020-11-29 02:37:57 +00:00
|
|
|
static void return_doc_from_retinfo(DocData::MethodDoc &p_method, const PropertyInfo &p_retinfo);
|
|
|
|
static void argument_doc_from_arginfo(DocData::ArgumentDoc &p_argument, const PropertyInfo &p_arginfo);
|
|
|
|
static void property_doc_from_scriptmemberinfo(DocData::PropertyDoc &p_property, const ScriptMemberInfo &p_memberinfo);
|
|
|
|
static void method_doc_from_methodinfo(DocData::MethodDoc &p_method, const MethodInfo &p_methodinfo, const String &p_desc);
|
|
|
|
static void constant_doc_from_variant(DocData::ConstantDoc &p_const, const StringName &p_name, const Variant &p_value, const String &p_desc);
|
|
|
|
static void signal_doc_from_methodinfo(DocData::MethodDoc &p_signal, const MethodInfo &p_methodinfo, const String &p_desc);
|
2014-02-10 01:10:30 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // DOC_DATA_H
|