Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
godotengine
GitHub Repository: godotengine/godot
Path: blob/master/modules/gdscript/editor/gdscript_translation_parser_plugin.h
10278 views
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
31
#pragma once
32
33
#include "../gdscript_parser.h"
34
#include "../gdscript_tokenizer.h"
35
36
#include "core/templates/hash_map.h"
37
#include "core/templates/hash_set.h"
38
#include "editor/translations/editor_translation_parser.h"
39
40
class GDScriptEditorTranslationParserPlugin : public EditorTranslationParserPlugin {
41
GDCLASS(GDScriptEditorTranslationParserPlugin, EditorTranslationParserPlugin);
42
43
const HashMap<int, GDScriptTokenizer::CommentData> *comment_data = nullptr;
44
45
Vector<Vector<String>> *translations = nullptr;
46
47
// List of patterns used for extracting translation strings.
48
StringName tr_func = "tr";
49
StringName trn_func = "tr_n";
50
StringName atr_func = "atr";
51
StringName atrn_func = "atr_n";
52
HashSet<StringName> assignment_patterns;
53
HashSet<StringName> first_arg_patterns;
54
HashSet<StringName> second_arg_patterns;
55
// FileDialog patterns.
56
StringName fd_add_filter = "add_filter";
57
StringName fd_set_filter = "set_filters";
58
StringName fd_filters = "filters";
59
60
static bool _is_constant_string(const GDScriptParser::ExpressionNode *p_expression);
61
62
String _parse_comment(int p_line, bool &r_skip) const;
63
64
void _add_id(const String &p_id, int p_line);
65
void _add_id_ctx_plural(const Vector<String> &p_id_ctx_plural, int p_line);
66
67
void _traverse_class(const GDScriptParser::ClassNode *p_class);
68
void _traverse_function(const GDScriptParser::FunctionNode *p_func);
69
void _traverse_block(const GDScriptParser::SuiteNode *p_suite);
70
71
void _assess_expression(const GDScriptParser::ExpressionNode *p_expression);
72
void _assess_assignment(const GDScriptParser::AssignmentNode *p_assignment);
73
void _assess_call(const GDScriptParser::CallNode *p_call);
74
75
void _extract_fd_filter_string(const GDScriptParser::ExpressionNode *p_expression, int p_line);
76
void _extract_fd_filter_array(const GDScriptParser::ExpressionNode *p_expression);
77
78
public:
79
virtual Error parse_file(const String &p_path, Vector<Vector<String>> *r_translations) override;
80
virtual void get_recognized_extensions(List<String> *r_extensions) const override;
81
82
GDScriptEditorTranslationParserPlugin();
83
};
84
85