diff --git a/tools/doc/doc_data.cpp b/tools/doc/doc_data.cpp index a26690a02fd..a08f3b7b7b2 100644 --- a/tools/doc/doc_data.cpp +++ b/tools/doc/doc_data.cpp @@ -36,6 +36,21 @@ #include "io/compression.h" #include "scene/resources/theme.h" +struct _ConstantComparator { + + inline bool operator()(const DocData::ConstantDoc &a, const DocData::ConstantDoc &b) const { + String left_a = a.name.find("_") == -1 ? a.name : a.name.substr(0, a.name.find("_")); + String left_b = b.name.find("_") == -1 ? b.name : b.name.substr(0, b.name.find("_")); + if (left_a == left_b) // If they have the same prefix + if (a.value == b.value) + return a.name < b.name; // Sort by name if the values are the same + else + return a.value < b.value; // Sort by value otherwise + else + return left_a < left_b; // Sort by name if the prefixes aren't the same + } +}; + void DocData::merge_from(const DocData& p_data) { for( Map::Element *E=class_list.front();E;E=E->next()) { @@ -938,6 +953,8 @@ Error DocData::save(const String& p_path) { _write_string(f,1,""); _write_string(f,1,""); + c.methods.sort(); + for(int i=0;i"); + c.properties.sort(); + for(int i=0;i"); for(int i=0;i"); + c.constants.sort_custom<_ConstantComparator>(); + for(int i=0;i"); if (c.theme_properties.size()) { + + c.theme_properties.sort(); + _write_string(f,1,""); for(int i=0;i arguments; + bool operator<(const MethodDoc& p_md) const { + return name