aboutsummaryrefslogtreecommitdiff
path: root/smelt/sdl/CxImage/ximaska.h
diff options
context:
space:
mode:
authorGravatar Chris Xiong <chirs241097@gmail.com> 2015-08-14 23:45:02 +0800
committerGravatar Chris Xiong <chirs241097@gmail.com> 2015-08-14 23:45:02 +0800
commit92f17580846c88108aab023092c23e6bcdcf2f75 (patch)
tree0b05ee9215e46c02482e545989a8f92041bcc4f6 /smelt/sdl/CxImage/ximaska.h
parentfff589be8d4a363c01c698c052fc43de806f5055 (diff)
downloadbullet-lab-remix-92f17580846c88108aab023092c23e6bcdcf2f75.tar.xz
SMELT is finally finished! Add the SMELT library for future use.
Add .gitignore.
Diffstat (limited to 'smelt/sdl/CxImage/ximaska.h')
-rw-r--r--smelt/sdl/CxImage/ximaska.h44
1 files changed, 44 insertions, 0 deletions
diff --git a/smelt/sdl/CxImage/ximaska.h b/smelt/sdl/CxImage/ximaska.h
new file mode 100644
index 0000000..ad3f598
--- /dev/null
+++ b/smelt/sdl/CxImage/ximaska.h
@@ -0,0 +1,44 @@
+/*
+ * File: ximaska.h
+ * Purpose: SKA Image Class Loader and Writer
+ */
+/* ==========================================================
+ * CxImageSKA (c) 25/Sep/2007 Davide Pizzolato - www.xdp.it
+ * For conditions of distribution and use, see copyright notice in ximage.h
+ * ==========================================================
+ */
+#if !defined(__ximaSKA_h)
+#define __ximaSKA_h
+
+#include "ximage.h"
+
+#if CXIMAGE_SUPPORT_SKA
+
+class CxImageSKA: public CxImage
+{
+#pragma pack(1)
+ typedef struct tagSkaHeader {
+ uint16_t Width;
+ uint16_t Height;
+ uint8_t BppExp;
+ uint32_t dwUnknown;
+} SKAHEADER;
+#pragma pack()
+
+public:
+ CxImageSKA(): CxImage(CXIMAGE_FORMAT_SKA) {}
+
+// bool Load(const char * imageFileName){ return CxImage::Load(imageFileName,CXIMAGE_FORMAT_ICO);}
+// bool Save(const char * imageFileName){ return CxImage::Save(imageFileName,CXIMAGE_FORMAT_ICO);}
+ bool Decode(CxFile * hFile);
+ bool Decode(FILE *hFile) { CxIOFile file(hFile); return Decode(&file); }
+
+#if CXIMAGE_SUPPORT_ENCODE
+ bool Encode(CxFile * hFile);
+ bool Encode(FILE *hFile) { CxIOFile file(hFile); return Encode(&file); }
+#endif // CXIMAGE_SUPPORT_ENCODE
+};
+
+#endif
+
+#endif