Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
godotengine
GitHub Repository: godotengine/godot
Path: blob/master/core/object/script_language.h
20813 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/variant/typed_array.h"
39
40
class ScriptLanguage;
41
template <typename T>
42
class TypedArray;
43
44
typedef void (*ScriptEditRequestFunction)(const String &p_path);
45
46
class ScriptServer {
47
enum {
48
MAX_LANGUAGES = 16
49
};
50
51
static ScriptLanguage *_languages[MAX_LANGUAGES];
52
static int _language_count;
53
static bool languages_ready;
54
static Mutex languages_mutex;
55
static thread_local bool thread_entered;
56
57
static bool scripting_enabled;
58
static bool reload_scripts_on_save;
59
60
struct GlobalScriptClass {
61
StringName language;
62
String path;
63
StringName base;
64
bool is_abstract = false;
65
bool is_tool = false;
66
};
67
68
static HashMap<StringName, GlobalScriptClass> global_classes;
69
static HashMap<StringName, Vector<StringName>> inheriters_cache;
70
static bool inheriters_cache_dirty;
71
72
public:
73
static void set_scripting_enabled(bool p_enabled);
74
static bool is_scripting_enabled();
75
_FORCE_INLINE_ static int get_language_count() { return _language_count; }
76
static ScriptLanguage *get_language(int p_idx);
77
static ScriptLanguage *get_language_for_extension(const String &p_extension);
78
static Error register_language(ScriptLanguage *p_language);
79
static Error unregister_language(const ScriptLanguage *p_language);
80
81
static void set_reload_scripts_on_save(bool p_enable);
82
static bool is_reload_scripts_on_save_enabled();
83
84
static void thread_enter();
85
static void thread_exit();
86
87
static void global_classes_clear();
88
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);
89
static void remove_global_class(const StringName &p_class);
90
static void remove_global_class_by_path(const String &p_path);
91
static bool is_global_class(const StringName &p_class);
92
static StringName get_global_class_language(const StringName &p_class);
93
static String get_global_class_path(const String &p_class);
94
static StringName get_global_class_base(const String &p_class);
95
static StringName get_global_class_native_base(const String &p_class);
96
static bool is_global_class_abstract(const String &p_class);
97
static bool is_global_class_tool(const String &p_class);
98
static void get_global_class_list(LocalVector<StringName> &r_global_classes);
99
static void get_inheriters_list(const StringName &p_base_type, List<StringName> *r_classes);
100
static void get_indirect_inheriters_list(const StringName &p_base_type, List<StringName> *r_classes);
101
static void save_global_classes();
102
103
static Vector<Ref<ScriptBacktrace>> capture_script_backtraces(bool p_include_variables = false);
104
105
static void init_languages();
106
static void finish_languages();
107
static bool are_languages_initialized();
108
static bool thread_is_entered();
109
};
110
111
class PlaceHolderScriptInstance;
112
113
class Script : public Resource {
114
GDCLASS(Script, Resource);
115
OBJ_SAVE_TYPE(Script);
116
117
protected:
118
// Scripts are reloaded via the Script Editor when edited in Godot,
119
// the LSP server when edited in a connected external editor, or
120
// through EditorFileSystem::_update_script_documentation when updated directly on disk.
121
virtual bool editor_can_reload_from_file() override { return false; }
122
void _notification(int p_what);
123
static void _bind_methods();
124
125
friend class PlaceHolderScriptInstance;
126
virtual void _placeholder_erased(PlaceHolderScriptInstance *p_placeholder) {}
127
128
Variant _get_property_default_value(const StringName &p_property);
129
TypedArray<Dictionary> _get_script_property_list();
130
TypedArray<Dictionary> _get_script_method_list();
131
TypedArray<Dictionary> _get_script_signal_list();
132
Dictionary _get_script_constant_map();
133
134
void _set_debugger_break_language();
135
136
Variant _get_rpc_config_bind() const {
137
return get_rpc_config().duplicate(true);
138
}
139
140
public:
141
static constexpr AncestralClass static_ancestral_class = AncestralClass::SCRIPT;
142
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
_define_ancestry(AncestralClass::SCRIPT);
202
}
203
};
204
205
class ScriptLanguage : public Object {
206
GDCLASS(ScriptLanguage, Object)
207
208
protected:
209
static void _bind_methods();
210
211
public:
212
virtual String get_name() const = 0;
213
214
/* LANGUAGE FUNCTIONS */
215
virtual void init() = 0;
216
virtual String get_type() const = 0;
217
virtual String get_extension() const = 0;
218
virtual void finish() = 0;
219
220
/* EDITOR FUNCTIONS */
221
struct Warning {
222
int start_line = 0;
223
int end_line = 0;
224
int code;
225
String string_code;
226
String message;
227
};
228
229
struct ScriptError {
230
String path;
231
int line = -1;
232
int column = -1;
233
String message;
234
};
235
236
enum TemplateLocation {
237
TEMPLATE_BUILT_IN,
238
TEMPLATE_EDITOR,
239
TEMPLATE_PROJECT
240
};
241
242
enum ScriptNameCasing {
243
SCRIPT_NAME_CASING_AUTO,
244
SCRIPT_NAME_CASING_PASCAL_CASE,
245
SCRIPT_NAME_CASING_SNAKE_CASE,
246
SCRIPT_NAME_CASING_KEBAB_CASE,
247
SCRIPT_NAME_CASING_CAMEL_CASE,
248
};
249
250
struct ScriptTemplate {
251
String inherit = "Object";
252
String name;
253
String description;
254
String content;
255
int id = 0;
256
TemplateLocation origin = TemplateLocation::TEMPLATE_BUILT_IN;
257
258
String get_hash() const {
259
return itos(origin) + inherit + name;
260
}
261
};
262
263
void get_core_type_words(List<String> *p_core_type_words) const;
264
virtual Vector<String> get_reserved_words() const = 0;
265
virtual bool is_control_flow_keyword(const String &p_string) const = 0;
266
virtual Vector<String> get_comment_delimiters() const = 0;
267
virtual Vector<String> get_doc_comment_delimiters() const = 0;
268
virtual Vector<String> get_string_delimiters() const = 0;
269
virtual Ref<Script> make_template(const String &p_template, const String &p_class_name, const String &p_base_class_name) const { return Ref<Script>(); }
270
virtual Vector<ScriptTemplate> get_built_in_templates(const StringName &p_object) { return Vector<ScriptTemplate>(); }
271
virtual bool is_using_templates() { return false; }
272
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;
273
virtual String validate_path(const String &p_path) const { return ""; }
274
virtual bool supports_builtin_mode() const = 0;
275
virtual bool supports_documentation() const { return false; }
276
virtual bool can_inherit_from_file() const { return false; }
277
virtual int find_function(const String &p_function, const String &p_code) const = 0;
278
virtual String make_function(const String &p_class, const String &p_name, const PackedStringArray &p_args) const = 0;
279
virtual bool can_make_function() const { return true; }
280
virtual Error open_in_external_editor(const Ref<Script> &p_script, int p_line, int p_col) { return ERR_UNAVAILABLE; }
281
virtual bool overrides_external_editor() { return false; }
282
virtual ScriptNameCasing preferred_file_name_casing() const { return SCRIPT_NAME_CASING_SNAKE_CASE; }
283
284
// Keep enums in sync with:
285
// scene/gui/code_edit.h - CodeEdit::CodeCompletionKind
286
enum CodeCompletionKind {
287
CODE_COMPLETION_KIND_CLASS,
288
CODE_COMPLETION_KIND_FUNCTION,
289
CODE_COMPLETION_KIND_SIGNAL,
290
CODE_COMPLETION_KIND_VARIABLE,
291
CODE_COMPLETION_KIND_MEMBER,
292
CODE_COMPLETION_KIND_ENUM,
293
CODE_COMPLETION_KIND_CONSTANT,
294
CODE_COMPLETION_KIND_NODE_PATH,
295
CODE_COMPLETION_KIND_FILE_PATH,
296
CODE_COMPLETION_KIND_PLAIN_TEXT,
297
CODE_COMPLETION_KIND_MAX
298
};
299
300
// scene/gui/code_edit.h - CodeEdit::CodeCompletionLocation
301
enum CodeCompletionLocation {
302
LOCATION_LOCAL = 0,
303
LOCATION_PARENT_MASK = 1 << 8,
304
LOCATION_OTHER_USER_CODE = 1 << 9,
305
LOCATION_OTHER = 1 << 10,
306
};
307
308
struct CodeCompletionOption {
309
CodeCompletionKind kind = CODE_COMPLETION_KIND_PLAIN_TEXT;
310
String display;
311
String insert_text;
312
Color font_color;
313
Ref<Resource> icon;
314
Variant default_value;
315
Vector<Pair<int, int>> matches;
316
bool matches_dirty = true; // Must be set when mutating `matches`, so that sorting characteristics are recalculated.
317
int location = LOCATION_OTHER;
318
String theme_color_name;
319
320
CodeCompletionOption() {}
321
322
CodeCompletionOption(const String &p_text, CodeCompletionKind p_kind, int p_location = LOCATION_OTHER, const String &p_theme_color_name = "") {
323
display = p_text;
324
insert_text = p_text;
325
kind = p_kind;
326
location = p_location;
327
theme_color_name = p_theme_color_name;
328
}
329
330
TypedArray<int> get_option_characteristics(const String &p_base);
331
void clear_characteristics();
332
TypedArray<int> get_option_cached_characteristics() const;
333
334
private:
335
TypedArray<int> charac;
336
};
337
338
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; }
339
340
enum LookupResultType {
341
LOOKUP_RESULT_SCRIPT_LOCATION, // Use if none of the options below apply.
342
LOOKUP_RESULT_CLASS,
343
LOOKUP_RESULT_CLASS_CONSTANT,
344
LOOKUP_RESULT_CLASS_PROPERTY,
345
LOOKUP_RESULT_CLASS_METHOD,
346
LOOKUP_RESULT_CLASS_SIGNAL,
347
LOOKUP_RESULT_CLASS_ENUM,
348
LOOKUP_RESULT_CLASS_TBD_GLOBALSCOPE, // Deprecated.
349
LOOKUP_RESULT_CLASS_ANNOTATION,
350
LOOKUP_RESULT_LOCAL_CONSTANT,
351
LOOKUP_RESULT_LOCAL_VARIABLE,
352
LOOKUP_RESULT_MAX,
353
};
354
355
struct LookupResult {
356
LookupResultType type;
357
358
// For `CLASS_*`.
359
String class_name;
360
String class_member;
361
362
// For `LOCAL_*`.
363
String description;
364
bool is_deprecated = false;
365
String deprecated_message;
366
bool is_experimental = false;
367
String experimental_message;
368
369
// For `LOCAL_*`.
370
String doc_type;
371
String enumeration;
372
bool is_bitfield = false;
373
374
// For `LOCAL_*`.
375
String value;
376
377
// `SCRIPT_LOCATION` and `LOCAL_*` must have, `CLASS_*` can have.
378
Ref<Script> script;
379
String script_path;
380
int location = -1;
381
};
382
383
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; }
384
385
virtual void auto_indent_code(String &p_code, int p_from_line, int p_to_line) const = 0;
386
virtual void add_global_constant(const StringName &p_variable, const Variant &p_value) = 0;
387
virtual void add_named_global_constant(const StringName &p_name, const Variant &p_value) {}
388
virtual void remove_named_global_constant(const StringName &p_name) {}
389
390
/* MULTITHREAD FUNCTIONS */
391
392
//some VMs need to be notified of thread creation/exiting to allocate a stack
393
virtual void thread_enter() {}
394
virtual void thread_exit() {}
395
396
/* DEBUGGER FUNCTIONS */
397
struct StackInfo {
398
String file;
399
String func;
400
int line;
401
};
402
403
virtual String debug_get_error() const = 0;
404
virtual int debug_get_stack_level_count() const = 0;
405
virtual int debug_get_stack_level_line(int p_level) const = 0;
406
virtual String debug_get_stack_level_function(int p_level) const = 0;
407
virtual String debug_get_stack_level_source(int p_level) const = 0;
408
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;
409
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;
410
virtual ScriptInstance *debug_get_stack_level_instance(int p_level) { return nullptr; }
411
virtual void debug_get_globals(List<String> *p_globals, List<Variant> *p_values, int p_max_subitems = -1, int p_max_depth = -1) = 0;
412
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;
413
414
virtual Vector<StackInfo> debug_get_current_stack_info() { return Vector<StackInfo>(); }
415
416
virtual void reload_all_scripts() = 0;
417
virtual void reload_scripts(const Array &p_scripts, bool p_soft_reload) = 0;
418
virtual void reload_tool_script(const Ref<Script> &p_script, bool p_soft_reload) = 0;
419
/* LOADER FUNCTIONS */
420
421
virtual void get_recognized_extensions(List<String> *p_extensions) const = 0;
422
virtual void get_public_functions(List<MethodInfo> *p_functions) const = 0;
423
virtual void get_public_constants(List<Pair<String, Variant>> *p_constants) const = 0;
424
virtual void get_public_annotations(List<MethodInfo> *p_annotations) const = 0;
425
426
struct ProfilingInfo {
427
StringName signature;
428
uint64_t call_count;
429
uint64_t total_time;
430
uint64_t self_time;
431
uint64_t internal_time;
432
};
433
434
virtual void profiling_start() = 0;
435
virtual void profiling_stop() = 0;
436
virtual void profiling_set_save_native_calls(bool p_enable) = 0;
437
438
virtual int profiling_get_accumulated_data(ProfilingInfo *p_info_arr, int p_info_max) = 0;
439
virtual int profiling_get_frame_data(ProfilingInfo *p_info_arr, int p_info_max) = 0;
440
441
virtual void frame();
442
443
virtual bool handles_global_class_type(const String &p_type) const { return false; }
444
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(); }
445
446
virtual ~ScriptLanguage() {}
447
};
448
449
VARIANT_ENUM_CAST(ScriptLanguage::ScriptNameCasing);
450
451
extern uint8_t script_encryption_key[32];
452
453
class PlaceHolderScriptInstance : public ScriptInstance {
454
Object *owner = nullptr;
455
List<PropertyInfo> properties;
456
HashMap<StringName, Variant> values;
457
HashMap<StringName, Variant> constants;
458
ScriptLanguage *language = nullptr;
459
Ref<Script> script;
460
461
public:
462
virtual bool set(const StringName &p_name, const Variant &p_value) override;
463
virtual bool get(const StringName &p_name, Variant &r_ret) const override;
464
virtual void get_property_list(List<PropertyInfo> *p_properties) const override;
465
virtual Variant::Type get_property_type(const StringName &p_name, bool *r_is_valid = nullptr) const override;
466
virtual void validate_property(PropertyInfo &p_property) const override {}
467
468
virtual bool property_can_revert(const StringName &p_name) const override { return false; }
469
virtual bool property_get_revert(const StringName &p_name, Variant &r_ret) const override { return false; }
470
471
virtual void get_method_list(List<MethodInfo> *p_list) const override;
472
virtual bool has_method(const StringName &p_method) const override;
473
474
virtual int get_method_argument_count(const StringName &p_method, bool *r_is_valid = nullptr) const override {
475
if (r_is_valid) {
476
*r_is_valid = false;
477
}
478
return 0;
479
}
480
481
virtual Variant callp(const StringName &p_method, const Variant **p_args, int p_argcount, Callable::CallError &r_error) override;
482
virtual void notification(int p_notification, bool p_reversed = false) override {}
483
484
virtual Ref<Script> get_script() const override { return script; }
485
486
virtual ScriptLanguage *get_language() override { return language; }
487
488
Object *get_owner() override { return owner; }
489
490
void update(const List<PropertyInfo> &p_properties, const HashMap<StringName, Variant> &p_values); //likely changed in editor
491
492
virtual bool is_placeholder() const override { return true; }
493
494
virtual void property_set_fallback(const StringName &p_name, const Variant &p_value, bool *r_valid = nullptr) override;
495
virtual Variant property_get_fallback(const StringName &p_name, bool *r_valid = nullptr) override;
496
497
virtual const Variant get_rpc_config() const override { return Variant(); }
498
499
PlaceHolderScriptInstance(ScriptLanguage *p_language, Ref<Script> p_script, Object *p_owner);
500
~PlaceHolderScriptInstance();
501
};
502
503