2018-01-05 00:50:27 +01:00
|
|
|
/*************************************************************************/
|
2021-06-05 00:47:26 +02:00
|
|
|
/* lightmap_gi_editor_plugin.h */
|
2018-01-05 00:50:27 +01:00
|
|
|
/*************************************************************************/
|
|
|
|
/* This file is part of: */
|
|
|
|
/* GODOT ENGINE */
|
|
|
|
/* https://godotengine.org */
|
|
|
|
/*************************************************************************/
|
2022-01-03 21:27:34 +01:00
|
|
|
/* Copyright (c) 2007-2022 Juan Linietsky, Ariel Manzur. */
|
|
|
|
/* Copyright (c) 2014-2022 Godot Engine contributors (cf. AUTHORS.md). */
|
2018-01-05 00:50:27 +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. */
|
|
|
|
/*************************************************************************/
|
|
|
|
|
2022-07-23 23:41:51 +02:00
|
|
|
#ifndef LIGHTMAP_GI_EDITOR_PLUGIN_H
|
|
|
|
#define LIGHTMAP_GI_EDITOR_PLUGIN_H
|
2017-12-14 12:59:46 +01:00
|
|
|
|
|
|
|
#include "editor/editor_plugin.h"
|
2021-06-05 00:47:26 +02:00
|
|
|
#include "scene/3d/lightmap_gi.h"
|
2017-12-14 12:59:46 +01:00
|
|
|
#include "scene/resources/material.h"
|
|
|
|
|
2022-02-12 02:46:22 +01:00
|
|
|
struct EditorProgress;
|
|
|
|
class EditorFileDialog;
|
|
|
|
|
2021-06-05 00:47:26 +02:00
|
|
|
class LightmapGIEditorPlugin : public EditorPlugin {
|
|
|
|
GDCLASS(LightmapGIEditorPlugin, EditorPlugin);
|
2017-12-14 12:59:46 +01:00
|
|
|
|
2022-04-04 15:06:57 +02:00
|
|
|
LightmapGI *lightmap = nullptr;
|
2017-12-14 12:59:46 +01:00
|
|
|
|
2022-04-04 15:06:57 +02:00
|
|
|
Button *bake = nullptr;
|
2017-12-14 12:59:46 +01:00
|
|
|
|
2022-04-04 15:06:57 +02:00
|
|
|
EditorFileDialog *file_dialog = nullptr;
|
2017-12-14 12:59:46 +01:00
|
|
|
static EditorProgress *tmp_progress;
|
2020-05-01 14:34:23 +02:00
|
|
|
static bool bake_func_step(float p_progress, const String &p_description, void *, bool p_refresh);
|
2021-12-31 02:40:36 +01:00
|
|
|
static void bake_func_end(uint64_t p_time_started);
|
2017-12-14 12:59:46 +01:00
|
|
|
|
2020-05-01 14:34:23 +02:00
|
|
|
void _bake_select_file(const String &p_file);
|
2017-12-14 12:59:46 +01:00
|
|
|
void _bake();
|
|
|
|
|
|
|
|
protected:
|
|
|
|
static void _bind_methods();
|
|
|
|
|
|
|
|
public:
|
2021-06-05 00:47:26 +02:00
|
|
|
virtual String get_name() const override { return "LightmapGI"; }
|
2020-07-10 12:34:39 +02:00
|
|
|
bool has_main_screen() const override { return false; }
|
|
|
|
virtual void edit(Object *p_object) override;
|
|
|
|
virtual bool handles(Object *p_object) const override;
|
|
|
|
virtual void make_visible(bool p_visible) override;
|
2017-12-14 12:59:46 +01:00
|
|
|
|
2022-01-27 10:36:51 +01:00
|
|
|
LightmapGIEditorPlugin();
|
2021-06-05 00:47:26 +02:00
|
|
|
~LightmapGIEditorPlugin();
|
2017-12-14 12:59:46 +01:00
|
|
|
};
|
|
|
|
|
2022-07-23 23:41:51 +02:00
|
|
|
#endif // LIGHTMAP_GI_EDITOR_PLUGIN_H
|