summaryrefslogtreecommitdiff
path: root/level.c
blob: f45f0d40b47af8ee8e6cbc2f9505a9b1d8609ccb (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
#include "level.h"
#include "lzr.h"
#include "cfg.h"
#include <stdlib.h>

static const char level[LEVEL_HEIGHT * LEVEL_WIDTH] = {
	"0....."
	"......"
	"......"
	"......"
	"......"
	".....0"
};

void level_draw()
{
	LZR_DrawSetColor(1, 1, 1, 1);
	for (int y = 0; y < LEVEL_HEIGHT; y++)
	for (int x = 0; x < LEVEL_WIDTH; x++) {
		const int dx = (x + 6) * CFG_TSIZE;
		const int dy = (y + 5) * CFG_TSIZE;
		if (level_get(x, y) == '0' && ((rand() & 3) == 3 ||
		    LZR_GetTick() & 1))
			LZR_DrawRectangle(true, dx, dy, CFG_TSIZE, CFG_TSIZE);
	}
}

int level_get(int x, int y)
{
	return level[x + y * LEVEL_WIDTH];
}