script_language.h 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507
  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. #pragma once
  31. #include "core/doc_data.h"
  32. #include "core/io/resource.h"
  33. #include "core/object/script_instance.h"
  34. #include "core/templates/pair.h"
  35. #include "core/templates/safe_refcount.h"
  36. #include "core/variant/typed_array.h"
  37. class ScriptLanguage;
  38. template <typename T>
  39. class TypedArray;
  40. typedef void (*ScriptEditRequestFunction)(const String &p_path);
  41. class ScriptServer {
  42. enum {
  43. MAX_LANGUAGES = 16
  44. };
  45. static ScriptLanguage *_languages[MAX_LANGUAGES];
  46. static int _language_count;
  47. static bool languages_ready;
  48. static Mutex languages_mutex;
  49. static thread_local bool thread_entered;
  50. static bool scripting_enabled;
  51. static bool reload_scripts_on_save;
  52. struct GlobalScriptClass {
  53. StringName language;
  54. String path;
  55. StringName base;
  56. bool is_abstract = false;
  57. bool is_tool = false;
  58. };
  59. static HashMap<StringName, GlobalScriptClass> global_classes;
  60. static HashMap<StringName, Vector<StringName>> inheriters_cache;
  61. static bool inheriters_cache_dirty;
  62. public:
  63. static ScriptEditRequestFunction edit_request_func;
  64. static void set_scripting_enabled(bool p_enabled);
  65. static bool is_scripting_enabled();
  66. _FORCE_INLINE_ static int get_language_count() { return _language_count; }
  67. static ScriptLanguage *get_language(int p_idx);
  68. static ScriptLanguage *get_language_for_extension(const String &p_extension);
  69. static Error register_language(ScriptLanguage *p_language);
  70. static Error unregister_language(const ScriptLanguage *p_language);
  71. static void set_reload_scripts_on_save(bool p_enable);
  72. static bool is_reload_scripts_on_save_enabled();
  73. static void thread_enter();
  74. static void thread_exit();
  75. static void global_classes_clear();
  76. 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);
  77. static void remove_global_class(const StringName &p_class);
  78. static void remove_global_class_by_path(const String &p_path);
  79. static bool is_global_class(const StringName &p_class);
  80. static StringName get_global_class_language(const StringName &p_class);
  81. static String get_global_class_path(const String &p_class);
  82. static StringName get_global_class_base(const String &p_class);
  83. static StringName get_global_class_native_base(const String &p_class);
  84. static bool is_global_class_abstract(const String &p_class);
  85. static bool is_global_class_tool(const String &p_class);
  86. static void get_global_class_list(List<StringName> *r_global_classes);
  87. static void get_inheriters_list(const StringName &p_base_type, List<StringName> *r_classes);
  88. static void save_global_classes();
  89. static void init_languages();
  90. static void finish_languages();
  91. static bool are_languages_initialized();
  92. static bool thread_is_entered();
  93. };
  94. class PlaceHolderScriptInstance;
  95. class Script : public Resource {
  96. GDCLASS(Script, Resource);
  97. OBJ_SAVE_TYPE(Script);
  98. protected:
  99. // Scripts are reloaded via the Script Editor when edited in Godot,
  100. // the LSP server when edited in a connected external editor, or
  101. // through EditorFileSystem::_update_script_documentation when updated directly on disk.
  102. virtual bool editor_can_reload_from_file() override { return false; }
  103. void _notification(int p_what);
  104. static void _bind_methods();
  105. friend class PlaceHolderScriptInstance;
  106. virtual void _placeholder_erased(PlaceHolderScriptInstance *p_placeholder) {}
  107. Variant _get_property_default_value(const StringName &p_property);
  108. TypedArray<Dictionary> _get_script_property_list();
  109. TypedArray<Dictionary> _get_script_method_list();
  110. TypedArray<Dictionary> _get_script_signal_list();
  111. Dictionary _get_script_constant_map();
  112. void _set_debugger_break_language();
  113. public:
  114. virtual void reload_from_file() override;
  115. virtual bool can_instantiate() const = 0;
  116. virtual Ref<Script> get_base_script() const = 0; //for script inheritance
  117. virtual StringName get_global_name() const = 0;
  118. virtual bool inherits_script(const Ref<Script> &p_script) const = 0;
  119. virtual StringName get_instance_base_type() const = 0; // this may not work in all scripts, will return empty if so
  120. virtual ScriptInstance *instance_create(Object *p_this) = 0;
  121. virtual PlaceHolderScriptInstance *placeholder_instance_create(Object *p_this) { return nullptr; }
  122. virtual bool instance_has(const Object *p_this) const = 0;
  123. virtual bool has_source_code() const = 0;
  124. virtual String get_source_code() const = 0;
  125. virtual void set_source_code(const String &p_code) = 0;
  126. virtual Error reload(bool p_keep_state = false) = 0;
  127. #ifdef TOOLS_ENABLED
  128. virtual StringName get_doc_class_name() const = 0;
  129. virtual Vector<DocData::ClassDoc> get_documentation() const = 0;
  130. virtual String get_class_icon_path() const = 0;
  131. virtual PropertyInfo get_class_category() const;
  132. #endif // TOOLS_ENABLED
  133. // TODO: In the next compat breakage rename to `*_script_*` to disambiguate from `Object::has_method()`.
  134. virtual bool has_method(const StringName &p_method) const = 0;
  135. virtual bool has_static_method(const StringName &p_method) const { return false; }
  136. virtual int get_script_method_argument_count(const StringName &p_method, bool *r_is_valid = nullptr) const;
  137. virtual MethodInfo get_method_info(const StringName &p_method) const = 0;
  138. virtual bool is_tool() const = 0;
  139. virtual bool is_valid() const = 0;
  140. virtual bool is_abstract() const = 0;
  141. virtual ScriptLanguage *get_language() const = 0;
  142. virtual bool has_script_signal(const StringName &p_signal) const = 0;
  143. virtual void get_script_signal_list(List<MethodInfo> *r_signals) const = 0;
  144. virtual bool get_property_default_value(const StringName &p_property, Variant &r_value) const = 0;
  145. virtual void update_exports() {} //editor tool
  146. virtual void get_script_method_list(List<MethodInfo> *p_list) const = 0;
  147. virtual void get_script_property_list(List<PropertyInfo> *p_list) const = 0;
  148. virtual int get_member_line(const StringName &p_member) const { return -1; }
  149. virtual void get_constants(HashMap<StringName, Variant> *p_constants) {}
  150. virtual void get_members(HashSet<StringName> *p_members) {}
  151. virtual bool is_placeholder_fallback_enabled() const { return false; }
  152. virtual Variant get_rpc_config() const = 0;
  153. Script() {}
  154. };
  155. class ScriptCodeCompletionCache {
  156. static ScriptCodeCompletionCache *singleton;
  157. public:
  158. static ScriptCodeCompletionCache *get_singleton() { return singleton; }
  159. ScriptCodeCompletionCache();
  160. virtual ~ScriptCodeCompletionCache() {}
  161. };
  162. class ScriptLanguage : public Object {
  163. GDCLASS(ScriptLanguage, Object)
  164. protected:
  165. static void _bind_methods();
  166. public:
  167. virtual String get_name() const = 0;
  168. /* LANGUAGE FUNCTIONS */
  169. virtual void init() = 0;
  170. virtual String get_type() const = 0;
  171. virtual String get_extension() const = 0;
  172. virtual void finish() = 0;
  173. /* EDITOR FUNCTIONS */
  174. struct Warning {
  175. int start_line = -1, end_line = -1;
  176. int leftmost_column = -1, rightmost_column = -1;
  177. int code;
  178. String string_code;
  179. String message;
  180. };
  181. struct ScriptError {
  182. String path;
  183. int line = -1;
  184. int column = -1;
  185. String message;
  186. };
  187. enum TemplateLocation {
  188. TEMPLATE_BUILT_IN,
  189. TEMPLATE_EDITOR,
  190. TEMPLATE_PROJECT
  191. };
  192. enum ScriptNameCasing {
  193. SCRIPT_NAME_CASING_AUTO,
  194. SCRIPT_NAME_CASING_PASCAL_CASE,
  195. SCRIPT_NAME_CASING_SNAKE_CASE,
  196. SCRIPT_NAME_CASING_KEBAB_CASE,
  197. };
  198. struct ScriptTemplate {
  199. String inherit = "Object";
  200. String name;
  201. String description;
  202. String content;
  203. int id = 0;
  204. TemplateLocation origin = TemplateLocation::TEMPLATE_BUILT_IN;
  205. String get_hash() const {
  206. return itos(origin) + inherit + name;
  207. }
  208. };
  209. void get_core_type_words(List<String> *p_core_type_words) const;
  210. virtual void get_reserved_words(List<String> *p_words) const = 0;
  211. virtual bool is_control_flow_keyword(const String &p_string) const = 0;
  212. virtual void get_comment_delimiters(List<String> *p_delimiters) const = 0;
  213. virtual void get_doc_comment_delimiters(List<String> *p_delimiters) const = 0;
  214. virtual void get_string_delimiters(List<String> *p_delimiters) const = 0;
  215. virtual Ref<Script> make_template(const String &p_template, const String &p_class_name, const String &p_base_class_name) const { return Ref<Script>(); }
  216. virtual Vector<ScriptTemplate> get_built_in_templates(const StringName &p_object) { return Vector<ScriptTemplate>(); }
  217. virtual bool is_using_templates() { return false; }
  218. 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;
  219. virtual String validate_path(const String &p_path) const { return ""; }
  220. virtual Script *create_script() const = 0;
  221. #ifndef DISABLE_DEPRECATED
  222. virtual bool has_named_classes() const = 0;
  223. #endif
  224. virtual bool supports_builtin_mode() const = 0;
  225. virtual bool supports_documentation() const { return false; }
  226. virtual bool can_inherit_from_file() const { return false; }
  227. virtual int find_function(const String &p_function, const String &p_code) const = 0;
  228. virtual String make_function(const String &p_class, const String &p_name, const PackedStringArray &p_args) const = 0;
  229. virtual bool can_make_function() const { return true; }
  230. virtual Error open_in_external_editor(const Ref<Script> &p_script, int p_line, int p_col) { return ERR_UNAVAILABLE; }
  231. virtual bool overrides_external_editor() { return false; }
  232. virtual ScriptNameCasing preferred_file_name_casing() const { return SCRIPT_NAME_CASING_SNAKE_CASE; }
  233. // Keep enums in sync with:
  234. // scene/gui/code_edit.h - CodeEdit::CodeCompletionKind
  235. enum CodeCompletionKind {
  236. CODE_COMPLETION_KIND_CLASS,
  237. CODE_COMPLETION_KIND_FUNCTION,
  238. CODE_COMPLETION_KIND_SIGNAL,
  239. CODE_COMPLETION_KIND_VARIABLE,
  240. CODE_COMPLETION_KIND_MEMBER,
  241. CODE_COMPLETION_KIND_ENUM,
  242. CODE_COMPLETION_KIND_CONSTANT,
  243. CODE_COMPLETION_KIND_NODE_PATH,
  244. CODE_COMPLETION_KIND_FILE_PATH,
  245. CODE_COMPLETION_KIND_PLAIN_TEXT,
  246. CODE_COMPLETION_KIND_MAX
  247. };
  248. // scene/gui/code_edit.h - CodeEdit::CodeCompletionLocation
  249. enum CodeCompletionLocation {
  250. LOCATION_LOCAL = 0,
  251. LOCATION_PARENT_MASK = 1 << 8,
  252. LOCATION_OTHER_USER_CODE = 1 << 9,
  253. LOCATION_OTHER = 1 << 10,
  254. };
  255. struct CodeCompletionOption {
  256. CodeCompletionKind kind = CODE_COMPLETION_KIND_PLAIN_TEXT;
  257. String display;
  258. String insert_text;
  259. Color font_color;
  260. Ref<Resource> icon;
  261. Variant default_value;
  262. Vector<Pair<int, int>> matches;
  263. Vector<Pair<int, int>> last_matches = { { -1, -1 } }; // This value correspond to an impossible match
  264. int location = LOCATION_OTHER;
  265. String theme_color_name;
  266. CodeCompletionOption() {}
  267. CodeCompletionOption(const String &p_text, CodeCompletionKind p_kind, int p_location = LOCATION_OTHER, const String &p_theme_color_name = "") {
  268. display = p_text;
  269. insert_text = p_text;
  270. kind = p_kind;
  271. location = p_location;
  272. theme_color_name = p_theme_color_name;
  273. }
  274. TypedArray<int> get_option_characteristics(const String &p_base);
  275. void clear_characteristics();
  276. TypedArray<int> get_option_cached_characteristics() const;
  277. private:
  278. TypedArray<int> charac;
  279. };
  280. 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; }
  281. enum LookupResultType {
  282. LOOKUP_RESULT_SCRIPT_LOCATION, // Use if none of the options below apply.
  283. LOOKUP_RESULT_CLASS,
  284. LOOKUP_RESULT_CLASS_CONSTANT,
  285. LOOKUP_RESULT_CLASS_PROPERTY,
  286. LOOKUP_RESULT_CLASS_METHOD,
  287. LOOKUP_RESULT_CLASS_SIGNAL,
  288. LOOKUP_RESULT_CLASS_ENUM,
  289. LOOKUP_RESULT_CLASS_TBD_GLOBALSCOPE, // Deprecated.
  290. LOOKUP_RESULT_CLASS_ANNOTATION,
  291. LOOKUP_RESULT_LOCAL_CONSTANT,
  292. LOOKUP_RESULT_LOCAL_VARIABLE,
  293. LOOKUP_RESULT_MAX,
  294. };
  295. struct LookupResult {
  296. LookupResultType type;
  297. // For `CLASS_*`.
  298. String class_name;
  299. String class_member;
  300. // For `LOCAL_*`.
  301. String description;
  302. bool is_deprecated = false;
  303. String deprecated_message;
  304. bool is_experimental = false;
  305. String experimental_message;
  306. // For `LOCAL_*`.
  307. String doc_type;
  308. String enumeration;
  309. bool is_bitfield = false;
  310. // For `LOCAL_*`.
  311. String value;
  312. // `SCRIPT_LOCATION` and `LOCAL_*` must have, `CLASS_*` can have.
  313. Ref<Script> script;
  314. String script_path;
  315. int location = -1;
  316. };
  317. 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; }
  318. virtual void auto_indent_code(String &p_code, int p_from_line, int p_to_line) const = 0;
  319. virtual void add_global_constant(const StringName &p_variable, const Variant &p_value) = 0;
  320. virtual void add_named_global_constant(const StringName &p_name, const Variant &p_value) {}
  321. virtual void remove_named_global_constant(const StringName &p_name) {}
  322. /* MULTITHREAD FUNCTIONS */
  323. //some VMs need to be notified of thread creation/exiting to allocate a stack
  324. virtual void thread_enter() {}
  325. virtual void thread_exit() {}
  326. /* DEBUGGER FUNCTIONS */
  327. struct StackInfo {
  328. String file;
  329. String func;
  330. int line;
  331. };
  332. virtual String debug_get_error() const = 0;
  333. virtual int debug_get_stack_level_count() const = 0;
  334. virtual int debug_get_stack_level_line(int p_level) const = 0;
  335. virtual String debug_get_stack_level_function(int p_level) const = 0;
  336. virtual String debug_get_stack_level_source(int p_level) const = 0;
  337. 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;
  338. 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;
  339. virtual ScriptInstance *debug_get_stack_level_instance(int p_level) { return nullptr; }
  340. virtual void debug_get_globals(List<String> *p_globals, List<Variant> *p_values, int p_max_subitems = -1, int p_max_depth = -1) = 0;
  341. 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;
  342. virtual Vector<StackInfo> debug_get_current_stack_info() { return Vector<StackInfo>(); }
  343. virtual void reload_all_scripts() = 0;
  344. virtual void reload_scripts(const Array &p_scripts, bool p_soft_reload) = 0;
  345. virtual void reload_tool_script(const Ref<Script> &p_script, bool p_soft_reload) = 0;
  346. /* LOADER FUNCTIONS */
  347. virtual void get_recognized_extensions(List<String> *p_extensions) const = 0;
  348. virtual void get_public_functions(List<MethodInfo> *p_functions) const = 0;
  349. virtual void get_public_constants(List<Pair<String, Variant>> *p_constants) const = 0;
  350. virtual void get_public_annotations(List<MethodInfo> *p_annotations) const = 0;
  351. struct ProfilingInfo {
  352. StringName signature;
  353. uint64_t call_count;
  354. uint64_t total_time;
  355. uint64_t self_time;
  356. uint64_t internal_time;
  357. };
  358. virtual void profiling_start() = 0;
  359. virtual void profiling_stop() = 0;
  360. virtual void profiling_set_save_native_calls(bool p_enable) = 0;
  361. virtual int profiling_get_accumulated_data(ProfilingInfo *p_info_arr, int p_info_max) = 0;
  362. virtual int profiling_get_frame_data(ProfilingInfo *p_info_arr, int p_info_max) = 0;
  363. virtual void frame();
  364. virtual bool handles_global_class_type(const String &p_type) const { return false; }
  365. 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(); }
  366. virtual ~ScriptLanguage() {}
  367. };
  368. VARIANT_ENUM_CAST(ScriptLanguage::ScriptNameCasing);
  369. extern uint8_t script_encryption_key[32];
  370. class PlaceHolderScriptInstance : public ScriptInstance {
  371. Object *owner = nullptr;
  372. List<PropertyInfo> properties;
  373. HashMap<StringName, Variant> values;
  374. HashMap<StringName, Variant> constants;
  375. ScriptLanguage *language = nullptr;
  376. Ref<Script> script;
  377. public:
  378. virtual bool set(const StringName &p_name, const Variant &p_value) override;
  379. virtual bool get(const StringName &p_name, Variant &r_ret) const override;
  380. virtual void get_property_list(List<PropertyInfo> *p_properties) const override;
  381. virtual Variant::Type get_property_type(const StringName &p_name, bool *r_is_valid = nullptr) const override;
  382. virtual void validate_property(PropertyInfo &p_property) const override {}
  383. virtual bool property_can_revert(const StringName &p_name) const override { return false; }
  384. virtual bool property_get_revert(const StringName &p_name, Variant &r_ret) const override { return false; }
  385. virtual void get_method_list(List<MethodInfo> *p_list) const override;
  386. virtual bool has_method(const StringName &p_method) const override;
  387. virtual int get_method_argument_count(const StringName &p_method, bool *r_is_valid = nullptr) const override {
  388. if (r_is_valid) {
  389. *r_is_valid = false;
  390. }
  391. return 0;
  392. }
  393. virtual Variant callp(const StringName &p_method, const Variant **p_args, int p_argcount, Callable::CallError &r_error) override;
  394. virtual void notification(int p_notification, bool p_reversed = false) override {}
  395. virtual Ref<Script> get_script() const override { return script; }
  396. virtual ScriptLanguage *get_language() override { return language; }
  397. Object *get_owner() override { return owner; }
  398. void update(const List<PropertyInfo> &p_properties, const HashMap<StringName, Variant> &p_values); //likely changed in editor
  399. virtual bool is_placeholder() const override { return true; }
  400. virtual void property_set_fallback(const StringName &p_name, const Variant &p_value, bool *r_valid = nullptr) override;
  401. virtual Variant property_get_fallback(const StringName &p_name, bool *r_valid = nullptr) override;
  402. virtual const Variant get_rpc_config() const override { return Variant(); }
  403. PlaceHolderScriptInstance(ScriptLanguage *p_language, Ref<Script> p_script, Object *p_owner);
  404. ~PlaceHolderScriptInstance();
  405. };