2018-01-05 00:50:27 +01:00
/**************************************************************************/
2021-06-05 00:47:26 +02:00
/* lightmap_gi_editor_plugin.cpp */
2018-01-05 00:50:27 +01:00
/**************************************************************************/
2017-12-14 12:59:46 +01:00
/* This file is part of: */
2018-01-05 00:50:27 +01:00
/* GODOT ENGINE */
/* https://godotengine.org */
/**************************************************************************/
2017-12-14 12:59:46 +01:00
/* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */
/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
2018-01-05 00:50:27 +01:00
/* */
2017-12-14 12:59:46 +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: */
2018-01-05 00:50:27 +01:00
/* */
2017-12-14 12:59:46 +01:00
/* The above copyright notice and this permission notice shall be */
/* included in all copies or substantial portions of the Software. */
2018-01-05 00:50:27 +01:00
/* */
2017-12-14 12:59:46 +01:00
/* 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
/**************************************************************************/
2021-06-05 00:47:26 +02:00
# include "lightmap_gi_editor_plugin.h"
2017-12-14 12:59:46 +01:00
2022-02-12 02:46:22 +01:00
# include "editor/editor_node.h"
2023-09-13 13:14:07 +02:00
# include "editor/editor_string_names.h"
2023-04-07 18:59:49 +02:00
# include "editor/gui/editor_file_dialog.h"
2022-02-12 02:46:22 +01:00
2021-06-05 00:47:26 +02:00
void LightmapGIEditorPlugin : : _bake_select_file ( const String & p_file ) {
2017-12-14 12:59:46 +01:00
if ( lightmap ) {
2022-04-29 08:06:48 +02:00
LightmapGI : : BakeError err = LightmapGI : : BAKE_ERROR_OK ;
2021-12-31 02:40:36 +01:00
const uint64_t time_started = OS : : get_singleton ( ) - > get_ticks_msec ( ) ;
2022-04-29 08:06:48 +02:00
if ( get_tree ( ) - > get_edited_scene_root ( ) ) {
Ref < LightmapGIData > lightmapGIData = lightmap - > get_light_data ( ) ;
if ( lightmapGIData . is_valid ( ) ) {
String path = lightmapGIData - > get_path ( ) ;
if ( ! path . is_resource_file ( ) ) {
int srpos = path . find ( " :: " ) ;
if ( srpos ! = - 1 ) {
String base = path . substr ( 0 , srpos ) ;
if ( ResourceLoader : : get_resource_type ( base ) = = " PackedScene " ) {
if ( ! get_tree ( ) - > get_edited_scene_root ( ) | | get_tree ( ) - > get_edited_scene_root ( ) - > get_scene_file_path ( ) ! = base ) {
err = LightmapGI : : BAKE_ERROR_FOREIGN_DATA ;
}
} else {
if ( FileAccess : : exists ( base + " .import " ) ) {
err = LightmapGI : : BAKE_ERROR_FOREIGN_DATA ;
}
}
}
} else {
if ( FileAccess : : exists ( path + " .import " ) ) {
err = LightmapGI : : BAKE_ERROR_FOREIGN_DATA ;
}
}
}
if ( err = = LightmapGI : : BAKE_ERROR_OK ) {
if ( get_tree ( ) - > get_edited_scene_root ( ) = = lightmap ) {
err = lightmap - > bake ( lightmap , p_file , bake_func_step ) ;
} else {
err = lightmap - > bake ( lightmap - > get_parent ( ) , p_file , bake_func_step ) ;
}
}
2017-12-14 12:59:46 +01:00
} else {
2022-04-29 08:06:48 +02:00
err = LightmapGI : : BAKE_ERROR_NO_SCENE_ROOT ;
2017-12-14 12:59:46 +01:00
}
2021-12-31 02:40:36 +01:00
bake_func_end ( time_started ) ;
2020-05-01 14:34:23 +02:00
2017-12-14 12:59:46 +01:00
switch ( err ) {
2021-06-05 00:47:26 +02:00
case LightmapGI : : BAKE_ERROR_NO_SAVE_PATH : {
2021-09-30 16:30:55 +02:00
String scene_path = lightmap - > get_scene_file_path ( ) ;
2023-06-01 23:06:19 +02:00
if ( scene_path . is_empty ( ) & & lightmap - > get_owner ( ) ) {
2021-09-30 16:30:55 +02:00
scene_path = lightmap - > get_owner ( ) - > get_scene_file_path ( ) ;
2020-05-01 14:34:23 +02:00
}
2021-12-09 10:42:46 +01:00
if ( scene_path . is_empty ( ) ) {
2020-05-01 14:34:23 +02:00
EditorNode : : get_singleton ( ) - > show_warning ( TTR ( " Can't determine a save path for lightmap images. \n Save your scene and try again. " ) ) ;
break ;
}
scene_path = scene_path . get_basename ( ) + " .lmbake " ;
file_dialog - > set_current_path ( scene_path ) ;
2020-07-11 18:45:19 +02:00
file_dialog - > popup_file_dialog ( ) ;
2020-05-01 14:34:23 +02:00
} break ;
2022-04-29 08:06:48 +02:00
case LightmapGI : : BAKE_ERROR_NO_MESHES : {
2017-12-14 12:59:46 +01:00
EditorNode : : get_singleton ( ) - > show_warning ( TTR ( " No meshes to bake. Make sure they contain an UV2 channel and that the 'Bake Light' flag is on. " ) ) ;
2022-04-29 08:06:48 +02:00
} break ;
case LightmapGI : : BAKE_ERROR_CANT_CREATE_IMAGE : {
2017-12-14 12:59:46 +01:00
EditorNode : : get_singleton ( ) - > show_warning ( TTR ( " Failed creating lightmap images, make sure path is writable. " ) ) ;
2022-04-29 08:06:48 +02:00
} break ;
case LightmapGI : : BAKE_ERROR_NO_SCENE_ROOT : {
EditorNode : : get_singleton ( ) - > show_warning ( TTR ( " No editor scene root found. " ) ) ;
} break ;
case LightmapGI : : BAKE_ERROR_FOREIGN_DATA : {
EditorNode : : get_singleton ( ) - > show_warning ( TTR ( " Lightmap data is not local to the scene. " ) ) ;
} break ;
2023-09-11 14:14:39 +02:00
case LightmapGI : : BAKE_ERROR_TEXTURE_SIZE_TOO_SMALL : {
EditorNode : : get_singleton ( ) - > show_warning ( TTR ( " Maximum texture size is too small for the lightmap images. " ) ) ;
} break ;
2022-08-25 23:02:55 +02:00
case LightmapGI : : BAKE_ERROR_LIGHTMAP_TOO_SMALL : {
EditorNode : : get_singleton ( ) - > show_warning ( TTR ( " Failed creating lightmap images. Make sure all meshes selected to bake have `lightmap_size_hint` value set high enough, and `texel_scale` value of LightmapGI is not too low. " ) ) ;
} break ;
2019-04-09 17:08:36 +02:00
default : {
2022-04-29 08:06:48 +02:00
} break ;
2017-12-14 12:59:46 +01:00
}
}
}
2021-06-05 00:47:26 +02:00
void LightmapGIEditorPlugin : : _bake ( ) {
2020-05-01 14:34:23 +02:00
_bake_select_file ( " " ) ;
}
2021-06-05 00:47:26 +02:00
void LightmapGIEditorPlugin : : edit ( Object * p_object ) {
LightmapGI * s = Object : : cast_to < LightmapGI > ( p_object ) ;
2020-05-14 16:41:43 +02:00
if ( ! s ) {
2017-12-14 12:59:46 +01:00
return ;
2020-05-14 16:41:43 +02:00
}
2017-12-14 12:59:46 +01:00
lightmap = s ;
}
2021-06-05 00:47:26 +02:00
bool LightmapGIEditorPlugin : : handles ( Object * p_object ) const {
return p_object - > is_class ( " LightmapGI " ) ;
2017-12-14 12:59:46 +01:00
}
2021-06-05 00:47:26 +02:00
void LightmapGIEditorPlugin : : make_visible ( bool p_visible ) {
2017-12-14 12:59:46 +01:00
if ( p_visible ) {
bake - > show ( ) ;
} else {
bake - > hide ( ) ;
}
}
2021-06-05 00:47:26 +02:00
EditorProgress * LightmapGIEditorPlugin : : tmp_progress = nullptr ;
2017-12-14 12:59:46 +01:00
2021-06-05 00:47:26 +02:00
bool LightmapGIEditorPlugin : : bake_func_step ( float p_progress , const String & p_description , void * , bool p_refresh ) {
2020-05-01 14:34:23 +02:00
if ( ! tmp_progress ) {
tmp_progress = memnew ( EditorProgress ( " bake_lightmaps " , TTR ( " Bake Lightmaps " ) , 1000 , false ) ) ;
2023-09-09 17:24:40 +02:00
ERR_FAIL_NULL_V ( tmp_progress , false ) ;
2020-05-01 14:34:23 +02:00
}
return tmp_progress - > step ( p_description , p_progress * 1000 , p_refresh ) ;
2017-12-14 12:59:46 +01:00
}
2021-12-31 02:40:36 +01:00
void LightmapGIEditorPlugin : : bake_func_end ( uint64_t p_time_started ) {
2020-05-01 14:34:23 +02:00
if ( tmp_progress ! = nullptr ) {
memdelete ( tmp_progress ) ;
tmp_progress = nullptr ;
}
2021-12-31 02:40:36 +01:00
const int time_taken = ( OS : : get_singleton ( ) - > get_ticks_msec ( ) - p_time_started ) * 0.001 ;
print_line ( vformat ( " Done baking lightmaps in %02d:%02d:%02d. " , time_taken / 3600 , ( time_taken % 3600 ) / 60 , time_taken % 60 ) ) ;
// Request attention in case the user was doing something else.
// Baking lightmaps is likely the editor task that can take the most time,
// so only request the attention for baking lightmaps.
DisplayServer : : get_singleton ( ) - > window_request_attention ( ) ;
2017-12-14 12:59:46 +01:00
}
2021-06-05 00:47:26 +02:00
void LightmapGIEditorPlugin : : _bind_methods ( ) {
ClassDB : : bind_method ( " _bake " , & LightmapGIEditorPlugin : : _bake ) ;
2017-12-14 12:59:46 +01:00
}
2022-01-27 10:36:51 +01:00
LightmapGIEditorPlugin : : LightmapGIEditorPlugin ( ) {
2020-06-19 20:49:04 +02:00
bake = memnew ( Button ) ;
2023-09-19 18:03:10 +02:00
bake - > set_theme_type_variation ( " FlatButton " ) ;
2023-09-13 13:14:07 +02:00
// TODO: Rework this as a dedicated toolbar control so we can hook into theme changes and update it
// when the editor theme updates.
bake - > set_icon ( EditorNode : : get_singleton ( ) - > get_editor_theme ( ) - > get_icon ( SNAME ( " Bake " ) , EditorStringName ( EditorIcons ) ) ) ;
2017-12-14 12:59:46 +01:00
bake - > set_text ( TTR ( " Bake Lightmaps " ) ) ;
bake - > hide ( ) ;
2020-05-01 14:34:23 +02:00
bake - > connect ( " pressed " , Callable ( this , " _bake " ) ) ;
2017-12-14 12:59:46 +01:00
add_control_to_container ( CONTAINER_SPATIAL_EDITOR_MENU , bake ) ;
2020-04-02 01:20:12 +02:00
lightmap = nullptr ;
2017-12-14 12:59:46 +01:00
2020-05-01 14:34:23 +02:00
file_dialog = memnew ( EditorFileDialog ) ;
file_dialog - > set_file_mode ( EditorFileDialog : : FILE_MODE_SAVE_FILE ) ;
2022-07-04 23:26:26 +02:00
file_dialog - > add_filter ( " *.lmbake " , TTR ( " LightMap Bake " ) ) ;
2020-05-01 14:34:23 +02:00
file_dialog - > set_title ( TTR ( " Select lightmap bake file: " ) ) ;
2021-06-05 00:47:26 +02:00
file_dialog - > connect ( " file_selected " , callable_mp ( this , & LightmapGIEditorPlugin : : _bake_select_file ) ) ;
2020-05-01 14:34:23 +02:00
bake - > add_child ( file_dialog ) ;
2017-12-14 12:59:46 +01:00
}
2021-06-05 00:47:26 +02:00
LightmapGIEditorPlugin : : ~ LightmapGIEditorPlugin ( ) {
2017-12-14 12:59:46 +01:00
}