2016-06-18 14:46:12 +02:00
|
|
|
/*************************************************************************/
|
|
|
|
/* editor_resource_preview.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
|
|
|
/*************************************************************************/
|
2021-01-01 20:13:46 +01:00
|
|
|
/* Copyright (c) 2007-2021 Juan Linietsky, Ariel Manzur. */
|
|
|
|
/* Copyright (c) 2014-2021 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 EDITORRESOURCEPREVIEW_H
|
|
|
|
#define EDITORRESOURCEPREVIEW_H
|
|
|
|
|
2018-09-11 18:13:45 +02:00
|
|
|
#include "core/os/semaphore.h"
|
|
|
|
#include "core/os/thread.h"
|
2021-02-10 19:22:13 +01:00
|
|
|
#include "core/templates/safe_refcount.h"
|
2017-03-05 16:44:50 +01:00
|
|
|
#include "scene/main/node.h"
|
2015-05-31 06:59:42 +02:00
|
|
|
#include "scene/resources/texture.h"
|
|
|
|
|
2021-06-04 18:03:15 +02:00
|
|
|
class EditorResourcePreviewGenerator : public RefCounted {
|
|
|
|
GDCLASS(EditorResourcePreviewGenerator, RefCounted);
|
2015-05-31 06:59:42 +02:00
|
|
|
|
2016-09-10 20:32:17 +02:00
|
|
|
protected:
|
|
|
|
static void _bind_methods();
|
2015-05-31 06:59:42 +02:00
|
|
|
|
2021-08-22 03:52:44 +02:00
|
|
|
GDVIRTUAL1RC(bool, _handles, String)
|
|
|
|
GDVIRTUAL2RC(Ref<Texture2D>, _generate, RES, Vector2i)
|
|
|
|
GDVIRTUAL2RC(Ref<Texture2D>, _generate_from_path, String, Vector2i)
|
|
|
|
GDVIRTUAL0RC(bool, _generate_small_preview_automatically)
|
|
|
|
GDVIRTUAL0RC(bool, _can_generate_small_preview)
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
public:
|
|
|
|
virtual bool handles(const String &p_type) const;
|
2019-06-11 20:43:37 +02:00
|
|
|
virtual Ref<Texture2D> generate(const RES &p_from, const Size2 &p_size) const;
|
|
|
|
virtual Ref<Texture2D> generate_from_path(const String &p_path, const Size2 &p_size) const;
|
2018-09-12 13:10:49 +02:00
|
|
|
|
2019-05-20 10:45:12 +02:00
|
|
|
virtual bool generate_small_preview_automatically() const;
|
|
|
|
virtual bool can_generate_small_preview() const;
|
2015-05-31 06:59:42 +02:00
|
|
|
|
|
|
|
EditorResourcePreviewGenerator();
|
|
|
|
};
|
|
|
|
|
|
|
|
class EditorResourcePreview : public Node {
|
2017-03-05 16:44:50 +01:00
|
|
|
GDCLASS(EditorResourcePreview, Node);
|
2015-05-31 06:59:42 +02:00
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
static EditorResourcePreview *singleton;
|
2015-05-31 06:59:42 +02:00
|
|
|
|
|
|
|
struct QueueItem {
|
2016-05-27 19:18:40 +02:00
|
|
|
Ref<Resource> resource;
|
2015-05-31 06:59:42 +02:00
|
|
|
String path;
|
|
|
|
ObjectID id;
|
|
|
|
StringName function;
|
|
|
|
Variant userdata;
|
|
|
|
};
|
|
|
|
|
|
|
|
List<QueueItem> queue;
|
|
|
|
|
2020-02-26 11:28:13 +01:00
|
|
|
Mutex preview_mutex;
|
2020-03-03 09:26:42 +01:00
|
|
|
Semaphore preview_sem;
|
2021-01-19 13:29:41 +01:00
|
|
|
Thread thread;
|
2021-02-10 19:22:13 +01:00
|
|
|
SafeFlag exit;
|
|
|
|
SafeFlag exited;
|
2015-05-31 06:59:42 +02:00
|
|
|
|
|
|
|
struct Item {
|
2019-06-11 20:43:37 +02:00
|
|
|
Ref<Texture2D> preview;
|
|
|
|
Ref<Texture2D> small_preview;
|
2020-11-24 10:12:55 +01:00
|
|
|
int order = 0;
|
|
|
|
uint32_t last_hash = 0;
|
|
|
|
uint64_t modified_time = 0;
|
2015-05-31 06:59:42 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
int order;
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
Map<String, Item> cache;
|
2015-05-31 06:59:42 +02:00
|
|
|
|
2019-06-11 20:43:37 +02:00
|
|
|
void _preview_ready(const String &p_str, const Ref<Texture2D> &p_texture, const Ref<Texture2D> &p_small_texture, ObjectID id, const StringName &p_func, const Variant &p_ud);
|
2018-09-12 13:10:49 +02:00
|
|
|
void _generate_preview(Ref<ImageTexture> &r_texture, Ref<ImageTexture> &r_small_texture, const QueueItem &p_item, const String &cache_base);
|
2015-05-31 06:59:42 +02:00
|
|
|
|
|
|
|
static void _thread_func(void *ud);
|
|
|
|
void _thread();
|
|
|
|
|
2020-03-17 07:33:00 +01:00
|
|
|
Vector<Ref<EditorResourcePreviewGenerator>> preview_generators;
|
2016-07-03 18:15:15 +02:00
|
|
|
|
2015-05-31 06:59:42 +02:00
|
|
|
protected:
|
|
|
|
static void _bind_methods();
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
public:
|
|
|
|
static EditorResourcePreview *get_singleton();
|
2015-05-31 06:59:42 +02:00
|
|
|
|
2021-05-26 09:19:46 +02:00
|
|
|
// p_receiver_func callback has signature (String p_path, Ref<Texture2D> p_preview, Ref<Texture2D> p_preview_small, Variant p_userdata)
|
|
|
|
// p_preview will be null if there was an error
|
2017-08-12 18:52:50 +02:00
|
|
|
void queue_resource_preview(const String &p_path, Object *p_receiver, const StringName &p_receiver_func, const Variant &p_userdata);
|
|
|
|
void queue_edited_resource_preview(const Ref<Resource> &p_res, Object *p_receiver, const StringName &p_receiver_func, const Variant &p_userdata);
|
2015-05-31 06:59:42 +02:00
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
void add_preview_generator(const Ref<EditorResourcePreviewGenerator> &p_generator);
|
|
|
|
void remove_preview_generator(const Ref<EditorResourcePreviewGenerator> &p_generator);
|
|
|
|
void check_for_invalidation(const String &p_path);
|
2015-05-31 06:59:42 +02:00
|
|
|
|
2019-02-27 17:31:11 +01:00
|
|
|
void start();
|
2019-01-17 13:09:01 +01:00
|
|
|
void stop();
|
|
|
|
|
2015-05-31 06:59:42 +02:00
|
|
|
EditorResourcePreview();
|
|
|
|
~EditorResourcePreview();
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // EDITORRESOURCEPREVIEW_H
|