blob: abb3d5a9468862e59a344f38cac069a9b9bdf536 (
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
|
/*************************************************/
/* register_script_types.cpp */
/*************************************************/
/* This file is part of: */
/* GODOT ENGINE */
/*************************************************/
/* Source code within this file is: */
/* (c) 2007-2010 Juan Linietsky, Ariel Manzur */
/* All Rights Reserved. */
/*************************************************/
#include "register_types.h"
#include "gd_script.h"
#include "io/resource_loader.h"
#include "os/file_access.h"
#include "io/file_access_encrypted.h"
GDScriptLanguage *script_language_gd=NULL;
ResourceFormatLoaderGDScript *resource_loader_gd=NULL;
ResourceFormatSaverGDScript *resource_saver_gd=NULL;
#ifdef TOOLS_ENABLED
#include "tools/editor/editor_import_export.h"
#include "gd_tokenizer.h"
#include "tools/editor/editor_node.h"
#include "tools/editor/editor_settings.h"
class EditorExportGDScript : public EditorExportPlugin {
OBJ_TYPE(EditorExportGDScript,EditorExportPlugin);
public:
virtual Vector<uint8_t> custom_export(String& p_path,const Ref<EditorExportPlatform> &p_platform) {
//compile gdscript to bytecode
if (EditorImportExport::get_singleton()->script_get_action()!=EditorImportExport::SCRIPT_ACTION_NONE) {
if (p_path.ends_with(".gd")) {
Vector<uint8_t> file = FileAccess::get_file_as_array(p_path);
if (file.empty())
return file;
String txt;
txt.parse_utf8((const char*)file.ptr(),file.size());
file = GDTokenizerBuffer::parse_code_string(txt);
if (!file.empty()) {
if (EditorImportExport::get_singleton()->script_get_action()==EditorImportExport::SCRIPT_ACTION_ENCRYPT) {
String tmp_path=EditorSettings::get_singleton()->get_settings_path().plus_file("tmp/script.gde");
FileAccess *fa = FileAccess::open(tmp_path,FileAccess::WRITE);
String skey=EditorImportExport::get_singleton()->script_get_encryption_key().to_lower();
Vector<uint8_t> key;
key.resize(32);
for(int i=0;i<32;i++) {
int v=0;
if (i*2<skey.length()) {
CharType ct = skey[i*2];
if (ct>='0' && ct<='9')
ct=ct-'0';
else if (ct>='a' && ct<='f')
ct=10+ct-'a';
v|=ct<<4;
}
if (i*2+1<skey.length()) {
CharType ct = skey[i*2+1];
if (ct>='0' && ct<='9')
ct=ct-'0';
else if (ct>='a' && ct<='f')
ct=10+ct-'a';
v|=ct;
}
key[i]=v;
}
FileAccessEncrypted *fae=memnew(FileAccessEncrypted);
Error err = fae->open_and_parse(fa,key,FileAccessEncrypted::MODE_WRITE_AES256);
if (err==OK) {
fae->store_buffer(file.ptr(),file.size());
p_path=p_path.basename()+".gde";
}
memdelete(fae);
file=FileAccess::get_file_as_array(tmp_path);
return file;
} else {
p_path=p_path.basename()+".gdc";
return file;
}
}
}
}
return Vector<uint8_t>();
}
EditorExportGDScript(){}
};
static void register_editor_plugin() {
Ref<EditorExportGDScript> egd = memnew( EditorExportGDScript );
EditorImportExport::get_singleton()->add_export_plugin(egd);
}
#endif
void register_gdscript_types() {
script_language_gd=memnew( GDScriptLanguage );
script_language_gd->init();
ScriptServer::register_language(script_language_gd);
ObjectTypeDB::register_type<GDScript>();
resource_loader_gd=memnew( ResourceFormatLoaderGDScript );
ResourceLoader::add_resource_format_loader(resource_loader_gd);
resource_saver_gd=memnew( ResourceFormatSaverGDScript );
ResourceSaver::add_resource_format_saver(resource_saver_gd);
#ifdef TOOLS_ENABLED
EditorNode::add_init_callback(register_editor_plugin);
#endif
}
void unregister_gdscript_types() {
if (script_language_gd)
memdelete( script_language_gd );
if (resource_loader_gd)
memdelete( resource_loader_gd );
if (resource_saver_gd)
memdelete( resource_saver_gd );
}
|