summaryrefslogtreecommitdiffstats
path: root/src/resources/map.h
blob: 04fcf27a3094d6f03200f3cb68181290ce5a1049 (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
#ifndef RESOURCE_MAP_H
#define RESOURCE_MAP_H

#include <SDL_stdinc.h>
#include "resource.h"
#include "tileset.h"
#include "layer.h"

struct map {
	struct resource res;
	int width;
	int height;
	int tilewidth;
	int tileheight;
	struct tileset *tilesets_head;
	struct tileset *tilesets_tail;
	struct layer *layers_head;
	struct layer *layers_tail;
	Uint8 *collision;
};

struct map *map_get(const char *path);
void map_free(struct map *map);
void map_add_layer(struct map *m, struct layer *l);
void map_add_tileset(struct map *m, struct tileset *t);

#endif