| 
									
										
										
										
											2018-04-02 12:41:44 +01:00
										 |  |  | /*************************************************************************/ | 
					
						
							|  |  |  | /*  gdscript_highlighter.h                                               */ | 
					
						
							|  |  |  | /*************************************************************************/ | 
					
						
							|  |  |  | /*                       This file is part of:                           */ | 
					
						
							|  |  |  | /*                           GODOT ENGINE                                */ | 
					
						
							|  |  |  | /*                      https://godotengine.org                          */ | 
					
						
							|  |  |  | /*************************************************************************/ | 
					
						
							| 
									
										
										
										
											2022-01-03 21:27:34 +01:00
										 |  |  | /* Copyright (c) 2007-2022 Juan Linietsky, Ariel Manzur.                 */ | 
					
						
							|  |  |  | /* Copyright (c) 2014-2022 Godot Engine contributors (cf. AUTHORS.md).   */ | 
					
						
							| 
									
										
										
										
											2018-04-02 12:41:44 +01:00
										 |  |  | /*                                                                       */ | 
					
						
							|  |  |  | /* 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 { | 
					
						
							|  |  |  | 		Color color; | 
					
						
							|  |  |  | 		String start_key; | 
					
						
							|  |  |  | 		String end_key; | 
					
						
							| 
									
										
										
										
											2020-11-24 10:12:55 +01:00
										 |  |  | 		bool line_only = false; | 
					
						
							| 
									
										
										
										
											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
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-08-14 07:42:18 +01:00
										 |  |  | 	HashMap<StringName, Color> keywords; | 
					
						
							|  |  |  | 	HashMap<StringName, Color> member_keywords; | 
					
						
							| 
									
										
										
										
											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
										 |  |  | 	}; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-04-02 12:41:44 +01:00
										 |  |  | 	// colours
 | 
					
						
							|  |  |  | 	Color font_color; | 
					
						
							|  |  |  | 	Color symbol_color; | 
					
						
							|  |  |  | 	Color 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; | 
					
						
							| 
									
										
										
										
											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
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-05-03 17:08:15 +01:00
										 |  |  | 	void add_color_region(const String &p_start_key, const String &p_end_key, const Color &p_color, bool p_line_only = false); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											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; | 
					
						
							|  |  |  | 	virtual Array _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
 |