summaryrefslogtreecommitdiffstats
path: root/src/area.h
blob: 84987b7a3abb76e4c2a074f3b22e8433410edddc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#ifndef AREA_H
#define AREA_H

#include <SDL.h>
#include "viewport.h"
#include "resources/map.h"

enum area_layer_id {
	AREA_LAYER_BOT = 0,
	AREA_LAYER_MID,
	AREA_LAYER_TOP,
	AREA_LAYERS_MAX
};
struct area {
	SDL_Surface *map_layers[AREA_LAYERS_MAX];
};

struct area *area_new(struct map *map);
void render_area_to_viewport(struct area *area, struct viewport *vp);
void render_area_to_surface(struct area *area, SDL_Rect *arearect,
		SDL_Surface *surface, SDL_Rect *surfacerect);

#endif