Merge pull request #36739 from Calinou/improve-giprobe-editor-label

Improve the GIProbe editor contextual label
This commit is contained in:
Rémi Verschelde 2020-03-04 22:41:25 +01:00 committed by GitHub
commit 7c9e15238e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -70,22 +70,33 @@ void GIProbeEditorPlugin::_notification(int p_what) {
return; return;
} }
String text; const Vector3i size = gi_probe->get_estimated_cell_size();
String text = vformat(String::utf8("%d × %d × %d"), size.x, size.y, size.z);
Vector3i size = gi_probe->get_estimated_cell_size();
text = itos(size.x) + ", " + itos(size.y) + ", " + itos(size.z);
int data_size = 4; int data_size = 4;
if (GLOBAL_GET("rendering/quality/gi_probes/anisotropic")) { if (GLOBAL_GET("rendering/quality/gi_probes/anisotropic")) {
data_size += 4; data_size += 4;
} }
text += " - VRAM Size: " + String::num(size.x * size.y * size.z * data_size / (1024.0 * 1024.0), 2) + " Mb."; const double size_mb = size.x * size.y * size.z * data_size / (1024.0 * 1024.0);
text += " - " + vformat(TTR("VRAM Size: %s MB"), String::num(size_mb, 2));
if (bake_info->get_text() == text) { if (bake_info->get_text() == text) {
return; return;
} }
bake_info->add_color_override("font_color", bake_info->get_color("success_color", "Editor")); // Color the label depending on the estimated performance level.
Color color;
if (size_mb <= 16.0 + CMP_EPSILON) {
// Fast.
color = bake_info->get_color("success_color", "Editor");
} else if (size_mb <= 64.0 + CMP_EPSILON) {
// Medium.
color = bake_info->get_color("warning_color", "Editor");
} else {
// Slow.
color = bake_info->get_color("error_color", "Editor");
}
bake_info->add_color_override("font_color", color);
bake_info->set_text(text); bake_info->set_text(text);
} }
} }