forked from godotjs/javascript
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathecmascript_language.cpp
153 lines (126 loc) · 3.28 KB
/
ecmascript_language.cpp
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
153
#include "ecmascript_language.h"
#include "core/class_db.h"
#include "core/os/file_access.h"
ECMAScriptLanguage *ECMAScriptLanguage::singleton = NULL;
void ECMAScriptLanguage::get_registered_classes(List<Ref<ECMAScript> > &r_list) const {
for (const StringName *name = script_classes.next(NULL); name; name = script_classes.next(name)) {
r_list.push_back(script_classes.get(*name));
}
}
void ECMAScriptLanguage::init() {
ERR_FAIL_NULL(binding);
binding->initialize();
}
void ECMAScriptLanguage::finish() {
binding->uninitialize();
}
Error ECMAScriptLanguage::execute_file(const String &p_path) {
ERR_FAIL_NULL_V(binding, ERR_BUG);
FileAccessRef f = FileAccess::open(p_path, FileAccess::READ);
ERR_FAIL_COND_V(!f, ERR_INVALID_PARAMETER);
Vector<uint8_t> buff;
buff.resize(f->get_len() + 1);
f->get_buffer(buff.ptrw(), f->get_len());
buff.ptrw()[buff.size() - 1] = 0;
String source;
source.parse_utf8((const char *)buff.ptr(), buff.size());
return binding->eval_string(source);
}
Error ECMAScriptLanguage::eval_text(const String &p_source) {
ERR_FAIL_NULL_V(binding, ERR_BUG);
return binding->eval_string(p_source);
}
Error ECMAScriptLanguage::safe_eval_text(const String &p_source, String &err) {
ERR_FAIL_NULL_V(binding, ERR_BUG);
return binding->safe_eval_text(p_source, err);
}
void ECMAScriptLanguage::get_reserved_words(List<String> *p_words) const {
static const char *_reserved_words[] = {
"arguments",
"await",
"break",
"case",
"catch",
"class",
"const",
"continue",
"debugger",
"default",
"delete",
"do",
"else",
"enum",
"eval",
"export",
"extends",
"false",
"finally",
"for",
"function",
"if",
"implements",
"import",
"in",
"instanceof",
"interface",
"let",
"new",
"null",
"package",
"private",
"protected",
"public",
"return",
"static",
"super",
"switch",
"this",
"throw",
"true",
"try",
"typeof",
"var",
"void",
"while",
"with",
"yield",
0
};
const char **w = _reserved_words;
while (*w) {
p_words->push_back(*w);
w++;
}
}
void ECMAScriptLanguage::get_comment_delimiters(List<String> *p_delimiters) const {
p_delimiters->push_back("//"); // single-line comment
p_delimiters->push_back("/* */"); // delimited comment
}
void ECMAScriptLanguage::get_string_delimiters(List<String> *p_delimiters) const {
p_delimiters->push_back("' '");
p_delimiters->push_back("\" \"");
p_delimiters->push_back("` `");
}
void ECMAScriptLanguage::get_recognized_extensions(List<String> *p_extensions) const {
p_extensions->push_back("js");
}
void *ECMAScriptLanguage::alloc_instance_binding_data(Object *p_object) {
return binding->alloc_object_binding_data(p_object);
}
void ECMAScriptLanguage::free_instance_binding_data(void *p_data) {
binding->free_object_binding_data(p_data);
}
void ECMAScriptLanguage::refcount_incremented_instance_binding(Object *p_object) {
binding->godot_refcount_incremented(static_cast<Reference *>(p_object));
}
bool ECMAScriptLanguage::refcount_decremented_instance_binding(Object *p_object) {
return binding->godot_refcount_decremented(static_cast<Reference *>(p_object));
}
ECMAScriptLanguage::ECMAScriptLanguage() {
ERR_FAIL_COND(singleton);
singleton = this;
binding = memnew(DuktapeBindingHelper);
}
ECMAScriptLanguage::~ECMAScriptLanguage() {
memdelete(binding);
}