forked from godotengine/godot-cpp
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add CMake support for XML documentation
- Loading branch information
Showing
2 changed files
with
54 additions
and
46 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
#!/usr/bin/env python | ||
|
||
import os | ||
import glob | ||
import zlib | ||
|
||
def generate_doc_source(dst, source): | ||
g = open(dst, "w", encoding="utf-8") | ||
buf = "" | ||
docbegin = "" | ||
docend = "" | ||
for src in source: | ||
src_path = str(src) | ||
if not src_path.endswith(".xml"): | ||
continue | ||
with open(src_path, "r", encoding="utf-8") as f: | ||
content = f.read() | ||
buf += content | ||
|
||
buf = (docbegin + buf + docend).encode("utf-8") | ||
decomp_size = len(buf) | ||
|
||
# Use maximum zlib compression level to further reduce file size | ||
# (at the cost of initial build times). | ||
buf = zlib.compress(buf, zlib.Z_BEST_COMPRESSION) | ||
|
||
g.write("/* THIS FILE IS GENERATED DO NOT EDIT */\n") | ||
g.write("\n") | ||
g.write("#include <godot_cpp/godot.hpp>\n") | ||
g.write("\n") | ||
|
||
g.write('static const char *_doc_data_hash = "' + str(hash(buf)) + '";\n') | ||
g.write("static const int _doc_data_uncompressed_size = " + str(decomp_size) + ";\n") | ||
g.write("static const int _doc_data_compressed_size = " + str(len(buf)) + ";\n") | ||
g.write("static const unsigned char _doc_data_compressed[] = {\n") | ||
for i in range(len(buf)): | ||
g.write("\t" + str(buf[i]) + ",\n") | ||
g.write("};\n") | ||
g.write("\n") | ||
|
||
g.write( | ||
"static godot::internal::DocDataRegistration _doc_data_registration(_doc_data_hash, _doc_data_uncompressed_size, _doc_data_compressed_size, _doc_data_compressed);\n" | ||
) | ||
g.write("\n") | ||
|
||
g.close() | ||
|
||
def scons_generate_doc_source(target, source, env): | ||
generate_doc_source(str(target[0]), source) | ||
|
||
def generate_doc_source_from_directory(target, directory): | ||
generate_doc_source(target, glob.glob(os.path.join(directory, '*.xml'))) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters