2017-01-16 08:04:19 +01:00
|
|
|
|
/*************************************************************************/
|
2018-01-05 00:50:27 +01:00
|
|
|
|
/* gi_probe_editor_plugin.cpp */
|
2017-01-16 08:04:19 +01:00
|
|
|
|
/*************************************************************************/
|
|
|
|
|
/* This file is part of: */
|
|
|
|
|
/* GODOT ENGINE */
|
2017-08-27 14:16:55 +02:00
|
|
|
|
/* https://godotengine.org */
|
2017-01-16 08:04:19 +01:00
|
|
|
|
/*************************************************************************/
|
2020-01-01 11:16:22 +01:00
|
|
|
|
/* Copyright (c) 2007-2020 Juan Linietsky, Ariel Manzur. */
|
|
|
|
|
/* Copyright (c) 2014-2020 Godot Engine contributors (cf. AUTHORS.md). */
|
2017-01-16 08:04:19 +01:00
|
|
|
|
/* */
|
|
|
|
|
/* Permission is hereby granted, free of charge, to any person obtaining */
|
|
|
|
|
/* a copy of this software and associated documentation files (the */
|
|
|
|
|
/* "Software"), to deal in the Software without restriction, including */
|
|
|
|
|
/* without limitation the rights to use, copy, modify, merge, publish, */
|
|
|
|
|
/* distribute, sublicense, and/or sell copies of the Software, and to */
|
|
|
|
|
/* permit persons to whom the Software is furnished to do so, subject to */
|
|
|
|
|
/* the following conditions: */
|
|
|
|
|
/* */
|
|
|
|
|
/* The above copyright notice and this permission notice shall be */
|
|
|
|
|
/* included in all copies or substantial portions of the Software. */
|
|
|
|
|
/* */
|
|
|
|
|
/* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, */
|
|
|
|
|
/* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF */
|
|
|
|
|
/* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.*/
|
|
|
|
|
/* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY */
|
|
|
|
|
/* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, */
|
|
|
|
|
/* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE */
|
|
|
|
|
/* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
|
|
|
|
|
/*************************************************************************/
|
2018-01-05 00:50:27 +01:00
|
|
|
|
|
2016-12-23 04:37:38 +01:00
|
|
|
|
#include "gi_probe_editor_plugin.h"
|
|
|
|
|
|
|
|
|
|
void GIProbeEditorPlugin::_bake() {
|
|
|
|
|
|
|
|
|
|
if (gi_probe) {
|
2019-10-31 23:54:21 +01:00
|
|
|
|
if (gi_probe->get_probe_data().is_null()) {
|
|
|
|
|
String path = get_tree()->get_edited_scene_root()->get_filename();
|
2019-11-05 12:01:00 +01:00
|
|
|
|
if (path == String()) {
|
|
|
|
|
path = "res://" + gi_probe->get_name() + "_data.res";
|
2019-10-31 23:54:21 +01:00
|
|
|
|
} else {
|
|
|
|
|
String ext = path.get_extension();
|
2019-11-05 12:01:00 +01:00
|
|
|
|
path = path.get_basename() + "." + gi_probe->get_name() + "_data.res";
|
2019-10-31 23:54:21 +01:00
|
|
|
|
}
|
|
|
|
|
probe_file->set_current_path(path);
|
|
|
|
|
probe_file->popup_centered_ratio();
|
|
|
|
|
return;
|
|
|
|
|
}
|
2016-12-23 04:37:38 +01:00
|
|
|
|
gi_probe->bake();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void GIProbeEditorPlugin::edit(Object *p_object) {
|
|
|
|
|
|
2017-08-24 22:58:51 +02:00
|
|
|
|
GIProbe *s = Object::cast_to<GIProbe>(p_object);
|
2016-12-23 04:37:38 +01:00
|
|
|
|
if (!s)
|
|
|
|
|
return;
|
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
|
gi_probe = s;
|
2016-12-23 04:37:38 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool GIProbeEditorPlugin::handles(Object *p_object) const {
|
|
|
|
|
|
2017-01-03 03:03:46 +01:00
|
|
|
|
return p_object->is_class("GIProbe");
|
2016-12-23 04:37:38 +01:00
|
|
|
|
}
|
|
|
|
|
|
2019-10-31 23:54:21 +01:00
|
|
|
|
void GIProbeEditorPlugin::_notification(int p_what) {
|
|
|
|
|
|
2019-11-05 12:01:00 +01:00
|
|
|
|
if (p_what == NOTIFICATION_PROCESS) {
|
2019-10-31 23:54:21 +01:00
|
|
|
|
if (!gi_probe) {
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2020-03-02 22:07:48 +01:00
|
|
|
|
const Vector3i size = gi_probe->get_estimated_cell_size();
|
|
|
|
|
String text = vformat(String::utf8("%d × %d × %d"), size.x, size.y, size.z);
|
2019-10-31 23:54:21 +01:00
|
|
|
|
int data_size = 4;
|
|
|
|
|
if (GLOBAL_GET("rendering/quality/gi_probes/anisotropic")) {
|
2019-11-05 12:01:00 +01:00
|
|
|
|
data_size += 4;
|
2019-10-31 23:54:21 +01:00
|
|
|
|
}
|
2020-03-02 22:07:48 +01:00
|
|
|
|
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));
|
2019-10-31 23:54:21 +01:00
|
|
|
|
|
2019-11-05 12:01:00 +01:00
|
|
|
|
if (bake_info->get_text() == text) {
|
2019-10-31 23:54:21 +01:00
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2020-03-02 22:07:48 +01:00
|
|
|
|
// 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");
|
|
|
|
|
}
|
2019-10-31 23:54:21 +01:00
|
|
|
|
|
2020-03-02 22:07:48 +01:00
|
|
|
|
bake_info->add_color_override("font_color", color);
|
2019-10-31 23:54:21 +01:00
|
|
|
|
bake_info->set_text(text);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2016-12-23 04:37:38 +01:00
|
|
|
|
void GIProbeEditorPlugin::make_visible(bool p_visible) {
|
|
|
|
|
|
|
|
|
|
if (p_visible) {
|
2019-10-31 23:54:21 +01:00
|
|
|
|
bake_hb->show();
|
|
|
|
|
set_process(true);
|
2016-12-23 04:37:38 +01:00
|
|
|
|
} else {
|
|
|
|
|
|
2019-10-31 23:54:21 +01:00
|
|
|
|
bake_hb->hide();
|
|
|
|
|
set_process(false);
|
2016-12-23 04:37:38 +01:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2017-10-30 20:33:07 +01:00
|
|
|
|
EditorProgress *GIProbeEditorPlugin::tmp_progress = NULL;
|
|
|
|
|
|
|
|
|
|
void GIProbeEditorPlugin::bake_func_begin(int p_steps) {
|
|
|
|
|
|
|
|
|
|
ERR_FAIL_COND(tmp_progress != NULL);
|
|
|
|
|
|
|
|
|
|
tmp_progress = memnew(EditorProgress("bake_gi", TTR("Bake GI Probe"), p_steps));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void GIProbeEditorPlugin::bake_func_step(int p_step, const String &p_description) {
|
|
|
|
|
|
|
|
|
|
ERR_FAIL_COND(tmp_progress == NULL);
|
2018-01-12 04:08:32 +01:00
|
|
|
|
tmp_progress->step(p_description, p_step, false);
|
2017-10-30 20:33:07 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void GIProbeEditorPlugin::bake_func_end() {
|
|
|
|
|
ERR_FAIL_COND(tmp_progress == NULL);
|
|
|
|
|
memdelete(tmp_progress);
|
|
|
|
|
tmp_progress = NULL;
|
|
|
|
|
}
|
|
|
|
|
|
2019-11-05 12:01:00 +01:00
|
|
|
|
void GIProbeEditorPlugin::_giprobe_save_path_and_bake(const String &p_path) {
|
2019-10-31 23:54:21 +01:00
|
|
|
|
probe_file->hide();
|
|
|
|
|
if (gi_probe) {
|
|
|
|
|
gi_probe->bake();
|
2019-11-05 12:01:00 +01:00
|
|
|
|
ERR_FAIL_COND(gi_probe->get_probe_data().is_null());
|
|
|
|
|
ResourceSaver::save(p_path, gi_probe->get_probe_data(), ResourceSaver::FLAG_CHANGE_PATH);
|
2019-10-31 23:54:21 +01:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2016-12-23 04:37:38 +01:00
|
|
|
|
void GIProbeEditorPlugin::_bind_methods() {
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
GIProbeEditorPlugin::GIProbeEditorPlugin(EditorNode *p_node) {
|
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
|
editor = p_node;
|
2019-11-05 12:01:00 +01:00
|
|
|
|
bake_hb = memnew(HBoxContainer);
|
2019-10-31 23:54:21 +01:00
|
|
|
|
bake_hb->set_h_size_flags(Control::SIZE_EXPAND_FILL);
|
|
|
|
|
bake_hb->hide();
|
2018-10-22 04:31:51 +02:00
|
|
|
|
bake = memnew(ToolButton);
|
2017-12-14 22:34:24 +01:00
|
|
|
|
bake->set_icon(editor->get_gui_base()->get_icon("Bake", "EditorIcons"));
|
2017-10-30 20:33:07 +01:00
|
|
|
|
bake->set_text(TTR("Bake GI Probe"));
|
2020-02-21 18:28:45 +01:00
|
|
|
|
bake->connect("pressed", callable_mp(this, &GIProbeEditorPlugin::_bake));
|
2019-10-31 23:54:21 +01:00
|
|
|
|
bake_hb->add_child(bake);
|
2019-11-05 12:01:00 +01:00
|
|
|
|
bake_info = memnew(Label);
|
2019-10-31 23:54:21 +01:00
|
|
|
|
bake_info->set_h_size_flags(Control::SIZE_EXPAND_FILL);
|
|
|
|
|
bake_info->set_clip_text(true);
|
|
|
|
|
bake_hb->add_child(bake_info);
|
|
|
|
|
|
|
|
|
|
add_control_to_container(CONTAINER_SPATIAL_EDITOR_MENU, bake_hb);
|
2017-03-05 16:44:50 +01:00
|
|
|
|
gi_probe = NULL;
|
2019-11-05 12:01:00 +01:00
|
|
|
|
probe_file = memnew(EditorFileDialog);
|
2020-03-06 18:00:16 +01:00
|
|
|
|
probe_file->set_file_mode(EditorFileDialog::FILE_MODE_SAVE_FILE);
|
2019-10-31 23:54:21 +01:00
|
|
|
|
probe_file->add_filter("*.res");
|
2020-02-21 18:28:45 +01:00
|
|
|
|
probe_file->connect("file_selected", callable_mp(this, &GIProbeEditorPlugin::_giprobe_save_path_and_bake));
|
2019-10-31 23:54:21 +01:00
|
|
|
|
get_editor_interface()->get_base_control()->add_child(probe_file);
|
|
|
|
|
probe_file->set_title(TTR("Select path for GIProbe Data File"));
|
2017-10-30 20:33:07 +01:00
|
|
|
|
|
|
|
|
|
GIProbe::bake_begin_function = bake_func_begin;
|
|
|
|
|
GIProbe::bake_step_function = bake_func_step;
|
|
|
|
|
GIProbe::bake_end_function = bake_func_end;
|
2016-12-23 04:37:38 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
GIProbeEditorPlugin::~GIProbeEditorPlugin() {
|
|
|
|
|
}
|