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