2017-01-16 07:04:19 +00:00
|
|
|
/**************************************************************************/
|
|
|
|
/* material_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-04 23:50:27 +00:00
|
|
|
|
2016-05-23 20:10:26 +00:00
|
|
|
#ifndef MATERIAL_EDITOR_PLUGIN_H
|
|
|
|
#define MATERIAL_EDITOR_PLUGIN_H
|
|
|
|
|
2022-11-11 19:12:48 +00:00
|
|
|
#include "editor/editor_inspector.h"
|
2024-04-21 08:11:35 +00:00
|
|
|
#include "editor/plugins/editor_plugin.h"
|
2022-07-31 18:14:15 +00:00
|
|
|
#include "editor/plugins/editor_resource_conversion_plugin.h"
|
2021-08-13 16:42:45 +00:00
|
|
|
#include "scene/resources/3d/primitive_meshes.h"
|
2019-03-04 18:52:39 +00:00
|
|
|
#include "scene/resources/material.h"
|
|
|
|
|
2023-04-07 16:59:49 +00:00
|
|
|
class Camera3D;
|
|
|
|
class ColorRect;
|
|
|
|
class DirectionalLight3D;
|
|
|
|
class HBoxContainer;
|
|
|
|
class MeshInstance3D;
|
2022-11-19 11:45:49 +00:00
|
|
|
class SubViewport;
|
2020-04-01 18:28:09 +00:00
|
|
|
class SubViewportContainer;
|
2023-06-29 11:48:53 +00:00
|
|
|
class Button;
|
2024-07-11 13:20:25 +00:00
|
|
|
class Label;
|
2019-12-24 07:17:23 +00:00
|
|
|
|
2019-03-04 18:52:39 +00:00
|
|
|
class MaterialEditor : public Control {
|
|
|
|
GDCLASS(MaterialEditor, Control);
|
|
|
|
|
2022-11-14 17:21:06 +00:00
|
|
|
Vector2 rot;
|
2022-09-07 05:17:57 +00:00
|
|
|
|
2023-04-28 18:10:04 +00:00
|
|
|
SubViewportContainer *vc_2d = nullptr;
|
|
|
|
SubViewport *viewport_2d = nullptr;
|
2021-12-07 14:16:41 +00:00
|
|
|
HBoxContainer *layout_2d = nullptr;
|
|
|
|
ColorRect *rect_instance = nullptr;
|
|
|
|
|
|
|
|
SubViewportContainer *vc = nullptr;
|
|
|
|
SubViewport *viewport = nullptr;
|
2022-09-07 05:17:57 +00:00
|
|
|
Node3D *rotation = nullptr;
|
2021-12-07 14:16:41 +00:00
|
|
|
MeshInstance3D *sphere_instance = nullptr;
|
|
|
|
MeshInstance3D *box_instance = nullptr;
|
2024-09-15 02:38:17 +00:00
|
|
|
MeshInstance3D *quad_instance = nullptr;
|
2021-12-07 14:16:41 +00:00
|
|
|
DirectionalLight3D *light1 = nullptr;
|
|
|
|
DirectionalLight3D *light2 = nullptr;
|
|
|
|
Camera3D *camera = nullptr;
|
2022-07-31 23:20:24 +00:00
|
|
|
Ref<CameraAttributesPractical> camera_attributes;
|
2019-03-04 18:52:39 +00:00
|
|
|
|
|
|
|
Ref<SphereMesh> sphere_mesh;
|
2020-12-04 15:39:45 +00:00
|
|
|
Ref<BoxMesh> box_mesh;
|
2024-09-15 02:38:17 +00:00
|
|
|
Ref<QuadMesh> quad_mesh;
|
2019-03-04 18:52:39 +00:00
|
|
|
|
2024-07-11 13:20:25 +00:00
|
|
|
VBoxContainer *layout_error = nullptr;
|
|
|
|
Label *error_label = nullptr;
|
|
|
|
bool is_unsupported_shader_mode = false;
|
|
|
|
|
2021-12-07 14:16:41 +00:00
|
|
|
HBoxContainer *layout_3d = nullptr;
|
|
|
|
|
2019-03-04 18:52:39 +00:00
|
|
|
Ref<Material> material;
|
|
|
|
|
2023-06-29 11:48:53 +00:00
|
|
|
Button *sphere_switch = nullptr;
|
|
|
|
Button *box_switch = nullptr;
|
2024-09-15 02:38:17 +00:00
|
|
|
Button *quad_switch = nullptr;
|
2023-06-29 11:48:53 +00:00
|
|
|
Button *light_1_switch = nullptr;
|
|
|
|
Button *light_2_switch = nullptr;
|
|
|
|
|
2022-09-01 15:52:49 +00:00
|
|
|
struct ThemeCache {
|
2023-06-29 11:48:53 +00:00
|
|
|
Ref<Texture2D> light_1_icon;
|
|
|
|
Ref<Texture2D> light_2_icon;
|
|
|
|
Ref<Texture2D> sphere_icon;
|
|
|
|
Ref<Texture2D> box_icon;
|
2024-09-15 02:38:17 +00:00
|
|
|
Ref<Texture2D> quad_icon;
|
2022-09-01 15:52:49 +00:00
|
|
|
Ref<Texture2D> checkerboard;
|
|
|
|
} theme_cache;
|
|
|
|
|
2023-06-29 11:48:53 +00:00
|
|
|
void _on_light_1_switch_pressed();
|
|
|
|
void _on_light_2_switch_pressed();
|
|
|
|
void _on_sphere_switch_pressed();
|
|
|
|
void _on_box_switch_pressed();
|
2024-09-15 02:38:17 +00:00
|
|
|
void _on_quad_switch_pressed();
|
2019-03-04 18:52:39 +00:00
|
|
|
|
|
|
|
protected:
|
2022-09-01 15:52:49 +00:00
|
|
|
virtual void _update_theme_item_cache() override;
|
2019-03-04 18:52:39 +00:00
|
|
|
void _notification(int p_what);
|
2022-09-07 05:17:57 +00:00
|
|
|
void gui_input(const Ref<InputEvent> &p_event) override;
|
2024-09-15 02:38:17 +00:00
|
|
|
void _set_rotation(real_t p_x_degrees, real_t p_y_degrees);
|
|
|
|
void _store_rotation_metadata();
|
2022-09-07 05:17:57 +00:00
|
|
|
void _update_rotation();
|
2019-03-04 18:52:39 +00:00
|
|
|
|
|
|
|
public:
|
|
|
|
void edit(Ref<Material> p_material, const Ref<Environment> &p_env);
|
|
|
|
MaterialEditor();
|
|
|
|
};
|
|
|
|
|
|
|
|
class EditorInspectorPluginMaterial : public EditorInspectorPlugin {
|
2019-03-19 18:35:57 +00:00
|
|
|
GDCLASS(EditorInspectorPluginMaterial, EditorInspectorPlugin);
|
2019-03-04 18:52:39 +00:00
|
|
|
Ref<Environment> env;
|
|
|
|
|
|
|
|
public:
|
2020-07-10 10:34:39 +00:00
|
|
|
virtual bool can_handle(Object *p_object) override;
|
|
|
|
virtual void parse_begin(Object *p_object) override;
|
2019-03-04 18:52:39 +00:00
|
|
|
|
2024-02-15 16:25:58 +00:00
|
|
|
void _undo_redo_inspector_callback(Object *p_undo_redo, Object *p_edited, const String &p_property, const Variant &p_new_value);
|
2021-12-21 22:19:00 +00:00
|
|
|
|
2019-03-04 18:52:39 +00:00
|
|
|
EditorInspectorPluginMaterial();
|
|
|
|
};
|
|
|
|
|
|
|
|
class MaterialEditorPlugin : public EditorPlugin {
|
|
|
|
GDCLASS(MaterialEditorPlugin, EditorPlugin);
|
|
|
|
|
|
|
|
public:
|
2020-07-10 10:34:39 +00:00
|
|
|
virtual String get_name() const override { return "Material"; }
|
2019-03-04 18:52:39 +00:00
|
|
|
|
2022-01-27 09:36:51 +00:00
|
|
|
MaterialEditorPlugin();
|
2019-03-04 18:52:39 +00:00
|
|
|
};
|
2017-09-22 12:20:28 +00:00
|
|
|
|
2019-09-15 04:01:52 +00:00
|
|
|
class StandardMaterial3DConversionPlugin : public EditorResourceConversionPlugin {
|
|
|
|
GDCLASS(StandardMaterial3DConversionPlugin, EditorResourceConversionPlugin);
|
2019-03-19 18:35:57 +00:00
|
|
|
|
2017-09-22 12:20:28 +00:00
|
|
|
public:
|
2020-07-10 10:34:39 +00:00
|
|
|
virtual String converts_to() const override;
|
|
|
|
virtual bool handles(const Ref<Resource> &p_resource) const override;
|
|
|
|
virtual Ref<Resource> convert(const Ref<Resource> &p_resource) const override;
|
2017-09-22 12:20:28 +00:00
|
|
|
};
|
|
|
|
|
2021-10-29 14:49:12 +00:00
|
|
|
class ORMMaterial3DConversionPlugin : public EditorResourceConversionPlugin {
|
|
|
|
GDCLASS(ORMMaterial3DConversionPlugin, EditorResourceConversionPlugin);
|
|
|
|
|
|
|
|
public:
|
|
|
|
virtual String converts_to() const override;
|
|
|
|
virtual bool handles(const Ref<Resource> &p_resource) const override;
|
|
|
|
virtual Ref<Resource> convert(const Ref<Resource> &p_resource) const override;
|
|
|
|
};
|
|
|
|
|
2022-08-18 09:09:22 +00:00
|
|
|
class ParticleProcessMaterialConversionPlugin : public EditorResourceConversionPlugin {
|
|
|
|
GDCLASS(ParticleProcessMaterialConversionPlugin, EditorResourceConversionPlugin);
|
2019-03-19 18:35:57 +00:00
|
|
|
|
2017-10-12 11:12:50 +00:00
|
|
|
public:
|
2020-07-10 10:34:39 +00:00
|
|
|
virtual String converts_to() const override;
|
|
|
|
virtual bool handles(const Ref<Resource> &p_resource) const override;
|
|
|
|
virtual Ref<Resource> convert(const Ref<Resource> &p_resource) const override;
|
2017-10-12 11:12:50 +00:00
|
|
|
};
|
|
|
|
|
2017-11-14 18:44:51 +00:00
|
|
|
class CanvasItemMaterialConversionPlugin : public EditorResourceConversionPlugin {
|
2019-03-19 18:35:57 +00:00
|
|
|
GDCLASS(CanvasItemMaterialConversionPlugin, EditorResourceConversionPlugin);
|
|
|
|
|
2017-11-14 18:44:51 +00:00
|
|
|
public:
|
2020-07-10 10:34:39 +00:00
|
|
|
virtual String converts_to() const override;
|
|
|
|
virtual bool handles(const Ref<Resource> &p_resource) const override;
|
|
|
|
virtual Ref<Resource> convert(const Ref<Resource> &p_resource) const override;
|
2017-11-14 18:44:51 +00:00
|
|
|
};
|
|
|
|
|
2020-03-20 00:32:19 +00:00
|
|
|
class ProceduralSkyMaterialConversionPlugin : public EditorResourceConversionPlugin {
|
|
|
|
GDCLASS(ProceduralSkyMaterialConversionPlugin, EditorResourceConversionPlugin);
|
|
|
|
|
|
|
|
public:
|
2020-07-10 10:34:39 +00:00
|
|
|
virtual String converts_to() const override;
|
|
|
|
virtual bool handles(const Ref<Resource> &p_resource) const override;
|
|
|
|
virtual Ref<Resource> convert(const Ref<Resource> &p_resource) const override;
|
2020-03-20 00:32:19 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
class PanoramaSkyMaterialConversionPlugin : public EditorResourceConversionPlugin {
|
|
|
|
GDCLASS(PanoramaSkyMaterialConversionPlugin, EditorResourceConversionPlugin);
|
|
|
|
|
|
|
|
public:
|
2020-07-10 10:34:39 +00:00
|
|
|
virtual String converts_to() const override;
|
|
|
|
virtual bool handles(const Ref<Resource> &p_resource) const override;
|
|
|
|
virtual Ref<Resource> convert(const Ref<Resource> &p_resource) const override;
|
2020-03-20 00:32:19 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
class PhysicalSkyMaterialConversionPlugin : public EditorResourceConversionPlugin {
|
|
|
|
GDCLASS(PhysicalSkyMaterialConversionPlugin, EditorResourceConversionPlugin);
|
|
|
|
|
|
|
|
public:
|
2020-07-10 10:34:39 +00:00
|
|
|
virtual String converts_to() const override;
|
|
|
|
virtual bool handles(const Ref<Resource> &p_resource) const override;
|
|
|
|
virtual Ref<Resource> convert(const Ref<Resource> &p_resource) const override;
|
2020-03-20 00:32:19 +00:00
|
|
|
};
|
|
|
|
|
2021-10-03 11:28:55 +00:00
|
|
|
class FogMaterialConversionPlugin : public EditorResourceConversionPlugin {
|
|
|
|
GDCLASS(FogMaterialConversionPlugin, EditorResourceConversionPlugin);
|
|
|
|
|
|
|
|
public:
|
|
|
|
virtual String converts_to() const override;
|
|
|
|
virtual bool handles(const Ref<Resource> &p_resource) const override;
|
|
|
|
virtual Ref<Resource> convert(const Ref<Resource> &p_resource) const override;
|
|
|
|
};
|
|
|
|
|
2017-08-26 15:46:49 +00:00
|
|
|
#endif // MATERIAL_EDITOR_PLUGIN_H
|