gdscript_translation_parser_plugin.h 4.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. /**************************************************************************/
  2. /* gdscript_translation_parser_plugin.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. #ifndef GDSCRIPT_TRANSLATION_PARSER_PLUGIN_H
  31. #define GDSCRIPT_TRANSLATION_PARSER_PLUGIN_H
  32. #include "../gdscript_parser.h"
  33. #include "../gdscript_tokenizer.h"
  34. #include "core/templates/hash_map.h"
  35. #include "core/templates/hash_set.h"
  36. #include "editor/editor_translation_parser.h"
  37. class GDScriptEditorTranslationParserPlugin : public EditorTranslationParserPlugin {
  38. GDCLASS(GDScriptEditorTranslationParserPlugin, EditorTranslationParserPlugin);
  39. const HashMap<int, GDScriptTokenizer::CommentData> *comment_data = nullptr;
  40. Vector<String> *ids = nullptr;
  41. Vector<Vector<String>> *ids_ctx_plural = nullptr;
  42. Vector<String> ids_comment;
  43. Vector<String> ids_ctx_plural_comment;
  44. // List of patterns used for extracting translation strings.
  45. StringName tr_func = "tr";
  46. StringName trn_func = "tr_n";
  47. StringName atr_func = "atr";
  48. StringName atrn_func = "atr_n";
  49. HashSet<StringName> assignment_patterns;
  50. HashSet<StringName> first_arg_patterns;
  51. HashSet<StringName> second_arg_patterns;
  52. // FileDialog patterns.
  53. StringName fd_add_filter = "add_filter";
  54. StringName fd_set_filter = "set_filters";
  55. StringName fd_filters = "filters";
  56. static bool _is_constant_string(const GDScriptParser::ExpressionNode *p_expression);
  57. String _parse_comment(int p_line, bool &r_skip) const;
  58. void _add_id(const String &p_id, int p_line);
  59. void _add_id_ctx_plural(const Vector<String> &p_id_ctx_plural, int p_line);
  60. void _traverse_class(const GDScriptParser::ClassNode *p_class);
  61. void _traverse_function(const GDScriptParser::FunctionNode *p_func);
  62. void _traverse_block(const GDScriptParser::SuiteNode *p_suite);
  63. void _assess_expression(const GDScriptParser::ExpressionNode *p_expression);
  64. void _assess_assignment(const GDScriptParser::AssignmentNode *p_assignment);
  65. void _assess_call(const GDScriptParser::CallNode *p_call);
  66. void _extract_fd_filter_string(const GDScriptParser::ExpressionNode *p_expression, int p_line);
  67. void _extract_fd_filter_array(const GDScriptParser::ExpressionNode *p_expression);
  68. public:
  69. virtual Error parse_file(const String &p_path, Vector<String> *r_ids, Vector<Vector<String>> *r_ids_ctx_plural) override;
  70. virtual void get_comments(Vector<String> *r_ids_comment, Vector<String> *r_ids_ctx_plural_comment) override;
  71. virtual void get_recognized_extensions(List<String> *r_extensions) const override;
  72. GDScriptEditorTranslationParserPlugin();
  73. };
  74. #endif // GDSCRIPT_TRANSLATION_PARSER_PLUGIN_H