summaryrefslogtreecommitdiff
path: root/trunk/libsprite.h
blob: 8d8963129814669bc321ea75e2729392e6990361 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
#ifndef libsprite_h_
#define libsprite_h_

#include <stdint.h>
#include <stdbool.h>

#define SPRITE_RGB 0
#define SPRITE_CMYK 1

struct sprite_area {
	uint32_t extension_size; /* size of extension_words in bytes */
	uint8_t* extension_words;
	uint32_t sprite_count;
	struct sprite** sprites; /* array of length sprite_count */
};

struct sprite_mode {
	uint32_t colorbpp;
	uint32_t maskbpp;
	uint32_t xdpi;
	uint32_t ydpi;
	uint32_t color_model;
};

struct sprite_palette {
	uint32_t size; /* in number of entries (each entry is a word) */
	uint32_t* palette;
};

struct sprite {
	unsigned char name[13]; /* last byte for 0 terminator */
	struct sprite_mode* mode;
	bool has_mask;
	bool has_palette;
	uint32_t palettesize; /* in number of entries (each entry is a word) */
	uint32_t* palette;
	uint32_t width; /* width and height in _pixels_ */
	uint32_t height;
	uint32_t* image;
};

void sprite_init();
struct sprite_area* sprite_load_file(FILE* f);
struct sprite_palette* sprite_load_palette(FILE* f);

#endif