aboutsummaryrefslogtreecommitdiff
path: root/src/engine/level_const.c
blob: 3847ad87360c5eabec88b767e5a564d1d08893bc (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
44
45
46
#include "engine/level_const.h"

#include <stdio.h>

hh_g_all_levels hh_init_game_levels(){
	hh_g_all_levels levels;
	levels.current_level=0;
	
	levels.level[0].size.x=40;
	levels.level[0].size.y=100;
	levels.level[0].hh_level_completed=false;

	levels.level[1].size.x=100;
	levels.level[1].size.y=28;
	levels.level[1].hh_level_completed=false;

	FILE *fp = fopen("../test/bin/level1_test.bin", "rb");
	if (fp == NULL) {
		printf("level1_test.bin not found!\n");
		return levels;
	} 
	fseek(fp, 0, SEEK_END);
	int size = ftell(fp) / sizeof(int);
	fseek(fp, (0 * sizeof(int)) + sizeof(int), SEEK_SET);
	int* hh_game_level1 = malloc(size * sizeof(int));
	fread(hh_game_level1, sizeof(int), size, fp);
	fclose(fp);

	FILE *lvl2 = fopen("../test/bin/level2_test.bin", "rb");
	if (lvl2 == NULL) {
		printf("level2_test.bin not found!\n");
		return levels;
	}
	fseek(lvl2, 0, SEEK_END);
	size = ftell(lvl2) / sizeof(int);
	fseek(lvl2, (0 * sizeof(int)) + sizeof(int), SEEK_SET);
	int* hh_game_level2 = malloc(size * sizeof(int));
	fread(hh_game_level2, sizeof(int), size, lvl2);
	fclose(lvl2);

	levels.level[0].place = hh_game_level1;
	levels.level[1].place = hh_game_level2;

	return levels;
}