2016-10-17 08:50:25 +02:00
|
|
|
#!/usr/bin/env python
|
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
Import('env')
|
|
|
|
|
2016-10-30 18:57:40 +01:00
|
|
|
env.core_sources = []
|
2014-02-10 02:10:30 +01:00
|
|
|
|
|
|
|
|
2017-04-28 18:29:15 +02:00
|
|
|
# Generate global defaults
|
2016-10-30 18:57:40 +01:00
|
|
|
gd_call = ""
|
|
|
|
gd_inc = ""
|
2014-02-10 02:10:30 +01:00
|
|
|
|
|
|
|
for x in env.global_defaults:
|
2016-10-30 18:57:40 +01:00
|
|
|
env.core_sources.append("#platform/" + x + "/globals/global_defaults.cpp")
|
|
|
|
gd_inc += '#include "platform/' + x + '/globals/global_defaults.h"\n'
|
|
|
|
gd_call += "\tregister_" + x + "_global_defaults();\n"
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2017-07-19 22:00:46 +02:00
|
|
|
gd_cpp = '#include "project_settings.h"\n'
|
2016-10-30 18:57:40 +01:00
|
|
|
gd_cpp += gd_inc
|
2017-07-19 22:00:46 +02:00
|
|
|
gd_cpp += "void ProjectSettings::register_global_defaults() {\n" + gd_call + "\n}\n"
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2017-08-26 18:53:49 +02:00
|
|
|
f = open("global_defaults.gen.cpp", "w")
|
2014-02-10 02:10:30 +01:00
|
|
|
f.write(gd_cpp)
|
|
|
|
f.close()
|
|
|
|
|
2017-04-28 18:29:15 +02:00
|
|
|
|
|
|
|
# Generate AES256 script encryption key
|
2014-06-11 15:41:03 +02:00
|
|
|
import os
|
|
|
|
txt = "0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0"
|
|
|
|
if ("SCRIPT_AES256_ENCRYPTION_KEY" in os.environ):
|
2016-10-30 18:57:40 +01:00
|
|
|
e = os.environ["SCRIPT_AES256_ENCRYPTION_KEY"]
|
2016-10-30 18:44:57 +01:00
|
|
|
txt = ""
|
2016-10-30 18:57:40 +01:00
|
|
|
ec_valid = True
|
|
|
|
if (len(e) != 64):
|
|
|
|
ec_valid = False
|
2016-10-30 18:44:57 +01:00
|
|
|
else:
|
|
|
|
|
2016-10-30 18:57:40 +01:00
|
|
|
for i in range(len(e) >> 1):
|
|
|
|
if (i > 0):
|
|
|
|
txt += ","
|
|
|
|
txts = "0x" + e[i * 2:i * 2 + 2]
|
2016-10-30 18:44:57 +01:00
|
|
|
try:
|
2016-10-30 18:57:40 +01:00
|
|
|
int(txts, 16)
|
2016-10-30 18:44:57 +01:00
|
|
|
except:
|
2016-10-30 18:57:40 +01:00
|
|
|
ec_valid = False
|
|
|
|
txt += txts
|
2016-10-30 18:44:57 +01:00
|
|
|
if (not ec_valid):
|
|
|
|
txt = "0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0"
|
2016-10-30 18:57:40 +01:00
|
|
|
print("Invalid AES256 encryption key, not 64 bits hex: " + e)
|
2014-06-11 15:41:03 +02:00
|
|
|
|
2017-08-26 18:53:49 +02:00
|
|
|
f = open("script_encryption_key.gen.cpp", "w")
|
2017-07-19 22:00:46 +02:00
|
|
|
f.write("#include \"project_settings.h\"\nuint8_t script_encryption_key[32]={" + txt + "};\n")
|
2014-06-11 15:41:03 +02:00
|
|
|
f.close()
|
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2017-04-28 18:29:15 +02:00
|
|
|
# Add required thirdparty code. Header paths are hardcoded, we don't need to append
|
|
|
|
# to the include path (saves a few chars on the compiler invocation for touchy MSVC...)
|
|
|
|
thirdparty_dir = "#thirdparty/misc/"
|
|
|
|
thirdparty_sources = [
|
|
|
|
# C sources
|
|
|
|
"base64.c",
|
|
|
|
"fastlz.c",
|
|
|
|
"sha256.c",
|
Split thirdparty smaz.c out of compressed_translation.cpp
Code comes from https://github.com/antirez/smaz/blob/150e125cbae2e8fd20dd332432776ce13395d4d4/smaz.c
With a small modification to match Godot expectations:
```
diff --git a/thirdparty/core/smaz.c b/thirdparty/core/smaz.c
index 9b1ebc2..555dfea 100644
--- a/thirdparty/core/smaz.c
+++ b/thirdparty/core/smaz.c
@@ -14,7 +14,7 @@ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
#include <string.h>
/* Our compression codebook, used for compression */
-static char *Smaz_cb[241] = {
+static const char *Smaz_cb[241] = {
"\002s,\266", "\003had\232\002leW", "\003on \216", "", "\001yS",
"\002ma\255\002li\227", "\003or \260", "", "\002ll\230\003s t\277",
"\004fromg\002mel", "", "\003its\332", "\001z\333", "\003ingF", "\001>\336",
@@ -89,7 +89,7 @@ static char *Smaz_rcb[254] = {
"e, ", " it", "whi", " ma", "ge", "x", "e c", "men", ".com"
};
-int smaz_compress(char *in, int inlen, char *out, int outlen) {
+int smaz_compress(const char *in, int inlen, char *out, int outlen) {
unsigned int h1,h2,h3=0;
int verblen = 0, _outlen = outlen;
char verb[256], *_out = out;
@@ -167,7 +167,7 @@ out:
return out-_out;
}
-int smaz_decompress(char *in, int inlen, char *out, int outlen) {
+int smaz_decompress(const char *in, int inlen, char *out, int outlen) {
unsigned char *c = (unsigned char*) in;
char *_out = out;
int _outlen = outlen;
@@ -192,7 +192,7 @@ int smaz_decompress(char *in, int inlen, char *out, int outlen) {
inlen -= 2+len;
} else {
/* Codebook entry */
- char *s = Smaz_rcb[*c];
+ const char *s = Smaz_rcb[*c];
int len = strlen(s);
if (outlen < len) return _outlen+1;
diff --git a/thirdparty/core/smaz.h b/thirdparty/core/smaz.h
index a547d89..a9d8a33 100644
--- a/thirdparty/core/smaz.h
+++ b/thirdparty/core/smaz.h
@@ -14,7 +14,7 @@ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
#ifndef _SMAZ_H
#define _SMAZ_H
-int smaz_compress(char *in, int inlen, char *out, int outlen);
-int smaz_decompress(char *in, int inlen, char *out, int outlen);
+int smaz_compress(const char *in, int inlen, char *out, int outlen);
+int smaz_decompress(const char *in, int inlen, char *out, int outlen);
#endif
```
2017-04-28 19:00:11 +02:00
|
|
|
"smaz.c",
|
2017-04-28 18:29:15 +02:00
|
|
|
|
|
|
|
# C++ sources
|
|
|
|
"aes256.cpp",
|
|
|
|
"hq2x.cpp",
|
|
|
|
"md5.cpp",
|
|
|
|
"pcg.cpp",
|
|
|
|
"triangulator.cpp",
|
|
|
|
]
|
|
|
|
thirdparty_sources = [thirdparty_dir + file for file in thirdparty_sources]
|
|
|
|
env.add_source_files(env.core_sources, thirdparty_sources)
|
|
|
|
|
|
|
|
# Minizip library, can be unbundled in theory
|
|
|
|
# However, our version has some custom modifications, so it won't compile with the system one
|
|
|
|
thirdparty_minizip_dir = "#thirdparty/minizip/"
|
|
|
|
thirdparty_minizip_sources = [
|
|
|
|
"ioapi.c",
|
|
|
|
"unzip.c",
|
|
|
|
"zip.c",
|
|
|
|
]
|
|
|
|
thirdparty_minizip_sources = [thirdparty_minizip_dir + file for file in thirdparty_minizip_sources]
|
|
|
|
env.add_source_files(env.core_sources, thirdparty_minizip_sources)
|
|
|
|
|
2017-09-25 06:22:58 +02:00
|
|
|
if 'builtin_zstd' in env and env['builtin_zstd']:
|
2017-09-24 05:46:47 +02:00
|
|
|
SConscript("#thirdparty/zstd/SCsub")
|
2017-06-09 03:43:56 +02:00
|
|
|
|
2017-04-28 18:29:15 +02:00
|
|
|
|
2017-04-28 19:28:21 +02:00
|
|
|
# Godot's own sources
|
2016-10-30 18:57:40 +01:00
|
|
|
env.add_source_files(env.core_sources, "*.cpp")
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2014-06-11 15:41:03 +02:00
|
|
|
|
2017-04-28 18:29:15 +02:00
|
|
|
# Make binders
|
2014-02-10 02:10:30 +01:00
|
|
|
import make_binders
|
2017-06-23 17:03:41 +02:00
|
|
|
env.Command(['method_bind.gen.inc', 'method_bind_ext.gen.inc'], 'make_binders.py', make_binders.run)
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2017-04-28 18:29:15 +02:00
|
|
|
|
|
|
|
# Chain load SCsubs
|
2016-11-01 00:24:30 +01:00
|
|
|
SConscript('os/SCsub')
|
|
|
|
SConscript('math/SCsub')
|
|
|
|
SConscript('io/SCsub')
|
|
|
|
SConscript('bind/SCsub')
|
2017-03-02 10:42:05 +01:00
|
|
|
SConscript('helper/SCsub')
|
2014-02-10 02:10:30 +01:00
|
|
|
|
|
|
|
|
2017-04-28 18:29:15 +02:00
|
|
|
# Build it all as a library
|
|
|
|
lib = env.Library("core", env.core_sources)
|
2014-02-10 02:10:30 +01:00
|
|
|
env.Prepend(LIBS=[lib])
|
2017-04-28 18:29:15 +02:00
|
|
|
Export('env')
|