2023-01-05 13:25:55 +01:00
|
|
|
/**************************************************************************/
|
|
|
|
/* voxel_gi_editor_plugin.h */
|
|
|
|
/**************************************************************************/
|
|
|
|
/* This file is part of: */
|
|
|
|
/* GODOT ENGINE */
|
|
|
|
/* https://godotengine.org */
|
|
|
|
/**************************************************************************/
|
|
|
|
/* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */
|
|
|
|
/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
|
|
|
|
/* */
|
|
|
|
/* 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
|
|
|
|
2022-07-23 23:41:51 +02:00
|
|
|
#ifndef VOXEL_GI_EDITOR_PLUGIN_H
|
|
|
|
#define VOXEL_GI_EDITOR_PLUGIN_H
|
2016-12-23 04:37:38 +01:00
|
|
|
|
|
|
|
#include "editor/editor_plugin.h"
|
2021-06-05 00:47:26 +02:00
|
|
|
#include "scene/3d/voxel_gi.h"
|
2016-12-23 04:37:38 +01:00
|
|
|
#include "scene/resources/material.h"
|
|
|
|
|
2022-02-12 02:46:22 +01:00
|
|
|
class EditorFileDialog;
|
|
|
|
struct EditorProgress;
|
2022-11-11 20:12:48 +01:00
|
|
|
class HBoxContainer;
|
2022-02-12 02:46:22 +01:00
|
|
|
|
2021-06-05 00:47:26 +02:00
|
|
|
class VoxelGIEditorPlugin : public EditorPlugin {
|
|
|
|
GDCLASS(VoxelGIEditorPlugin, EditorPlugin);
|
2016-12-23 04:37:38 +01:00
|
|
|
|
2022-04-04 15:06:57 +02:00
|
|
|
VoxelGI *voxel_gi = nullptr;
|
2016-12-23 04:37:38 +01:00
|
|
|
|
2022-04-04 15:06:57 +02:00
|
|
|
HBoxContainer *bake_hb = nullptr;
|
|
|
|
Button *bake = nullptr;
|
2016-12-23 04:37:38 +01:00
|
|
|
|
2022-04-04 15:06:57 +02:00
|
|
|
EditorFileDialog *probe_file = nullptr;
|
2019-10-31 23:54:21 +01:00
|
|
|
|
2017-10-30 20:33:07 +01:00
|
|
|
static EditorProgress *tmp_progress;
|
|
|
|
static void bake_func_begin(int p_steps);
|
|
|
|
static void bake_func_step(int p_step, const String &p_description);
|
|
|
|
static void bake_func_end();
|
|
|
|
|
2016-12-23 04:37:38 +01:00
|
|
|
void _bake();
|
2021-06-05 00:47:26 +02:00
|
|
|
void _voxel_gi_save_path_and_bake(const String &p_path);
|
2016-12-23 04:37:38 +01:00
|
|
|
|
|
|
|
protected:
|
|
|
|
static void _bind_methods();
|
2019-10-31 23:54:21 +01:00
|
|
|
void _notification(int p_what);
|
2016-12-23 04:37:38 +01:00
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
public:
|
2021-06-05 00:47:26 +02:00
|
|
|
virtual String get_name() const override { return "VoxelGI"; }
|
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;
|
2016-12-23 04:37:38 +01:00
|
|
|
|
2022-01-27 10:36:51 +01:00
|
|
|
VoxelGIEditorPlugin();
|
2021-06-05 00:47:26 +02:00
|
|
|
~VoxelGIEditorPlugin();
|
2016-12-23 04:37:38 +01:00
|
|
|
};
|
|
|
|
|
2022-07-23 23:41:51 +02:00
|
|
|
#endif // VOXEL_GI_EDITOR_PLUGIN_H
|