Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
godotengine
GitHub Repository: godotengine/godot
Path: blob/master/core/object/script_language.h
9903 views
1
/**************************************************************************/
2
/* script_language.h */
3
/**************************************************************************/
4
/* This file is part of: */
5
/* GODOT ENGINE */
6
/* https://godotengine.org */
7
/**************************************************************************/
8
/* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */
9
/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
10
/* */
11
/* Permission is hereby granted, free of charge, to any person obtaining */
12
/* a copy of this software and associated documentation files (the */
13
/* "Software"), to deal in the Software without restriction, including */
14
/* without limitation the rights to use, copy, modify, merge, publish, */
15
/* distribute, sublicense, and/or sell copies of the Software, and to */
16
/* permit persons to whom the Software is furnished to do so, subject to */
17
/* the following conditions: */
18
/* */
19
/* The above copyright notice and this permission notice shall be */
20
/* included in all copies or substantial portions of the Software. */
21
/* */
22
/* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, */
23
/* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF */
24
/* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. */
25
/* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY */
26
/* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, */
27
/* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE */
28
/* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
29
/**************************************************************************/
30
31
#pragma once
32
33
#include "core/doc_data.h"
34
#include "core/io/resource.h"
35
#include "core/object/script_backtrace.h"
36
#include "core/object/script_instance.h"
37
#include "core/templates/pair.h"
38
#include "core/templates/safe_refcount.h"
39
#include "core/variant/typed_array.h"
40
41
class ScriptLanguage;
42
template <typename T>
43
class TypedArray;
44
45
typedef void (*ScriptEditRequestFunction)(const String &p_path);
46
47
class ScriptServer {
48
enum {
49
MAX_LANGUAGES = 16
50
};
51
52
static ScriptLanguage *_languages[MAX_LANGUAGES];
53
static int _language_count;
54
static bool languages_ready;
55
static Mutex languages_mutex;
56
static thread_local bool thread_entered;
57
58
static bool scripting_enabled;
59
static bool reload_scripts_on_save;
60
61
struct GlobalScriptClass {
62
StringName language;
63
String path;
64
StringName base;
65
bool is_abstract = false;
66
bool is_tool = false;
67
};
68
69
static HashMap<StringName, GlobalScriptClass> global_classes;
70
static HashMap<StringName, Vector<StringName>> inheriters_cache;
71
static bool inheriters_cache_dirty;
72
73
public:
74
static ScriptEditRequestFunction edit_request_func;
75
76
static void set_scripting_enabled(bool p_enabled);
77
static bool is_scripting_enabled();
78
_FORCE_INLINE_ static int get_language_count() { return _language_count; }
79
static ScriptLanguage *get_language(int p_idx);
80
static ScriptLanguage *get_language_for_extension(const String &p_extension);
81
static Error register_language(ScriptLanguage *p_language);
82
static Error unregister_language(const ScriptLanguage *p_language);
83
84
static void set_reload_scripts_on_save(bool p_enable);
85
static bool is_reload_scripts_on_save_enabled();
86
87
static void thread_enter();
88
static void thread_exit();
89
90
static void global_classes_clear();
91
static void add_global_class(const StringName &p_class, const StringName &p_base, const StringName &p_language, const String &p_path, bool p_is_abstract, bool p_is_tool);
92
static void remove_global_class(const StringName &p_class);
93
static void remove_global_class_by_path(const String &p_path);
94
static bool is_global_class(const StringName &p_class);
95
static StringName get_global_class_language(const StringName &p_class);
96
static String get_global_class_path(const String &p_class);
97
static StringName get_global_class_base(const String &p_class);
98
static StringName get_global_class_native_base(const String &p_class);
99
static bool is_global_class_abstract(const String &p_class);
100
static bool is_global_class_tool(const String &p_class);
101
static void get_global_class_list(List<StringName> *r_global_classes);
102
static void get_inheriters_list(const StringName &p_base_type, List<StringName> *r_classes);
103
static void save_global_classes();
104
105
static Vector<Ref<ScriptBacktrace>> capture_script_backtraces(bool p_include_variables = false);
106
107
static void init_languages();
108
static void finish_languages();
109
static bool are_languages_initialized();
110
static bool thread_is_entered();
111
};
112
113
class PlaceHolderScriptInstance;
114
115
class Script : public Resource {
116
GDCLASS(Script, Resource);
117
OBJ_SAVE_TYPE(Script);
118
119
protected:
120
// Scripts are reloaded via the Script Editor when edited in Godot,
121
// the LSP server when edited in a connected external editor, or
122
// through EditorFileSystem::_update_script_documentation when updated directly on disk.
123
virtual bool editor_can_reload_from_file() override { return false; }
124
void _notification(int p_what);
125
static void _bind_methods();
126
127
friend class PlaceHolderScriptInstance;
128
virtual void _placeholder_erased(PlaceHolderScriptInstance *p_placeholder) {}
129
130
Variant _get_property_default_value(const StringName &p_property);
131
TypedArray<Dictionary> _get_script_property_list();
132
TypedArray<Dictionary> _get_script_method_list();
133
TypedArray<Dictionary> _get_script_signal_list();
134
Dictionary _get_script_constant_map();
135
136
void _set_debugger_break_language();
137
138
Variant _get_rpc_config_bind() const {
139
return get_rpc_config().duplicate(true);
140
}
141
142
public:
143
virtual void reload_from_file() override;
144
145
virtual bool can_instantiate() const = 0;
146
147
virtual Ref<Script> get_base_script() const = 0; //for script inheritance
148
virtual StringName get_global_name() const = 0;
149
virtual bool inherits_script(const Ref<Script> &p_script) const = 0;
150
151
virtual StringName get_instance_base_type() const = 0; // this may not work in all scripts, will return empty if so
152
virtual ScriptInstance *instance_create(Object *p_this) = 0;
153
virtual PlaceHolderScriptInstance *placeholder_instance_create(Object *p_this) { return nullptr; }
154
virtual bool instance_has(const Object *p_this) const = 0;
155
156
virtual bool has_source_code() const = 0;
157
virtual String get_source_code() const = 0;
158
virtual void set_source_code(const String &p_code) = 0;
159
virtual Error reload(bool p_keep_state = false) = 0;
160
161
#ifdef TOOLS_ENABLED
162
virtual StringName get_doc_class_name() const = 0;
163
virtual Vector<DocData::ClassDoc> get_documentation() const = 0;
164
virtual String get_class_icon_path() const = 0;
165
virtual PropertyInfo get_class_category() const;
166
#endif // TOOLS_ENABLED
167
168
// TODO: In the next compat breakage rename to `*_script_*` to disambiguate from `Object::has_method()`.
169
virtual bool has_method(const StringName &p_method) const = 0;
170
virtual bool has_static_method(const StringName &p_method) const { return false; }
171
172
virtual int get_script_method_argument_count(const StringName &p_method, bool *r_is_valid = nullptr) const;
173
174
virtual MethodInfo get_method_info(const StringName &p_method) const = 0;
175
176
virtual bool is_tool() const = 0;
177
virtual bool is_valid() const = 0;
178
virtual bool is_abstract() const = 0;
179
180
virtual ScriptLanguage *get_language() const = 0;
181
182
virtual bool has_script_signal(const StringName &p_signal) const = 0;
183
virtual void get_script_signal_list(List<MethodInfo> *r_signals) const = 0;
184
185
virtual bool get_property_default_value(const StringName &p_property, Variant &r_value) const = 0;
186
187
virtual void update_exports() {} //editor tool
188
virtual void get_script_method_list(List<MethodInfo> *p_list) const = 0;
189
virtual void get_script_property_list(List<PropertyInfo> *p_list) const = 0;
190
191
virtual int get_member_line(const StringName &p_member) const { return -1; }
192
193
virtual void get_constants(HashMap<StringName, Variant> *p_constants) {}
194
virtual void get_members(HashSet<StringName> *p_members) {}
195
196
virtual bool is_placeholder_fallback_enabled() const { return false; }
197
198
virtual const Variant get_rpc_config() const = 0;
199
200
Script() {}
201
};
202
203
class ScriptLanguage : public Object {
204
GDCLASS(ScriptLanguage, Object)
205
206
protected:
207
static void _bind_methods();
208
209
public:
210
virtual String get_name() const = 0;
211
212
/* LANGUAGE FUNCTIONS */
213
virtual void init() = 0;
214
virtual String get_type() const = 0;
215
virtual String get_extension() const = 0;
216
virtual void finish() = 0;
217
218
/* EDITOR FUNCTIONS */
219
struct Warning {
220
int start_line = -1, end_line = -1;
221
int code;
222
String string_code;
223
String message;
224
};
225
226
struct ScriptError {
227
String path;
228
int line = -1;
229
int column = -1;
230
String message;
231
};
232
233
enum TemplateLocation {
234
TEMPLATE_BUILT_IN,
235
TEMPLATE_EDITOR,
236
TEMPLATE_PROJECT
237
};
238
239
enum ScriptNameCasing {
240
SCRIPT_NAME_CASING_AUTO,
241
SCRIPT_NAME_CASING_PASCAL_CASE,
242
SCRIPT_NAME_CASING_SNAKE_CASE,
243
SCRIPT_NAME_CASING_KEBAB_CASE,
244
SCRIPT_NAME_CASING_CAMEL_CASE,
245
};
246
247
struct ScriptTemplate {
248
String inherit = "Object";
249
String name;
250
String description;
251
String content;
252
int id = 0;
253
TemplateLocation origin = TemplateLocation::TEMPLATE_BUILT_IN;
254
255
String get_hash() const {
256
return itos(origin) + inherit + name;
257
}
258
};
259
260
void get_core_type_words(List<String> *p_core_type_words) const;
261
virtual Vector<String> get_reserved_words() const = 0;
262
virtual bool is_control_flow_keyword(const String &p_string) const = 0;
263
virtual Vector<String> get_comment_delimiters() const = 0;
264
virtual Vector<String> get_doc_comment_delimiters() const = 0;
265
virtual Vector<String> get_string_delimiters() const = 0;
266
virtual Ref<Script> make_template(const String &p_template, const String &p_class_name, const String &p_base_class_name) const { return Ref<Script>(); }
267
virtual Vector<ScriptTemplate> get_built_in_templates(const StringName &p_object) { return Vector<ScriptTemplate>(); }
268
virtual bool is_using_templates() { return false; }
269
virtual bool validate(const String &p_script, const String &p_path = "", List<String> *r_functions = nullptr, List<ScriptError> *r_errors = nullptr, List<Warning> *r_warnings = nullptr, HashSet<int> *r_safe_lines = nullptr) const = 0;
270
virtual String validate_path(const String &p_path) const { return ""; }
271
virtual Script *create_script() const = 0;
272
#ifndef DISABLE_DEPRECATED
273
virtual bool has_named_classes() const = 0;
274
#endif
275
virtual bool supports_builtin_mode() const = 0;
276
virtual bool supports_documentation() const { return false; }
277
virtual bool can_inherit_from_file() const { return false; }
278
virtual int find_function(const String &p_function, const String &p_code) const = 0;
279
virtual String make_function(const String &p_class, const String &p_name, const PackedStringArray &p_args) const = 0;
280
virtual bool can_make_function() const { return true; }
281
virtual Error open_in_external_editor(const Ref<Script> &p_script, int p_line, int p_col) { return ERR_UNAVAILABLE; }
282
virtual bool overrides_external_editor() { return false; }
283
virtual ScriptNameCasing preferred_file_name_casing() const { return SCRIPT_NAME_CASING_SNAKE_CASE; }
284
285
// Keep enums in sync with:
286
// scene/gui/code_edit.h - CodeEdit::CodeCompletionKind
287
enum CodeCompletionKind {
288
CODE_COMPLETION_KIND_CLASS,
289
CODE_COMPLETION_KIND_FUNCTION,
290
CODE_COMPLETION_KIND_SIGNAL,
291
CODE_COMPLETION_KIND_VARIABLE,
292
CODE_COMPLETION_KIND_MEMBER,
293
CODE_COMPLETION_KIND_ENUM,
294
CODE_COMPLETION_KIND_CONSTANT,
295
CODE_COMPLETION_KIND_NODE_PATH,
296
CODE_COMPLETION_KIND_FILE_PATH,
297
CODE_COMPLETION_KIND_PLAIN_TEXT,
298
CODE_COMPLETION_KIND_MAX
299
};
300
301
// scene/gui/code_edit.h - CodeEdit::CodeCompletionLocation
302
enum CodeCompletionLocation {
303
LOCATION_LOCAL = 0,
304
LOCATION_PARENT_MASK = 1 << 8,
305
LOCATION_OTHER_USER_CODE = 1 << 9,
306
LOCATION_OTHER = 1 << 10,
307
};
308
309
struct CodeCompletionOption {
310
CodeCompletionKind kind = CODE_COMPLETION_KIND_PLAIN_TEXT;
311
String display;
312
String insert_text;
313
Color font_color;
314
Ref<Resource> icon;
315
Variant default_value;
316
Vector<Pair<int, int>> matches;
317
Vector<Pair<int, int>> last_matches = { { -1, -1 } }; // This value correspond to an impossible match
318
int location = LOCATION_OTHER;
319
String theme_color_name;
320
321
CodeCompletionOption() {}
322
323
CodeCompletionOption(const String &p_text, CodeCompletionKind p_kind, int p_location = LOCATION_OTHER, const String &p_theme_color_name = "") {
324
display = p_text;
325
insert_text = p_text;
326
kind = p_kind;
327
location = p_location;
328
theme_color_name = p_theme_color_name;
329
}
330
331
TypedArray<int> get_option_characteristics(const String &p_base);
332
void clear_characteristics();
333
TypedArray<int> get_option_cached_characteristics() const;
334
335
private:
336
TypedArray<int> charac;
337
};
338
339
virtual Error complete_code(const String &p_code, const String &p_path, Object *p_owner, List<CodeCompletionOption> *r_options, bool &r_force, String &r_call_hint) { return ERR_UNAVAILABLE; }
340
341
enum LookupResultType {
342
LOOKUP_RESULT_SCRIPT_LOCATION, // Use if none of the options below apply.
343
LOOKUP_RESULT_CLASS,
344
LOOKUP_RESULT_CLASS_CONSTANT,
345
LOOKUP_RESULT_CLASS_PROPERTY,
346
LOOKUP_RESULT_CLASS_METHOD,
347
LOOKUP_RESULT_CLASS_SIGNAL,
348
LOOKUP_RESULT_CLASS_ENUM,
349
LOOKUP_RESULT_CLASS_TBD_GLOBALSCOPE, // Deprecated.
350
LOOKUP_RESULT_CLASS_ANNOTATION,
351
LOOKUP_RESULT_LOCAL_CONSTANT,
352
LOOKUP_RESULT_LOCAL_VARIABLE,
353
LOOKUP_RESULT_MAX,
354
};
355
356
struct LookupResult {
357
LookupResultType type;
358
359
// For `CLASS_*`.
360
String class_name;
361
String class_member;
362
363
// For `LOCAL_*`.
364
String description;
365
bool is_deprecated = false;
366
String deprecated_message;
367
bool is_experimental = false;
368
String experimental_message;
369
370
// For `LOCAL_*`.
371
String doc_type;
372
String enumeration;
373
bool is_bitfield = false;
374
375
// For `LOCAL_*`.
376
String value;
377
378
// `SCRIPT_LOCATION` and `LOCAL_*` must have, `CLASS_*` can have.
379
Ref<Script> script;
380
String script_path;
381
int location = -1;
382
};
383
384
virtual Error lookup_code(const String &p_code, const String &p_symbol, const String &p_path, Object *p_owner, LookupResult &r_result) { return ERR_UNAVAILABLE; }
385
386
virtual void auto_indent_code(String &p_code, int p_from_line, int p_to_line) const = 0;
387
virtual void add_global_constant(const StringName &p_variable, const Variant &p_value) = 0;
388
virtual void add_named_global_constant(const StringName &p_name, const Variant &p_value) {}
389
virtual void remove_named_global_constant(const StringName &p_name) {}
390
391
/* MULTITHREAD FUNCTIONS */
392
393
//some VMs need to be notified of thread creation/exiting to allocate a stack
394
virtual void thread_enter() {}
395
virtual void thread_exit() {}
396
397
/* DEBUGGER FUNCTIONS */
398
struct StackInfo {
399
String file;
400
String func;
401
int line;
402
};
403
404
virtual String debug_get_error() const = 0;
405
virtual int debug_get_stack_level_count() const = 0;
406
virtual int debug_get_stack_level_line(int p_level) const = 0;
407
virtual String debug_get_stack_level_function(int p_level) const = 0;
408
virtual String debug_get_stack_level_source(int p_level) const = 0;
409
virtual void debug_get_stack_level_locals(int p_level, List<String> *p_locals, List<Variant> *p_values, int p_max_subitems = -1, int p_max_depth = -1) = 0;
410
virtual void debug_get_stack_level_members(int p_level, List<String> *p_members, List<Variant> *p_values, int p_max_subitems = -1, int p_max_depth = -1) = 0;
411
virtual ScriptInstance *debug_get_stack_level_instance(int p_level) { return nullptr; }
412
virtual void debug_get_globals(List<String> *p_globals, List<Variant> *p_values, int p_max_subitems = -1, int p_max_depth = -1) = 0;
413
virtual String debug_parse_stack_level_expression(int p_level, const String &p_expression, int p_max_subitems = -1, int p_max_depth = -1) = 0;
414
415
virtual Vector<StackInfo> debug_get_current_stack_info() { return Vector<StackInfo>(); }
416
417
virtual void reload_all_scripts() = 0;
418
virtual void reload_scripts(const Array &p_scripts, bool p_soft_reload) = 0;
419
virtual void reload_tool_script(const Ref<Script> &p_script, bool p_soft_reload) = 0;
420
/* LOADER FUNCTIONS */
421
422
virtual void get_recognized_extensions(List<String> *p_extensions) const = 0;
423
virtual void get_public_functions(List<MethodInfo> *p_functions) const = 0;
424
virtual void get_public_constants(List<Pair<String, Variant>> *p_constants) const = 0;
425
virtual void get_public_annotations(List<MethodInfo> *p_annotations) const = 0;
426
427
struct ProfilingInfo {
428
StringName signature;
429
uint64_t call_count;
430
uint64_t total_time;
431
uint64_t self_time;
432
uint64_t internal_time;
433
};
434
435
virtual void profiling_start() = 0;
436
virtual void profiling_stop() = 0;
437
virtual void profiling_set_save_native_calls(bool p_enable) = 0;
438
439
virtual int profiling_get_accumulated_data(ProfilingInfo *p_info_arr, int p_info_max) = 0;
440
virtual int profiling_get_frame_data(ProfilingInfo *p_info_arr, int p_info_max) = 0;
441
442
virtual void frame();
443
444
virtual bool handles_global_class_type(const String &p_type) const { return false; }
445
virtual String get_global_class_name(const String &p_path, String *r_base_type = nullptr, String *r_icon_path = nullptr, bool *r_is_abstract = nullptr, bool *r_is_tool = nullptr) const { return String(); }
446
447
virtual ~ScriptLanguage() {}
448
};
449
450
VARIANT_ENUM_CAST(ScriptLanguage::ScriptNameCasing);
451
452
extern uint8_t script_encryption_key[32];
453
454
class PlaceHolderScriptInstance : public ScriptInstance {
455
Object *owner = nullptr;
456
List<PropertyInfo> properties;
457
HashMap<StringName, Variant> values;
458
HashMap<StringName, Variant> constants;
459
ScriptLanguage *language = nullptr;
460
Ref<Script> script;
461
462
public:
463
virtual bool set(const StringName &p_name, const Variant &p_value) override;
464
virtual bool get(const StringName &p_name, Variant &r_ret) const override;
465
virtual void get_property_list(List<PropertyInfo> *p_properties) const override;
466
virtual Variant::Type get_property_type(const StringName &p_name, bool *r_is_valid = nullptr) const override;
467
virtual void validate_property(PropertyInfo &p_property) const override {}
468
469
virtual bool property_can_revert(const StringName &p_name) const override { return false; }
470
virtual bool property_get_revert(const StringName &p_name, Variant &r_ret) const override { return false; }
471
472
virtual void get_method_list(List<MethodInfo> *p_list) const override;
473
virtual bool has_method(const StringName &p_method) const override;
474
475
virtual int get_method_argument_count(const StringName &p_method, bool *r_is_valid = nullptr) const override {
476
if (r_is_valid) {
477
*r_is_valid = false;
478
}
479
return 0;
480
}
481
482
virtual Variant callp(const StringName &p_method, const Variant **p_args, int p_argcount, Callable::CallError &r_error) override;
483
virtual void notification(int p_notification, bool p_reversed = false) override {}
484
485
virtual Ref<Script> get_script() const override { return script; }
486
487
virtual ScriptLanguage *get_language() override { return language; }
488
489
Object *get_owner() override { return owner; }
490
491
void update(const List<PropertyInfo> &p_properties, const HashMap<StringName, Variant> &p_values); //likely changed in editor
492
493
virtual bool is_placeholder() const override { return true; }
494
495
virtual void property_set_fallback(const StringName &p_name, const Variant &p_value, bool *r_valid = nullptr) override;
496
virtual Variant property_get_fallback(const StringName &p_name, bool *r_valid = nullptr) override;
497
498
virtual const Variant get_rpc_config() const override { return Variant(); }
499
500
PlaceHolderScriptInstance(ScriptLanguage *p_language, Ref<Script> p_script, Object *p_owner);
501
~PlaceHolderScriptInstance();
502
};
503
504