Add comment highlighting to script thumbnails

(cherry picked from commit 46e0161737)
This commit is contained in:
Michael Alexsander 2021-05-02 21:48:37 -03:00 committed by Rémi Verschelde
parent 71a9932f38
commit ae99339e9f
No known key found for this signature in database
GPG key ID: C3336907360768E1

View file

@ -522,6 +522,7 @@ Ref<Texture> EditorScriptPreviewPlugin::generate(const RES &p_from, const Size2
Color keyword_color = EditorSettings::get_singleton()->get("text_editor/highlighting/keyword_color");
Color text_color = EditorSettings::get_singleton()->get("text_editor/highlighting/text_color");
Color symbol_color = EditorSettings::get_singleton()->get("text_editor/highlighting/symbol_color");
Color comment_color = EditorSettings::get_singleton()->get("text_editor/highlighting/comment_color");
img->lock();
@ -542,6 +543,7 @@ Ref<Texture> EditorScriptPreviewPlugin::generate(const RES &p_from, const Size2
bool prev_is_text = false;
bool in_keyword = false;
bool in_comment = false;
for (int i = 0; i < code.length(); i++) {
CharType c = code[i];
@ -549,26 +551,36 @@ Ref<Texture> EditorScriptPreviewPlugin::generate(const RES &p_from, const Size2
if (col < thumbnail_size) {
Color color = text_color;
if (c != '_' && ((c >= '!' && c <= '/') || (c >= ':' && c <= '@') || (c >= '[' && c <= '`') || (c >= '{' && c <= '~') || c == '\t')) {
//make symbol a little visible
color = symbol_color;
in_keyword = false;
} else if (!prev_is_text && _is_text_char(c)) {
int pos = i;
while (_is_text_char(code[pos])) {
pos++;
}
String word = code.substr(i, pos - i);
if (keywords.has(word))
in_keyword = true;
} else if (!_is_text_char(c)) {
in_keyword = false;
if (c == '#') {
in_comment = true;
}
if (in_keyword)
color = keyword_color;
if (in_comment) {
color = comment_color;
} else {
if (c != '_' && ((c >= '!' && c <= '/') || (c >= ':' && c <= '@') || (c >= '[' && c <= '`') || (c >= '{' && c <= '~') || c == '\t')) {
//make symbol a little visible
color = symbol_color;
in_keyword = false;
} else if (!prev_is_text && _is_text_char(c)) {
int pos = i;
while (_is_text_char(code[pos])) {
pos++;
}
String word = code.substr(i, pos - i);
if (keywords.has(word)) {
in_keyword = true;
}
} else if (!_is_text_char(c)) {
in_keyword = false;
}
if (in_keyword) {
color = keyword_color;
}
}
Color ul = color;
ul.a *= 0.5;
@ -577,21 +589,25 @@ Ref<Texture> EditorScriptPreviewPlugin::generate(const RES &p_from, const Size2
prev_is_text = _is_text_char(c);
}
col++;
} else {
prev_is_text = false;
in_keyword = false;
if (c == '\n') {
in_comment = false;
col = x0;
line++;
if (line >= available_height / 2)
break;
} else if (c == '\t') {
col += 3;
} else {
col++;
}
}
col++;
}
img->unlock();