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
|
|
|
/*************************************************************************/
|
2020-01-01 10:16:22 +00:00
|
|
|
/* Copyright (c) 2007-2020 Juan Linietsky, Ariel Manzur. */
|
|
|
|
/* Copyright (c) 2014-2020 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"
|
|
|
|
#include "core/map.h"
|
|
|
|
#include "core/variant.h"
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
class DocData {
|
2014-02-10 01:10:30 +00:00
|
|
|
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;
|
|
|
|
};
|
|
|
|
|
|
|
|
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;
|
|
|
|
Vector<ArgumentDoc> arguments;
|
2017-03-05 15:44:50 +00:00
|
|
|
bool operator<(const MethodDoc &p_md) const {
|
|
|
|
return name < p_md.name;
|
2016-05-29 14:37:26 +00:00
|
|
|
}
|
2014-02-10 01:10:30 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
struct ConstantDoc {
|
|
|
|
String name;
|
|
|
|
String value;
|
2017-08-23 22:10:32 +00:00
|
|
|
String enumeration;
|
2014-02-10 01:10:30 +00:00
|
|
|
String description;
|
|
|
|
};
|
|
|
|
|
|
|
|
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-03-05 15:44:50 +00:00
|
|
|
String setter, getter;
|
2019-06-01 13:42:22 +00:00
|
|
|
String default_value;
|
2019-09-03 10:42:34 +00:00
|
|
|
bool overridden;
|
2017-03-05 15:44:50 +00:00
|
|
|
bool operator<(const PropertyDoc &p_prop) const {
|
|
|
|
return name < p_prop.name;
|
2016-06-21 20:20:34 +00:00
|
|
|
}
|
2019-11-20 15:22:16 +00:00
|
|
|
PropertyDoc() {
|
|
|
|
overridden = false;
|
|
|
|
}
|
2014-02-10 01:10:30 +00:00
|
|
|
};
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
struct ClassDoc {
|
2014-02-10 01:10:30 +00:00
|
|
|
String name;
|
|
|
|
String inherits;
|
|
|
|
String category;
|
|
|
|
String brief_description;
|
|
|
|
String description;
|
2018-06-11 11:35:44 +00:00
|
|
|
Vector<String> tutorials;
|
2014-02-10 01:10:30 +00:00
|
|
|
Vector<MethodDoc> methods;
|
|
|
|
Vector<MethodDoc> signals;
|
|
|
|
Vector<ConstantDoc> constants;
|
|
|
|
Vector<PropertyDoc> properties;
|
2014-06-30 01:41:02 +00:00
|
|
|
Vector<PropertyDoc> theme_properties;
|
2014-02-10 01:10:30 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
String version;
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
Map<String, ClassDoc> class_list;
|
2014-02-16 00:16:33 +00:00
|
|
|
Error _load(Ref<XMLParser> parser);
|
|
|
|
|
2014-02-10 01:10:30 +00:00
|
|
|
public:
|
2017-03-05 15:44:50 +00:00
|
|
|
void merge_from(const DocData &p_data);
|
|
|
|
void remove_from(const DocData &p_data);
|
|
|
|
void generate(bool p_basic_types = false);
|
2017-09-12 20:42:36 +00:00
|
|
|
Error load_classes(const String &p_dir);
|
|
|
|
static Error erase_classes(const String &p_dir);
|
2017-09-12 21:06:26 +00:00
|
|
|
Error save_classes(const String &p_default_path, const Map<String, String> &p_class_path);
|
2014-02-10 01:10:30 +00:00
|
|
|
|
|
|
|
Error load_compressed(const uint8_t *p_data, int p_compressed_size, int p_uncompressed_size);
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // DOC_DATA_H
|