summaryrefslogtreecommitdiffstats
path: root/core/io/image_loader.h
diff options
context:
space:
mode:
authorJuan Linietsky <reduzio@gmail.com>2018-07-29 16:45:23 -0300
committerJuan Linietsky <reduzio@gmail.com>2018-07-29 16:45:23 -0300
commit317dee95de84f3dca47b5ecc386975d6e37a9702 (patch)
treeb0a53ad1a735f73e6729f42ea86ed12e0c369b6b /core/io/image_loader.h
parent7b63c6323d2eeade5a6d6e82b44e72ff4e1b6d0c (diff)
downloadredot-engine-317dee95de84f3dca47b5ecc386975d6e37a9702.tar.gz
It is now possible to import images as a separate resource, closes #5738 and likely many others
Diffstat (limited to 'core/io/image_loader.h')
-rw-r--r--core/io/image_loader.h13
1 files changed, 12 insertions, 1 deletions
diff --git a/core/io/image_loader.h b/core/io/image_loader.h
index 052a8b8a40..fbb654c326 100644
--- a/core/io/image_loader.h
+++ b/core/io/image_loader.h
@@ -32,9 +32,11 @@
#define IMAGE_LOADER_H
#include "image.h"
+#include "io/resource_loader.h"
#include "list.h"
#include "os/file_access.h"
#include "ustring.h"
+
/**
@author Juan Linietsky <reduzio@gmail.com>
*/
@@ -55,6 +57,7 @@ class ImageLoader;
class ImageFormatLoader {
friend class ImageLoader;
+ friend class ResourceFormatLoaderImage;
protected:
virtual Error load_image(Ref<Image> p_image, FileAccess *p_fileaccess, bool p_force_linear, float p_scale) = 0;
@@ -70,7 +73,7 @@ class ImageLoader {
enum {
MAX_LOADERS = 8
};
-
+ friend class ResourceFormatLoaderImage;
static ImageFormatLoader *loader[MAX_LOADERS];
static int loader_count;
@@ -83,4 +86,12 @@ public:
static void add_image_format_loader(ImageFormatLoader *p_loader);
};
+class ResourceFormatLoaderImage : public ResourceFormatLoader {
+public:
+ virtual RES load(const String &p_path, const String &p_original_path = "", Error *r_error = NULL);
+ virtual void get_recognized_extensions(List<String> *p_extensions) const;
+ virtual bool handles_type(const String &p_type) const;
+ virtual String get_resource_type(const String &p_path) const;
+};
+
#endif