blob: d276d7d8865dc4229140f39739ae22202f90063e (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
 | def generate_compressed_config(config_src, output_dir):
    import os.path
    # Source file
    with open(os.path.join(output_dir, "android_mono_config.gen.cpp"), "w") as cpp:
        with open(config_src, "rb") as f:
            buf = f.read()
            decompr_size = len(buf)
            import zlib
            buf = zlib.compress(buf)
            compr_size = len(buf)
            bytes_seq_str = ""
            for i, buf_idx in enumerate(range(compr_size)):
                if i > 0:
                    bytes_seq_str += ", "
                bytes_seq_str += str(buf[buf_idx])
            cpp.write(
                """/* THIS FILE IS GENERATED DO NOT EDIT */
#include "android_mono_config.h"
#ifdef ANDROID_ENABLED
#include "core/io/compression.h"
namespace {
// config
static const int config_compressed_size = %d;
static const int config_uncompressed_size = %d;
static const unsigned char config_compressed_data[] = { %s };
} // namespace
String get_godot_android_mono_config() {
	Vector<uint8_t> data;
	data.resize(config_uncompressed_size);
	uint8_t* w = data.ptrw();
	Compression::decompress(w.ptr(), config_uncompressed_size, config_compressed_data,
			config_compressed_size, Compression::MODE_DEFLATE);
	String s;
	if (s.parse_utf8((const char *)w.ptr(), data.size())) {
		ERR_FAIL_V(String());
	}
	return s;
}
#endif // ANDROID_ENABLED
"""
                % (compr_size, decompr_size, bytes_seq_str)
            )
 |