gdscript_translation_parser_plugin.h 4.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  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 "core/templates/hash_set.h"
  34. #include "editor/editor_translation_parser.h"
  35. class GDScriptEditorTranslationParserPlugin : public EditorTranslationParserPlugin {
  36. GDCLASS(GDScriptEditorTranslationParserPlugin, EditorTranslationParserPlugin);
  37. Vector<String> *ids = nullptr;
  38. Vector<Vector<String>> *ids_ctx_plural = nullptr;
  39. // List of patterns used for extracting translation strings.
  40. StringName tr_func = "tr";
  41. StringName trn_func = "tr_n";
  42. StringName atr_func = "atr";
  43. StringName atrn_func = "atr_n";
  44. HashSet<StringName> assignment_patterns;
  45. HashSet<StringName> first_arg_patterns;
  46. HashSet<StringName> second_arg_patterns;
  47. // FileDialog patterns.
  48. StringName fd_add_filter = "add_filter";
  49. StringName fd_set_filter = "set_filters";
  50. StringName fd_filters = "filters";
  51. static bool _is_constant_string(const GDScriptParser::ExpressionNode *p_expression);
  52. void _traverse_class(const GDScriptParser::ClassNode *p_class);
  53. void _traverse_function(const GDScriptParser::FunctionNode *p_func);
  54. void _traverse_block(const GDScriptParser::SuiteNode *p_suite);
  55. void _assess_expression(const GDScriptParser::ExpressionNode *p_expression);
  56. void _assess_assignment(const GDScriptParser::AssignmentNode *p_assignment);
  57. void _assess_call(const GDScriptParser::CallNode *p_call);
  58. void _extract_fd_filter_string(const GDScriptParser::ExpressionNode *p_expression);
  59. void _extract_fd_filter_array(const GDScriptParser::ExpressionNode *p_expression);
  60. public:
  61. virtual Error parse_file(const String &p_path, Vector<String> *r_ids, Vector<Vector<String>> *r_ids_ctx_plural) override;
  62. virtual void get_recognized_extensions(List<String> *r_extensions) const override;
  63. GDScriptEditorTranslationParserPlugin();
  64. };
  65. #endif // GDSCRIPT_TRANSLATION_PARSER_PLUGIN_H