mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-15 06:05:58 -06:00
68 lines
1.5 KiB
C++
68 lines
1.5 KiB
C++
//#BLITZ_APPROVE
|
|
|
|
#define IMAGE_META(k, v)
|
|
#define IMAGE_VERSION(v)
|
|
#define IMAGE_SCAN(s)
|
|
#define IMAGE_PACKED(n, d)
|
|
|
|
#define PREMULTIPLIED
|
|
#define VERSION(x)
|
|
#define IMAGE_BEGIN_DATA
|
|
#define IMAGE_DATA(a0,a1,a2,a3,a4,a5,a6,a7,a8,a9,aa,ab,ac,ad,ae,af,b0,b1,b2,b3,b4,b5,b6,b7,b8,b9,ba,bb,bc,bd,be,bf)
|
|
#define IMAGE_END_DATA(n, c)
|
|
|
|
class IMAGECLASS {
|
|
public:
|
|
#define IMAGE_BEGIN(n) I_##n,
|
|
#define IMAGE_ID(n) I_##n,
|
|
enum {
|
|
#include IMAGEFILE
|
|
COUNT
|
|
};
|
|
#undef IMAGE_BEGIN
|
|
#undef IMAGE_ID
|
|
|
|
public:
|
|
static UPP::Iml& Iml();
|
|
|
|
static void Register__() { Register(ASSTRING(IMAGECLASS), Iml()); }
|
|
|
|
static int Find(const UPP::String& s);
|
|
static int Find(const char *s);
|
|
static int GetCount() { return Iml().GetCount(); }
|
|
static UPP::String GetId(int i) { return Iml().GetId(i); }
|
|
|
|
static UPP::Image Get(int i);
|
|
static UPP::Image Get(const char *s);
|
|
static UPP::Image Get(const UPP::String& s);
|
|
|
|
static void Set(int i, const UPP::Image& m);
|
|
static void Set(const char *s, const UPP::Image& m);
|
|
|
|
static void Reset() { Iml().Reset(); }
|
|
|
|
#define IMAGE_BEGIN(n) static UPP::Image n();
|
|
#define IMAGE_ID(n) static UPP::Image n();
|
|
#include IMAGEFILE
|
|
#undef IMAGE_BEGIN
|
|
#undef IMAGE_ID
|
|
|
|
};
|
|
|
|
#undef IMAGE_SCAN
|
|
#undef IMAGE_PACKED
|
|
#undef IMAGE_META
|
|
#undef IMAGE_VERSION
|
|
|
|
#undef IMAGE_BEGIN_DATA
|
|
#undef IMAGE_END_DATA
|
|
#undef IMAGE_DATA
|
|
|
|
#ifndef IMAGE_KEEP
|
|
#undef IMAGECLASS
|
|
#undef IMAGEFILE
|
|
|
|
#undef PREMULTIPLIED
|
|
#undef VERSION
|
|
|
|
#endif
|