summaryrefslogtreecommitdiffstats
path: root/src/area.h
blob: 91b09ef0413c53362e9a8abeb0ccf55a985f7280 (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
/*
 * Copyright (C) 2013  Patrick "P. J." McDermott
 *
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU Lesser General Public License as
 * published by the Free Software Foundation, either version 3 of the
 * License, or (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this program.  If not, see
 * <http://www.gnu.org/licenses/>.
 */

#ifndef AREA_H
#define AREA_H

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

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

struct area *area_new(struct map *map, SDL_Palette *pal);
void set_area_palette(struct area *area, SDL_Palette *pal);
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