2016-06-18 14:46:12 +02:00
|
|
|
/*************************************************************************/
|
|
|
|
/* editor_preview_plugins.h */
|
|
|
|
/*************************************************************************/
|
|
|
|
/* This file is part of: */
|
|
|
|
/* GODOT ENGINE */
|
2017-08-27 14:16:55 +02:00
|
|
|
/* https://godotengine.org */
|
2016-06-18 14:46:12 +02:00
|
|
|
/*************************************************************************/
|
2019-01-01 12:53:14 +01:00
|
|
|
/* Copyright (c) 2007-2019 Juan Linietsky, Ariel Manzur. */
|
|
|
|
/* Copyright (c) 2014-2019 Godot Engine contributors (cf. AUTHORS.md) */
|
2016-06-18 14:46:12 +02: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 00:50:27 +01:00
|
|
|
|
2015-05-31 06:59:42 +02:00
|
|
|
#ifndef EDITORPREVIEWPLUGINS_H
|
|
|
|
#define EDITORPREVIEWPLUGINS_H
|
|
|
|
|
2017-03-05 14:21:25 +01:00
|
|
|
#include "editor/editor_resource_preview.h"
|
2015-05-31 06:59:42 +02:00
|
|
|
|
2018-02-28 20:23:40 +01:00
|
|
|
void post_process_preview(Ref<Image> p_image);
|
|
|
|
|
2015-05-31 06:59:42 +02:00
|
|
|
class EditorTexturePreviewPlugin : public EditorResourcePreviewGenerator {
|
2017-06-09 05:23:50 +02:00
|
|
|
GDCLASS(EditorTexturePreviewPlugin, EditorResourcePreviewGenerator)
|
2015-05-31 06:59:42 +02:00
|
|
|
public:
|
2017-06-09 05:23:50 +02:00
|
|
|
virtual bool handles(const String &p_type) const;
|
2019-05-20 10:45:12 +02:00
|
|
|
virtual bool generate_small_preview_automatically() const;
|
2018-09-12 13:10:49 +02:00
|
|
|
virtual Ref<Texture> generate(const RES &p_from, const Size2 p_size) const;
|
2015-05-31 06:59:42 +02:00
|
|
|
|
|
|
|
EditorTexturePreviewPlugin();
|
|
|
|
};
|
|
|
|
|
2018-07-29 21:45:23 +02:00
|
|
|
class EditorImagePreviewPlugin : public EditorResourcePreviewGenerator {
|
|
|
|
GDCLASS(EditorImagePreviewPlugin, EditorResourcePreviewGenerator)
|
|
|
|
public:
|
|
|
|
virtual bool handles(const String &p_type) const;
|
2019-05-20 10:45:12 +02:00
|
|
|
virtual bool generate_small_preview_automatically() const;
|
2018-09-12 13:10:49 +02:00
|
|
|
virtual Ref<Texture> generate(const RES &p_from, const Size2 p_size) const;
|
2018-07-29 21:45:23 +02:00
|
|
|
|
|
|
|
EditorImagePreviewPlugin();
|
|
|
|
};
|
|
|
|
|
2016-01-03 21:14:28 +01:00
|
|
|
class EditorBitmapPreviewPlugin : public EditorResourcePreviewGenerator {
|
2017-06-09 05:23:50 +02:00
|
|
|
GDCLASS(EditorBitmapPreviewPlugin, EditorResourcePreviewGenerator)
|
2016-01-03 21:14:28 +01:00
|
|
|
public:
|
2017-06-09 05:23:50 +02:00
|
|
|
virtual bool handles(const String &p_type) const;
|
2019-05-20 10:45:12 +02:00
|
|
|
virtual bool generate_small_preview_automatically() const;
|
2018-09-12 13:10:49 +02:00
|
|
|
virtual Ref<Texture> generate(const RES &p_from, const Size2 p_size) const;
|
2016-01-03 21:14:28 +01:00
|
|
|
|
|
|
|
EditorBitmapPreviewPlugin();
|
|
|
|
};
|
|
|
|
|
2015-05-31 06:59:42 +02:00
|
|
|
class EditorPackedScenePreviewPlugin : public EditorResourcePreviewGenerator {
|
|
|
|
|
|
|
|
public:
|
2017-06-09 05:23:50 +02:00
|
|
|
virtual bool handles(const String &p_type) const;
|
2018-09-12 13:10:49 +02:00
|
|
|
virtual Ref<Texture> generate(const RES &p_from, const Size2 p_size) const;
|
|
|
|
virtual Ref<Texture> generate_from_path(const String &p_path, const Size2 p_size) const;
|
2015-05-31 06:59:42 +02:00
|
|
|
|
|
|
|
EditorPackedScenePreviewPlugin();
|
|
|
|
};
|
|
|
|
|
|
|
|
class EditorMaterialPreviewPlugin : public EditorResourcePreviewGenerator {
|
|
|
|
|
2017-06-09 05:23:50 +02:00
|
|
|
GDCLASS(EditorMaterialPreviewPlugin, EditorResourcePreviewGenerator)
|
|
|
|
|
2015-05-31 06:59:42 +02:00
|
|
|
RID scenario;
|
|
|
|
RID sphere;
|
|
|
|
RID sphere_instance;
|
|
|
|
RID viewport;
|
2017-06-09 05:23:50 +02:00
|
|
|
RID viewport_texture;
|
2015-05-31 06:59:42 +02:00
|
|
|
RID light;
|
|
|
|
RID light_instance;
|
|
|
|
RID light2;
|
|
|
|
RID light_instance2;
|
|
|
|
RID camera;
|
2018-07-29 21:45:23 +02:00
|
|
|
mutable volatile bool preview_done;
|
2015-05-31 06:59:42 +02:00
|
|
|
|
2017-06-09 05:23:50 +02:00
|
|
|
void _preview_done(const Variant &p_udata);
|
|
|
|
|
|
|
|
protected:
|
|
|
|
static void _bind_methods();
|
|
|
|
|
|
|
|
public:
|
|
|
|
virtual bool handles(const String &p_type) const;
|
2019-05-20 10:45:12 +02:00
|
|
|
virtual bool generate_small_preview_automatically() const;
|
2018-09-12 13:10:49 +02:00
|
|
|
virtual Ref<Texture> generate(const RES &p_from, const Size2 p_size) const;
|
2015-05-31 06:59:42 +02:00
|
|
|
|
|
|
|
EditorMaterialPreviewPlugin();
|
|
|
|
~EditorMaterialPreviewPlugin();
|
|
|
|
};
|
|
|
|
|
|
|
|
class EditorScriptPreviewPlugin : public EditorResourcePreviewGenerator {
|
|
|
|
public:
|
2017-06-09 05:23:50 +02:00
|
|
|
virtual bool handles(const String &p_type) const;
|
2018-09-12 13:10:49 +02:00
|
|
|
virtual Ref<Texture> generate(const RES &p_from, const Size2 p_size) const;
|
2015-05-31 06:59:42 +02:00
|
|
|
|
|
|
|
EditorScriptPreviewPlugin();
|
|
|
|
};
|
|
|
|
|
2018-06-07 17:46:14 +02:00
|
|
|
class EditorAudioStreamPreviewPlugin : public EditorResourcePreviewGenerator {
|
2015-05-31 06:59:42 +02:00
|
|
|
public:
|
2018-06-07 17:46:14 +02:00
|
|
|
virtual bool handles(const String &p_type) const;
|
2018-09-12 13:10:49 +02:00
|
|
|
virtual Ref<Texture> generate(const RES &p_from, const Size2 p_size) const;
|
2015-05-31 06:59:42 +02:00
|
|
|
|
2018-06-07 17:46:14 +02:00
|
|
|
EditorAudioStreamPreviewPlugin();
|
2015-05-31 06:59:42 +02:00
|
|
|
};
|
2017-08-26 17:46:49 +02:00
|
|
|
|
2015-06-01 02:13:24 +02:00
|
|
|
class EditorMeshPreviewPlugin : public EditorResourcePreviewGenerator {
|
|
|
|
|
2017-06-09 05:23:50 +02:00
|
|
|
GDCLASS(EditorMeshPreviewPlugin, EditorResourcePreviewGenerator)
|
|
|
|
|
2015-06-01 02:13:24 +02:00
|
|
|
RID scenario;
|
|
|
|
RID mesh_instance;
|
|
|
|
RID viewport;
|
2017-06-09 05:23:50 +02:00
|
|
|
RID viewport_texture;
|
2015-06-01 02:13:24 +02:00
|
|
|
RID light;
|
|
|
|
RID light_instance;
|
|
|
|
RID light2;
|
|
|
|
RID light_instance2;
|
|
|
|
RID camera;
|
2018-07-29 21:45:23 +02:00
|
|
|
mutable volatile bool preview_done;
|
2015-06-01 02:13:24 +02:00
|
|
|
|
2017-06-09 05:23:50 +02:00
|
|
|
void _preview_done(const Variant &p_udata);
|
|
|
|
|
|
|
|
protected:
|
|
|
|
static void _bind_methods();
|
|
|
|
|
|
|
|
public:
|
|
|
|
virtual bool handles(const String &p_type) const;
|
2018-09-12 13:10:49 +02:00
|
|
|
virtual Ref<Texture> generate(const RES &p_from, const Size2 p_size) const;
|
2015-06-01 02:13:24 +02:00
|
|
|
|
|
|
|
EditorMeshPreviewPlugin();
|
|
|
|
~EditorMeshPreviewPlugin();
|
|
|
|
};
|
|
|
|
|
2018-04-16 05:00:56 +02:00
|
|
|
class EditorFontPreviewPlugin : public EditorResourcePreviewGenerator {
|
|
|
|
|
|
|
|
GDCLASS(EditorFontPreviewPlugin, EditorResourcePreviewGenerator)
|
|
|
|
|
|
|
|
RID viewport;
|
|
|
|
RID viewport_texture;
|
|
|
|
RID canvas;
|
|
|
|
RID canvas_item;
|
2018-07-29 21:45:23 +02:00
|
|
|
mutable volatile bool preview_done;
|
2018-04-16 05:00:56 +02:00
|
|
|
|
|
|
|
void _preview_done(const Variant &p_udata);
|
|
|
|
|
|
|
|
protected:
|
|
|
|
static void _bind_methods();
|
|
|
|
|
|
|
|
public:
|
|
|
|
virtual bool handles(const String &p_type) const;
|
2018-09-12 13:10:49 +02:00
|
|
|
virtual Ref<Texture> generate(const RES &p_from, const Size2 p_size) const;
|
|
|
|
virtual Ref<Texture> generate_from_path(const String &p_path, const Size2 p_size) const;
|
2018-04-16 05:00:56 +02:00
|
|
|
|
|
|
|
EditorFontPreviewPlugin();
|
|
|
|
~EditorFontPreviewPlugin();
|
|
|
|
};
|
2015-05-31 06:59:42 +02:00
|
|
|
#endif // EDITORPREVIEWPLUGINS_H
|