2016-06-18 20:46:12 +08:00
|
|
|
/*************************************************************************/
|
|
|
|
/* editor_preview_plugins.h */
|
|
|
|
/*************************************************************************/
|
|
|
|
/* This file is part of: */
|
|
|
|
/* GODOT ENGINE */
|
2017-08-27 20:16:55 +08:00
|
|
|
/* https://godotengine.org */
|
2016-06-18 20:46:12 +08:00
|
|
|
/*************************************************************************/
|
2022-01-04 04:27:34 +08:00
|
|
|
/* Copyright (c) 2007-2022 Juan Linietsky, Ariel Manzur. */
|
|
|
|
/* Copyright (c) 2014-2022 Godot Engine contributors (cf. AUTHORS.md). */
|
2016-06-18 20:46:12 +08: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. */
|
|
|
|
/*************************************************************************/
|
2018-01-05 07:50:27 +08:00
|
|
|
|
2022-07-24 05:41:51 +08:00
|
|
|
#ifndef EDITOR_PREVIEW_PLUGINS_H
|
|
|
|
#define EDITOR_PREVIEW_PLUGINS_H
|
2015-05-31 12:59:42 +08:00
|
|
|
|
2021-02-11 02:22:13 +08:00
|
|
|
#include "core/templates/safe_refcount.h"
|
2022-02-14 21:00:03 +08:00
|
|
|
#include "editor/editor_resource_preview.h"
|
2021-02-11 02:22:13 +08:00
|
|
|
|
2018-03-01 03:23:40 +08:00
|
|
|
void post_process_preview(Ref<Image> p_image);
|
|
|
|
|
2015-05-31 12:59:42 +08:00
|
|
|
class EditorTexturePreviewPlugin : public EditorResourcePreviewGenerator {
|
2019-03-20 02:35:57 +08:00
|
|
|
GDCLASS(EditorTexturePreviewPlugin, EditorResourcePreviewGenerator);
|
|
|
|
|
2015-05-31 12:59:42 +08:00
|
|
|
public:
|
2020-07-10 18:34:39 +08:00
|
|
|
virtual bool handles(const String &p_type) const override;
|
|
|
|
virtual bool generate_small_preview_automatically() const override;
|
2022-05-03 07:43:50 +08:00
|
|
|
virtual Ref<Texture2D> generate(const Ref<Resource> &p_from, const Size2 &p_size) const override;
|
2015-05-31 12:59:42 +08:00
|
|
|
|
|
|
|
EditorTexturePreviewPlugin();
|
|
|
|
};
|
|
|
|
|
2018-07-30 03:45:23 +08:00
|
|
|
class EditorImagePreviewPlugin : public EditorResourcePreviewGenerator {
|
2019-03-20 02:35:57 +08:00
|
|
|
GDCLASS(EditorImagePreviewPlugin, EditorResourcePreviewGenerator);
|
|
|
|
|
2018-07-30 03:45:23 +08:00
|
|
|
public:
|
2020-07-10 18:34:39 +08:00
|
|
|
virtual bool handles(const String &p_type) const override;
|
|
|
|
virtual bool generate_small_preview_automatically() const override;
|
2022-05-03 07:43:50 +08:00
|
|
|
virtual Ref<Texture2D> generate(const Ref<Resource> &p_from, const Size2 &p_size) const override;
|
2018-07-30 03:45:23 +08:00
|
|
|
|
|
|
|
EditorImagePreviewPlugin();
|
|
|
|
};
|
|
|
|
|
2016-01-04 04:14:28 +08:00
|
|
|
class EditorBitmapPreviewPlugin : public EditorResourcePreviewGenerator {
|
2019-03-20 02:35:57 +08:00
|
|
|
GDCLASS(EditorBitmapPreviewPlugin, EditorResourcePreviewGenerator);
|
|
|
|
|
2016-01-04 04:14:28 +08:00
|
|
|
public:
|
2020-07-10 18:34:39 +08:00
|
|
|
virtual bool handles(const String &p_type) const override;
|
|
|
|
virtual bool generate_small_preview_automatically() const override;
|
2022-05-03 07:43:50 +08:00
|
|
|
virtual Ref<Texture2D> generate(const Ref<Resource> &p_from, const Size2 &p_size) const override;
|
2016-01-04 04:14:28 +08:00
|
|
|
|
|
|
|
EditorBitmapPreviewPlugin();
|
|
|
|
};
|
|
|
|
|
2015-05-31 12:59:42 +08:00
|
|
|
class EditorPackedScenePreviewPlugin : public EditorResourcePreviewGenerator {
|
|
|
|
public:
|
2017-06-09 11:23:50 +08:00
|
|
|
virtual bool handles(const String &p_type) const;
|
2022-05-03 07:43:50 +08:00
|
|
|
virtual Ref<Texture2D> generate(const Ref<Resource> &p_from, const Size2 &p_size) const;
|
2019-06-12 02:43:37 +08:00
|
|
|
virtual Ref<Texture2D> generate_from_path(const String &p_path, const Size2 &p_size) const;
|
2015-05-31 12:59:42 +08:00
|
|
|
|
|
|
|
EditorPackedScenePreviewPlugin();
|
|
|
|
};
|
|
|
|
|
|
|
|
class EditorMaterialPreviewPlugin : public EditorResourcePreviewGenerator {
|
2019-03-20 02:35:57 +08:00
|
|
|
GDCLASS(EditorMaterialPreviewPlugin, EditorResourcePreviewGenerator);
|
2017-06-09 11:23:50 +08:00
|
|
|
|
2015-05-31 12:59:42 +08:00
|
|
|
RID scenario;
|
|
|
|
RID sphere;
|
|
|
|
RID sphere_instance;
|
|
|
|
RID viewport;
|
2017-06-09 11:23:50 +08:00
|
|
|
RID viewport_texture;
|
2015-05-31 12:59:42 +08:00
|
|
|
RID light;
|
|
|
|
RID light_instance;
|
|
|
|
RID light2;
|
|
|
|
RID light_instance2;
|
|
|
|
RID camera;
|
2022-08-01 07:20:24 +08:00
|
|
|
RID camera_attributes;
|
2021-11-05 14:43:03 +08:00
|
|
|
Semaphore preview_done;
|
2015-05-31 12:59:42 +08:00
|
|
|
|
2021-11-05 14:43:03 +08:00
|
|
|
void _generate_frame_started();
|
2021-11-05 13:59:38 +08:00
|
|
|
void _preview_done();
|
2017-06-09 11:23:50 +08:00
|
|
|
|
|
|
|
public:
|
2020-07-10 18:34:39 +08:00
|
|
|
virtual bool handles(const String &p_type) const override;
|
|
|
|
virtual bool generate_small_preview_automatically() const override;
|
2022-05-03 07:43:50 +08:00
|
|
|
virtual Ref<Texture2D> generate(const Ref<Resource> &p_from, const Size2 &p_size) const override;
|
2015-05-31 12:59:42 +08:00
|
|
|
|
|
|
|
EditorMaterialPreviewPlugin();
|
|
|
|
~EditorMaterialPreviewPlugin();
|
|
|
|
};
|
|
|
|
|
|
|
|
class EditorScriptPreviewPlugin : public EditorResourcePreviewGenerator {
|
|
|
|
public:
|
2017-06-09 11:23:50 +08:00
|
|
|
virtual bool handles(const String &p_type) const;
|
2022-05-03 07:43:50 +08:00
|
|
|
virtual Ref<Texture2D> generate(const Ref<Resource> &p_from, const Size2 &p_size) const;
|
2015-05-31 12:59:42 +08:00
|
|
|
|
|
|
|
EditorScriptPreviewPlugin();
|
|
|
|
};
|
|
|
|
|
2018-06-07 23:46:14 +08:00
|
|
|
class EditorAudioStreamPreviewPlugin : public EditorResourcePreviewGenerator {
|
2015-05-31 12:59:42 +08:00
|
|
|
public:
|
2018-06-07 23:46:14 +08:00
|
|
|
virtual bool handles(const String &p_type) const;
|
2022-05-03 07:43:50 +08:00
|
|
|
virtual Ref<Texture2D> generate(const Ref<Resource> &p_from, const Size2 &p_size) const;
|
2015-05-31 12:59:42 +08:00
|
|
|
|
2018-06-07 23:46:14 +08:00
|
|
|
EditorAudioStreamPreviewPlugin();
|
2015-05-31 12:59:42 +08:00
|
|
|
};
|
2017-08-26 23:46:49 +08:00
|
|
|
|
2015-06-01 08:13:24 +08:00
|
|
|
class EditorMeshPreviewPlugin : public EditorResourcePreviewGenerator {
|
2019-03-20 02:35:57 +08:00
|
|
|
GDCLASS(EditorMeshPreviewPlugin, EditorResourcePreviewGenerator);
|
2017-06-09 11:23:50 +08:00
|
|
|
|
2015-06-01 08:13:24 +08:00
|
|
|
RID scenario;
|
|
|
|
RID mesh_instance;
|
|
|
|
RID viewport;
|
2017-06-09 11:23:50 +08:00
|
|
|
RID viewport_texture;
|
2015-06-01 08:13:24 +08:00
|
|
|
RID light;
|
|
|
|
RID light_instance;
|
|
|
|
RID light2;
|
|
|
|
RID light_instance2;
|
|
|
|
RID camera;
|
2022-08-01 07:20:24 +08:00
|
|
|
RID camera_attributes;
|
2021-11-05 14:43:03 +08:00
|
|
|
Semaphore preview_done;
|
2015-06-01 08:13:24 +08:00
|
|
|
|
2021-11-05 14:43:03 +08:00
|
|
|
void _generate_frame_started();
|
2021-11-05 13:59:38 +08:00
|
|
|
void _preview_done();
|
2017-06-09 11:23:50 +08:00
|
|
|
|
|
|
|
public:
|
2020-07-10 18:34:39 +08:00
|
|
|
virtual bool handles(const String &p_type) const override;
|
2022-05-03 07:43:50 +08:00
|
|
|
virtual Ref<Texture2D> generate(const Ref<Resource> &p_from, const Size2 &p_size) const override;
|
2015-06-01 08:13:24 +08:00
|
|
|
|
|
|
|
EditorMeshPreviewPlugin();
|
|
|
|
~EditorMeshPreviewPlugin();
|
|
|
|
};
|
|
|
|
|
2018-04-16 11:00:56 +08:00
|
|
|
class EditorFontPreviewPlugin : public EditorResourcePreviewGenerator {
|
2019-03-20 02:35:57 +08:00
|
|
|
GDCLASS(EditorFontPreviewPlugin, EditorResourcePreviewGenerator);
|
2018-04-16 11:00:56 +08:00
|
|
|
|
|
|
|
RID viewport;
|
|
|
|
RID viewport_texture;
|
|
|
|
RID canvas;
|
|
|
|
RID canvas_item;
|
2021-11-05 14:43:03 +08:00
|
|
|
Semaphore preview_done;
|
2018-04-16 11:00:56 +08:00
|
|
|
|
2021-11-05 14:43:03 +08:00
|
|
|
void _generate_frame_started();
|
2021-11-05 13:59:38 +08:00
|
|
|
void _preview_done();
|
2018-04-16 11:00:56 +08:00
|
|
|
|
|
|
|
public:
|
2020-07-10 18:34:39 +08:00
|
|
|
virtual bool handles(const String &p_type) const override;
|
2022-05-03 07:43:50 +08:00
|
|
|
virtual Ref<Texture2D> generate(const Ref<Resource> &p_from, const Size2 &p_size) const override;
|
2020-07-10 18:34:39 +08:00
|
|
|
virtual Ref<Texture2D> generate_from_path(const String &p_path, const Size2 &p_size) const override;
|
2018-04-16 11:00:56 +08:00
|
|
|
|
|
|
|
EditorFontPreviewPlugin();
|
|
|
|
~EditorFontPreviewPlugin();
|
|
|
|
};
|
2021-09-29 23:48:27 +08:00
|
|
|
|
|
|
|
class EditorTileMapPatternPreviewPlugin : public EditorResourcePreviewGenerator {
|
|
|
|
GDCLASS(EditorTileMapPatternPreviewPlugin, EditorResourcePreviewGenerator);
|
|
|
|
|
2021-11-05 14:43:03 +08:00
|
|
|
Semaphore preview_done;
|
2021-09-29 23:48:27 +08:00
|
|
|
|
2021-11-05 14:43:03 +08:00
|
|
|
void _generate_frame_started();
|
2021-11-05 13:59:38 +08:00
|
|
|
void _preview_done();
|
2021-09-29 23:48:27 +08:00
|
|
|
|
|
|
|
public:
|
|
|
|
virtual bool handles(const String &p_type) const override;
|
2022-05-03 07:43:50 +08:00
|
|
|
virtual Ref<Texture2D> generate(const Ref<Resource> &p_from, const Size2 &p_size) const override;
|
2021-09-29 23:48:27 +08:00
|
|
|
|
|
|
|
EditorTileMapPatternPreviewPlugin();
|
|
|
|
~EditorTileMapPatternPreviewPlugin();
|
|
|
|
};
|
2022-04-21 06:08:35 +08:00
|
|
|
|
|
|
|
class EditorGradientPreviewPlugin : public EditorResourcePreviewGenerator {
|
|
|
|
GDCLASS(EditorGradientPreviewPlugin, EditorResourcePreviewGenerator);
|
|
|
|
|
|
|
|
public:
|
|
|
|
virtual bool handles(const String &p_type) const override;
|
|
|
|
virtual bool generate_small_preview_automatically() const override;
|
2022-05-03 07:43:50 +08:00
|
|
|
virtual Ref<Texture2D> generate(const Ref<Resource> &p_from, const Size2 &p_size) const override;
|
2022-04-21 06:08:35 +08:00
|
|
|
|
|
|
|
EditorGradientPreviewPlugin();
|
|
|
|
};
|
2022-07-24 05:41:51 +08:00
|
|
|
|
|
|
|
#endif // EDITOR_PREVIEW_PLUGINS_H
|