summaryrefslogtreecommitdiff
path: root/source/libs/asura-lib-core/graphics/image_data.h
diff options
context:
space:
mode:
authorchai <chaifix@163.com>2019-04-02 08:47:15 +0800
committerchai <chaifix@163.com>2019-04-02 08:47:15 +0800
commit250e30d73f09e9da2b5a81d0fbae63744ae12a73 (patch)
tree0f55daf334c073e1779d7a1284799a2056aad714 /source/libs/asura-lib-core/graphics/image_data.h
parent66fe16dd5ed57ae958fc25158d0defae2e6fae6a (diff)
*misc
Diffstat (limited to 'source/libs/asura-lib-core/graphics/image_data.h')
-rw-r--r--source/libs/asura-lib-core/graphics/image_data.h68
1 files changed, 68 insertions, 0 deletions
diff --git a/source/libs/asura-lib-core/graphics/image_data.h b/source/libs/asura-lib-core/graphics/image_data.h
new file mode 100644
index 0000000..820e276
--- /dev/null
+++ b/source/libs/asura-lib-core/graphics/image_data.h
@@ -0,0 +1,68 @@
+#ifndef __ASURA_ENGINE_IMAGEDATA_H__
+#define __ASURA_ENGINE_IMAGEDATA_H__
+
+#include <list>
+
+#include <asura-lib-utils/scripting/portable.hpp>
+#include <asura-lib-utils/io/decoded_data.h>
+#include <asura-lib-utils/io/data_buffer.h>
+#include <asura-lib-utils/threading/thread.h>
+
+#include "pixel_format.h"
+#include "color.h"
+
+namespace AsuraEngine
+{
+ namespace Graphics
+ {
+
+ class ImageDecoder;
+
+ class ImageData ASURA_FINAL
+ : public AEIO::DecodedData
+ , public Scripting::Portable<ImageData>
+ {
+ public:
+
+ LUAX_DECL_FACTORY(ImageData);
+
+ ///
+ /// ͼƬļϢʧܣ׳쳣
+ ///
+ ImageData(const AEIO::DataBuffer& buffer);
+ ~ImageData();
+
+ void Load(const AEIO::DataBuffer& buffer);
+ void LoadAsync(const AEIO::DataBuffer& buffer, AEThreading::Thread* thread);
+
+ Color GetPixel(uint x, uint y);
+
+ uint width, height;
+ PixelFormat format;
+ std::size_t size;
+ byte* pixels;
+
+ private:
+
+ void Decode(const AEIO::DataBuffer& buffer) override;
+
+ ///
+ /// ڵһ׼image dataʱṩdecoderڼdecodersмѡԡ
+ ///
+ static std::list<ImageDecoder*> ImageDecoders;
+
+ LUAX_DECL_METHOD(_New);
+ LUAX_DECL_METHOD(_GetPixel);
+ LUAX_DECL_METHOD(_GetSize);
+ LUAX_DECL_METHOD(_GetWidth);
+ LUAX_DECL_METHOD(_GetHeight);
+ LUAX_DECL_METHOD(_GetPixelFormat);
+
+ };
+
+ }
+}
+
+namespace AEGraphics = AsuraEngine::Graphics;
+
+#endif \ No newline at end of file