summaryrefslogtreecommitdiff
path: root/source/modules/asura-core/image/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/modules/asura-core/image/image_data.h
parent66fe16dd5ed57ae958fc25158d0defae2e6fae6a (diff)
*misc
Diffstat (limited to 'source/modules/asura-core/image/image_data.h')
-rw-r--r--source/modules/asura-core/image/image_data.h85
1 files changed, 85 insertions, 0 deletions
diff --git a/source/modules/asura-core/image/image_data.h b/source/modules/asura-core/image/image_data.h
new file mode 100644
index 0000000..d9427d3
--- /dev/null
+++ b/source/modules/asura-core/image/image_data.h
@@ -0,0 +1,85 @@
+#ifndef __ASURA_ENGINE_IMAGEDATA_H__
+#define __ASURA_ENGINE_IMAGEDATA_H__
+
+#include <list>
+
+#include <asura-utils/scripting/portable.hpp>
+#include <asura-utils/io/decoded_data.h>
+#include <asura-utils/io/data_buffer.h>
+#include <asura-utils/threading/thread.h>
+#include <asura-utils/threading/mutex.h>
+
+#include "../graphics/texture.h"
+#include "../graphics/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();
+ ~ImageData();
+
+ void Decode(AEIO::DataBuffer& buffer) override;
+
+ void Lock();
+ void Unlock();
+
+ Color GetPixel(uint x, uint y);
+
+ //----------------------------------------------------------------------------//
+
+ uint width, height; // سߴ
+ ColorFormat format; // ʽ
+ byte* pixels; //
+ std::size_t size; // ݳ
+
+ //----------------------------------------------------------------------------//
+
+ private:
+
+ //----------------------------------------------------------------------------//
+
+ LUAX_DECL_METHOD(_New);
+ LUAX_DECL_METHOD(_GetPixel);
+ LUAX_DECL_METHOD(_GetSize);
+ LUAX_DECL_METHOD(_GetWidth);
+ LUAX_DECL_METHOD(_GetHeight);
+ LUAX_DECL_METHOD(_GetPixelFormat);
+ LUAX_DECL_METHOD(_Decode);
+ LUAX_DECL_METHOD(_DecodeAsync);
+ LUAX_DECL_METHOD(_IsAvailable);
+
+ //----------------------------------------------------------------------------//
+
+ ///
+ /// ڵһ׼image dataʱṩdecoderڼdecodersмѡԡ
+ ///
+ static std::list<ImageDecoder*> ImageDecoders;
+
+ ///
+ /// дݵ
+ ///
+ AEThreading::Mutex mMutex;
+
+ };
+
+ }
+}
+
+namespace AEGraphics = AsuraEngine::Graphics;
+
+#endif \ No newline at end of file