2023-01-05 12:25:55 +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"
|
2019-03-04 18:52:39 +00:00
|
|
|
#include "editor/editor_plugin.h"
|
2022-07-31 18:14:15 +00:00
|
|
|
#include "editor/plugins/editor_resource_conversion_plugin.h"
|
2019-03-04 18:52:39 +00:00
|
|
|
#include "scene/resources/material.h"
|
2022-02-14 13:00:03 +00:00
|
|
|
#include "scene/resources/primitive_meshes.h"
|
2019-03-04 18:52:39 +00:00
|
|
|
|
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;
|
2022-11-19 11:45:49 +00:00
|
|
|
class TextureButton;
|
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;
|
|
|
|
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;
|
2019-03-04 18:52:39 +00:00
|
|
|
|
2021-12-07 14:16:41 +00:00
|
|
|
HBoxContainer *layout_3d = nullptr;
|
|
|
|
|
|
|
|
TextureButton *sphere_switch = nullptr;
|
|
|
|
TextureButton *box_switch = nullptr;
|
2019-03-04 18:52:39 +00:00
|
|
|
|
2021-12-07 14:16:41 +00:00
|
|
|
TextureButton *light_1_switch = nullptr;
|
|
|
|
TextureButton *light_2_switch = nullptr;
|
2019-03-04 18:52:39 +00:00
|
|
|
|
|
|
|
Ref<Material> material;
|
|
|
|
|
2022-09-01 15:52:49 +00:00
|
|
|
struct ThemeCache {
|
|
|
|
Ref<Texture2D> light_1_on;
|
|
|
|
Ref<Texture2D> light_1_off;
|
|
|
|
Ref<Texture2D> light_2_on;
|
|
|
|
Ref<Texture2D> light_2_off;
|
|
|
|
Ref<Texture2D> sphere_on;
|
|
|
|
Ref<Texture2D> sphere_off;
|
|
|
|
Ref<Texture2D> box_on;
|
|
|
|
Ref<Texture2D> box_off;
|
|
|
|
Ref<Texture2D> checkerboard;
|
|
|
|
} theme_cache;
|
|
|
|
|
2019-03-04 18:52:39 +00:00
|
|
|
void _button_pressed(Node *p_button);
|
|
|
|
|
|
|
|
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;
|
|
|
|
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
|
|
|
|
2021-12-21 22:19:00 +00:00
|
|
|
void _undo_redo_inspector_callback(Object *p_undo_redo, Object *p_edited, String p_property, Variant p_new_value);
|
|
|
|
|
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
|