| 
									
										
										
										
											2018-04-02 12:41:44 +01:00
										 |  |  | /**************************************************************************/ | 
					
						
							|  |  |  | /*  gdscript_highlighter.h                                                */ | 
					
						
							|  |  |  | /**************************************************************************/ | 
					
						
							|  |  |  | /*                         This file is part of:                          */ | 
					
						
							|  |  |  | /*                             GODOT ENGINE                               */ | 
					
						
							|  |  |  | /*                        https://godotengine.org                         */ | 
					
						
							|  |  |  | /**************************************************************************/ | 
					
						
							|  |  |  | /* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */ | 
					
						
							|  |  |  | /* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur.                  */ | 
					
						
							|  |  |  | /*                                                                        */ | 
					
						
							|  |  |  | /* Permission is hereby granted, free of charge, to any person obtaining  */ | 
					
						
							|  |  |  | /* a copy of this software and associated documentation files (the        */ | 
					
						
							|  |  |  | /* "Software"), to deal in the Software without restriction, including    */ | 
					
						
							|  |  |  | /* without limitation the rights to use, copy, modify, merge, publish,    */ | 
					
						
							|  |  |  | /* distribute, sublicense, and/or sell copies of the Software, and to     */ | 
					
						
							|  |  |  | /* permit persons to whom the Software is furnished to do so, subject to  */ | 
					
						
							|  |  |  | /* the following conditions:                                              */ | 
					
						
							|  |  |  | /*                                                                        */ | 
					
						
							|  |  |  | /* The above copyright notice and this permission notice shall be         */ | 
					
						
							|  |  |  | /* included in all copies or substantial portions of the Software.        */ | 
					
						
							|  |  |  | /*                                                                        */ | 
					
						
							|  |  |  | /* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,        */ | 
					
						
							|  |  |  | /* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF     */ | 
					
						
							|  |  |  | /* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. */ | 
					
						
							|  |  |  | /* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY   */ | 
					
						
							|  |  |  | /* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,   */ | 
					
						
							|  |  |  | /* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE      */ | 
					
						
							|  |  |  | /* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.                 */ | 
					
						
							|  |  |  | /**************************************************************************/ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #ifndef GDSCRIPT_HIGHLIGHTER_H
 | 
					
						
							|  |  |  | #define GDSCRIPT_HIGHLIGHTER_H
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-05-03 17:08:15 +01:00
										 |  |  | #include "editor/plugins/script_editor_plugin.h"
 | 
					
						
							| 
									
										
										
										
											2018-04-02 12:41:44 +01:00
										 |  |  | #include "scene/gui/text_edit.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-05-03 17:08:15 +01:00
										 |  |  | class GDScriptSyntaxHighlighter : public EditorSyntaxHighlighter { | 
					
						
							|  |  |  | 	GDCLASS(GDScriptSyntaxHighlighter, EditorSyntaxHighlighter) | 
					
						
							| 
									
										
										
										
											2020-03-07 14:29:44 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-04-02 12:41:44 +01:00
										 |  |  | private: | 
					
						
							| 
									
										
										
										
											2020-05-03 17:08:15 +01:00
										 |  |  | 	struct ColorRegion { | 
					
						
							| 
									
										
										
										
											2023-10-13 14:26:28 +03:00
										 |  |  | 		enum Type { | 
					
						
							|  |  |  | 			TYPE_NONE, | 
					
						
							|  |  |  | 			TYPE_STRING, // `"` and `'`, optional prefix `&`, `^`, or `r`.
 | 
					
						
							|  |  |  | 			TYPE_MULTILINE_STRING, // `"""` and `'''`, optional prefix `r`.
 | 
					
						
							|  |  |  | 			TYPE_COMMENT, // `#` and `##`.
 | 
					
						
							|  |  |  | 			TYPE_CODE_REGION, // `#region` and `#endregion`.
 | 
					
						
							|  |  |  | 		}; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		Type type = TYPE_NONE; | 
					
						
							| 
									
										
										
										
											2020-05-03 17:08:15 +01:00
										 |  |  | 		Color color; | 
					
						
							|  |  |  | 		String start_key; | 
					
						
							|  |  |  | 		String end_key; | 
					
						
							| 
									
										
										
										
											2020-11-24 10:12:55 +01:00
										 |  |  | 		bool line_only = false; | 
					
						
							| 
									
										
										
										
											2024-04-09 10:21:10 +03:00
										 |  |  | 		bool r_prefix = false; | 
					
						
							|  |  |  | 		bool is_string = false; // `TYPE_STRING` or `TYPE_MULTILINE_STRING`.
 | 
					
						
							|  |  |  | 		bool is_comment = false; // `TYPE_COMMENT` or `TYPE_CODE_REGION`.
 | 
					
						
							| 
									
										
										
										
											2020-05-03 17:08:15 +01:00
										 |  |  | 	}; | 
					
						
							|  |  |  | 	Vector<ColorRegion> color_regions; | 
					
						
							| 
									
										
										
										
											2022-05-13 15:04:37 +02:00
										 |  |  | 	HashMap<int, int> color_region_cache; | 
					
						
							| 
									
										
										
										
											2020-05-03 17:08:15 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-10-11 22:18:19 -07:00
										 |  |  | 	HashMap<StringName, Color> class_names; | 
					
						
							|  |  |  | 	HashMap<StringName, Color> reserved_keywords; | 
					
						
							| 
									
										
										
										
											2021-08-14 07:42:18 +01:00
										 |  |  | 	HashMap<StringName, Color> member_keywords; | 
					
						
							| 
									
										
										
										
											2022-08-20 11:23:31 +02:00
										 |  |  | 	HashSet<StringName> global_functions; | 
					
						
							| 
									
										
										
										
											2020-05-03 17:08:15 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-04-12 21:46:10 +01:00
										 |  |  | 	enum Type { | 
					
						
							|  |  |  | 		NONE, | 
					
						
							|  |  |  | 		REGION, | 
					
						
							| 
									
										
										
										
											2018-04-12 23:49:44 +01:00
										 |  |  | 		NODE_PATH, | 
					
						
							| 
									
										
										
										
											2022-06-26 21:33:13 +02:00
										 |  |  | 		NODE_REF, | 
					
						
							| 
									
										
										
										
											2021-06-06 21:19:59 +02:00
										 |  |  | 		ANNOTATION, | 
					
						
							| 
									
										
										
										
											2022-06-26 21:33:13 +02:00
										 |  |  | 		STRING_NAME, | 
					
						
							| 
									
										
										
										
											2018-04-12 21:46:10 +01:00
										 |  |  | 		SYMBOL, | 
					
						
							|  |  |  | 		NUMBER, | 
					
						
							|  |  |  | 		FUNCTION, | 
					
						
							| 
									
										
										
										
											2021-08-20 11:21:34 +01:00
										 |  |  | 		SIGNAL, | 
					
						
							| 
									
										
										
										
											2018-04-12 21:46:10 +01:00
										 |  |  | 		KEYWORD, | 
					
						
							|  |  |  | 		MEMBER, | 
					
						
							| 
									
										
										
										
											2018-05-29 23:16:58 -03:00
										 |  |  | 		IDENTIFIER, | 
					
						
							|  |  |  | 		TYPE, | 
					
						
							| 
									
										
										
										
											2018-04-12 21:46:10 +01:00
										 |  |  | 	}; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-08-20 11:23:31 +02:00
										 |  |  | 	// Colors.
 | 
					
						
							| 
									
										
										
										
											2018-04-02 12:41:44 +01:00
										 |  |  | 	Color font_color; | 
					
						
							|  |  |  | 	Color symbol_color; | 
					
						
							|  |  |  | 	Color function_color; | 
					
						
							| 
									
										
										
										
											2022-08-20 11:23:31 +02:00
										 |  |  | 	Color global_function_color; | 
					
						
							| 
									
										
										
										
											2018-04-12 22:26:15 +01:00
										 |  |  | 	Color function_definition_color; | 
					
						
							| 
									
										
										
										
											2018-04-02 12:41:44 +01:00
										 |  |  | 	Color built_in_type_color; | 
					
						
							|  |  |  | 	Color number_color; | 
					
						
							|  |  |  | 	Color member_color; | 
					
						
							| 
									
										
										
										
											2023-08-28 13:00:33 +03:00
										 |  |  | 	Color string_color; | 
					
						
							| 
									
										
										
										
											2018-04-12 23:49:44 +01:00
										 |  |  | 	Color node_path_color; | 
					
						
							| 
									
										
										
										
											2022-06-26 21:33:13 +02:00
										 |  |  | 	Color node_ref_color; | 
					
						
							| 
									
										
										
										
											2021-06-06 21:19:59 +02:00
										 |  |  | 	Color annotation_color; | 
					
						
							| 
									
										
										
										
											2022-06-26 21:33:13 +02:00
										 |  |  | 	Color string_name_color; | 
					
						
							| 
									
										
										
										
											2018-05-29 23:16:58 -03:00
										 |  |  | 	Color type_color; | 
					
						
							| 
									
										
										
										
											2018-04-02 12:41:44 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-07-21 21:31:52 +03:00
										 |  |  | 	enum CommentMarkerLevel { | 
					
						
							|  |  |  | 		COMMENT_MARKER_CRITICAL, | 
					
						
							|  |  |  | 		COMMENT_MARKER_WARNING, | 
					
						
							|  |  |  | 		COMMENT_MARKER_NOTICE, | 
					
						
							|  |  |  | 		COMMENT_MARKER_MAX, | 
					
						
							|  |  |  | 	}; | 
					
						
							|  |  |  | 	Color comment_marker_colors[COMMENT_MARKER_MAX]; | 
					
						
							|  |  |  | 	HashMap<String, CommentMarkerLevel> comment_markers; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-04-09 10:21:10 +03:00
										 |  |  | 	void add_color_region(ColorRegion::Type p_type, const String &p_start_key, const String &p_end_key, const Color &p_color, bool p_line_only = false, bool p_r_prefix = false); | 
					
						
							| 
									
										
										
										
											2020-05-03 17:08:15 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-04-02 12:41:44 +01:00
										 |  |  | public: | 
					
						
							| 
									
										
										
										
											2020-03-07 14:29:44 +00:00
										 |  |  | 	virtual void _update_cache() override; | 
					
						
							| 
									
										
										
										
											2021-08-21 22:52:44 -03:00
										 |  |  | 	virtual Dictionary _get_line_syntax_highlighting_impl(int p_line) override; | 
					
						
							| 
									
										
										
										
											2018-04-02 12:41:44 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-03-07 14:29:44 +00:00
										 |  |  | 	virtual String _get_name() const override; | 
					
						
							| 
									
										
										
										
											2022-08-05 03:41:48 +02:00
										 |  |  | 	virtual PackedStringArray _get_supported_languages() const override; | 
					
						
							| 
									
										
										
										
											2018-04-02 12:41:44 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-05-03 17:08:15 +01:00
										 |  |  | 	virtual Ref<EditorSyntaxHighlighter> _create() const override; | 
					
						
							| 
									
										
										
										
											2018-04-02 12:41:44 +01:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #endif // GDSCRIPT_HIGHLIGHTER_H
 |