summaryrefslogtreecommitdiff
path: root/include/kitchensink/internal/subtitle/kitatlas.h
blob: a408b2dd028b43c6bdd5da8b6cb278d7c7af6b7e (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
#ifndef KITATLAS_H
#define KITATLAS_H

#include <stdbool.h>
#include <SDL_rect.h>
#include <SDL_render.h>

#include "kitchensink/kitconfig.h"

typedef struct Kit_TextureAtlasItem {
    int cur_shelf; //< Current shelf number in cache
    int cur_slot; //< Current slot on shelf in cache
    SDL_Rect source; //< Source coordinates on cache surface
    SDL_Rect target; //< Target coordinates on output surface
} Kit_TextureAtlasItem;

typedef struct Kit_Shelf {
    uint16_t width;
    uint16_t height;
    uint16_t count;
} Kit_Shelf;

typedef struct Kit_TextureAtlas {
    int cur_items; //< Current items count
    int max_items; //< Maximum items count
    int max_shelves; //< Maximum shelf count
    int w; //< Current atlas width
    int h; //< Current atlas height
    Kit_TextureAtlasItem *items; //< Cached items
    Kit_Shelf *shelves; //< Atlas shelves
} Kit_TextureAtlas;

KIT_LOCAL Kit_TextureAtlas* Kit_CreateAtlas();
KIT_LOCAL void Kit_FreeAtlas(Kit_TextureAtlas *atlas);
KIT_LOCAL void Kit_ClearAtlasContent(Kit_TextureAtlas *atlas);
KIT_LOCAL void Kit_CheckAtlasTextureSize(Kit_TextureAtlas *atlas, SDL_Texture *texture);
KIT_LOCAL int Kit_GetAtlasItems(const Kit_TextureAtlas *atlas, SDL_Rect *sources, SDL_Rect *targets, int limit);
KIT_LOCAL int Kit_AddAtlasItem(Kit_TextureAtlas *atlas, SDL_Texture *texture, const SDL_Surface *surface, const SDL_Rect *target);

#endif // KITATLAS_H