123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331 |
- #include "baked_light_editor_plugin.h"
- #include "scene/gui/box_container.h"
- #include "scene/3d/mesh_instance.h"
- #include "io/marshalls.h"
- #include "io/resource_saver.h"
- void BakedLightEditor::_end_baking() {
- baker->clear();
- set_process(false);
- button_bake->set_pressed(false);
- bake_info->set_text("");
- }
- void BakedLightEditor::_node_removed(Node *p_node) {
- if(p_node==node) {
- _end_baking();
- node=NULL;
- hide();
- }
- }
- void BakedLightEditor::_notification(int p_option) {
- if (p_option==NOTIFICATION_ENTER_SCENE) {
- button_bake->set_icon(get_icon("Bake","EditorIcons"));
- button_reset->set_icon(get_icon("Reload","EditorIcons"));
- button_make_lightmaps->set_icon(get_icon("LightMap","EditorIcons"));
- }
- if (p_option==NOTIFICATION_PROCESS) {
- if (baker->is_baking() && !baker->is_paused()) {
- update_timeout-=get_process_delta_time();
- if (update_timeout<0) {
- if (baker->get_baked_light()!=node->get_baked_light()) {
- _end_baking();
- return;
- }
- uint64_t t = OS::get_singleton()->get_ticks_msec();
- #ifdef DEBUG_CUBES
- double norm = baker->get_normalization();
- float max_lum=0;
- {
- DVector<Color>::Write cw=colors.write();
- BakedLightBaker::Octant *octants=baker->octant_pool.ptr();
- BakedLightBaker::Octant *oct = &octants[baker->leaf_list];
- int vert_idx=0;
- while(oct) {
- Color colors[8];
- for(int i=0;i<8;i++) {
- colors[i].r=oct->light_accum[i][0]/norm;
- colors[i].g=oct->light_accum[i][1]/norm;
- colors[i].b=oct->light_accum[i][2]/norm;
- float lum = colors[i].get_v();
- //if (lum<0.05)
- // color.a=0;
- if (lum>max_lum)
- max_lum=lum;
- }
- static const int vert2cub[36]={7,3,1,1,5,7,7,6,2,2,3,7,7,5,4,4,6,7,2,6,4,4,0,2,4,5,1,1,0,4,1,3,2,2,0,1};
- for (int i=0;i<36;i++) {
- cw[vert_idx++]=colors[vert2cub[i]];
- }
- if (oct->next_leaf)
- oct=&octants[oct->next_leaf];
- else
- oct=NULL;
- }
- }
- print_line("MSCOL: "+itos(OS::get_singleton()->get_ticks_msec()-t));
- t = OS::get_singleton()->get_ticks_msec();
- Array a;
- a.resize(Mesh::ARRAY_MAX);
- a[Mesh::ARRAY_VERTEX]=vertices;
- a[Mesh::ARRAY_COLOR]=colors;
- while(mesh->get_surface_count())
- mesh->surface_remove(0);
- mesh->add_surface(Mesh::PRIMITIVE_TRIANGLES,a);
- mesh->surface_set_material(0,material);
- #endif
- ERR_FAIL_COND(node->get_baked_light().is_null());
- baker->update_octree_image(octree_texture);
- #if 1
- //debug
- Image img(baker->baked_octree_texture_w,baker->baked_octree_texture_h,0,Image::FORMAT_RGBA,octree_texture);
- Ref<ImageTexture> it = memnew( ImageTexture );
- it->create_from_image(img);
- ResourceSaver::save("baked_octree.png",it);
- #endif
- bake_info->set_text("rays/s: "+itos(baker->get_rays_sec()));
- update_timeout=1;
- print_line("MSUPDATE: "+itos(OS::get_singleton()->get_ticks_msec()-t));
- t=OS::get_singleton()->get_ticks_msec();
- node->get_baked_light()->set_octree(octree_texture);
- node->get_baked_light()->set_edited(true);
- print_line("MSSET: "+itos(OS::get_singleton()->get_ticks_msec()-t));
- }
- }
- }
- }
- void BakedLightEditor::_menu_option(int p_option) {
- switch(p_option) {
- case MENU_OPTION_BAKE: {
- ERR_FAIL_COND(!node);
- ERR_FAIL_COND(node->get_baked_light().is_null());
- baker->bake(node->get_baked_light(),node);
- node->get_baked_light()->set_mode(BakedLight::MODE_OCTREE);
- update_timeout=0;
- set_process(true);
- } break;
- case MENU_OPTION_CLEAR: {
- } break;
- }
- }
- void BakedLightEditor::_bake_pressed() {
- ERR_FAIL_COND(!node);
- if (node->get_baked_light().is_null()) {
- err_dialog->set_text("BakedLightInstance does not contain a BakedLight resource.");
- err_dialog->popup_centered(Size2(350,70));
- button_bake->set_pressed(false);
- return;
- }
- if (baker->is_baking()) {
- baker->set_pause(!button_bake->is_pressed());
- if (baker->is_paused()) {
- set_process(false);
- bake_info->set_text("");
- button_reset->show();
- button_make_lightmaps->show();
- } else {
- update_timeout=0;
- set_process(true);
- button_make_lightmaps->hide();
- button_reset->hide();
- }
- } else {
- baker->bake(node->get_baked_light(),node);
- node->get_baked_light()->set_mode(BakedLight::MODE_OCTREE);
- update_timeout=0;
- set_process(true);
- }
- }
- void BakedLightEditor::_clear_pressed(){
- baker->clear();
- button_bake->set_pressed(false);
- bake_info->set_text("");
- }
- void BakedLightEditor::edit(BakedLightInstance *p_baked_light) {
- if (p_baked_light==NULL || node==p_baked_light) {
- return;
- }
- if (node && node!=p_baked_light)
- _end_baking();
- node=p_baked_light;
- //_end_baking();
- }
- void BakedLightEditor::_bake_lightmaps() {
- Error err = baker->transfer_to_lightmaps();
- if (err) {
- err_dialog->set_text("Error baking to lightmaps!\nMake sure that a bake has just\n happened and that lightmaps are\n configured. ");
- err_dialog->popup_centered(Size2(350,70));
- return;
- }
- node->get_baked_light()->set_mode(BakedLight::MODE_LIGHTMAPS);
- }
- void BakedLightEditor::_bind_methods() {
- ObjectTypeDB::bind_method("_menu_option",&BakedLightEditor::_menu_option);
- ObjectTypeDB::bind_method("_bake_pressed",&BakedLightEditor::_bake_pressed);
- ObjectTypeDB::bind_method("_clear_pressed",&BakedLightEditor::_clear_pressed);
- ObjectTypeDB::bind_method("_bake_lightmaps",&BakedLightEditor::_bake_lightmaps);
- }
- BakedLightEditor::BakedLightEditor() {
- bake_hbox = memnew( HBoxContainer );
- button_bake = memnew( ToolButton );
- button_bake->set_text("Bake!");
- button_bake->set_toggle_mode(true);
- button_reset = memnew( Button );
- button_make_lightmaps = memnew( Button );
- button_bake->set_tooltip("Start/Unpause the baking process.\nThis bakes lighting into the lightmap octree.");
- button_make_lightmaps ->set_tooltip("Convert the lightmap octree to lightmap textures\n(must have set up UV/Lightmaps properly before!).");
- bake_info = memnew( Label );
- bake_hbox->add_child( button_bake );
- bake_hbox->add_child( button_reset );
- bake_hbox->add_child( bake_info );
- err_dialog = memnew( AcceptDialog );
- add_child(err_dialog);
- node=NULL;
- baker = memnew( BakedLightBaker );
- bake_hbox->add_child(button_make_lightmaps);
- button_make_lightmaps->hide();
- button_bake->connect("pressed",this,"_bake_pressed");
- button_reset->connect("pressed",this,"_clear_pressed");
- button_make_lightmaps->connect("pressed",this,"_bake_lightmaps");
- button_reset->hide();
- button_reset->set_tooltip("Reset the lightmap octree baking process (start over).");
- update_timeout=0;
- }
- BakedLightEditor::~BakedLightEditor() {
- memdelete(baker);
- }
- void BakedLightEditorPlugin::edit(Object *p_object) {
- baked_light_editor->edit(p_object->cast_to<BakedLightInstance>());
- }
- bool BakedLightEditorPlugin::handles(Object *p_object) const {
- return p_object->is_type("BakedLightInstance");
- }
- void BakedLightEditorPlugin::make_visible(bool p_visible) {
- if (p_visible) {
- baked_light_editor->show();
- baked_light_editor->bake_hbox->show();
- } else {
- baked_light_editor->hide();
- baked_light_editor->bake_hbox->hide();
- baked_light_editor->edit(NULL);
- }
- }
- BakedLightEditorPlugin::BakedLightEditorPlugin(EditorNode *p_node) {
- editor=p_node;
- baked_light_editor = memnew( BakedLightEditor );
- editor->get_viewport()->add_child(baked_light_editor);
- add_custom_control(CONTAINER_SPATIAL_EDITOR_MENU,baked_light_editor->bake_hbox);
- baked_light_editor->hide();
- baked_light_editor->bake_hbox->hide();
- }
- BakedLightEditorPlugin::~BakedLightEditorPlugin()
- {
- }
|