-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.c
67 lines (58 loc) · 1.09 KB
/
main.c
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
#include <unistd.h>
#include <time.h>
#include <string.h>
#include <stdlib.h>
#include <stdio.h>
#include "map.h"
#define MAP_WIDTH 1000
#define MAP_HEIGHT 1000
#define DEFAULT_FILENAME "file"
int main(int argc, char* argv[])
{
time_t seed;
s_map map;
int c, pResult;
char* file;
int width, height, x, y;
width = MAP_WIDTH;
height = MAP_HEIGHT;
x = 0;
y = 0;
seed = time(NULL);
file = DEFAULT_FILENAME;
while ((c = getopt (argc, argv, "w:x:y:s:h:f:")) != -1) {
switch (c) {
case 'w':
width = atoi(optarg);
break;
case 'h':
height = atoi(optarg);
break;
case 'x':
x = atoi(optarg);
break;
case 'y':
y = atol(optarg);
break;
case 's':
seed = atoi(optarg);
break;
case 'f':
file = optarg;
break;
default:
abort();
}
}
printf("Seed: %ld\n", seed);
// set the random seed
srand((unsigned)seed);
map = initMap(width, height, x, y);
fillMap(&map);
pResult = printMap(&map, file, strlen(file));
if (pResult == 0) {
pResult = exportMapToTiled(&map, file, strlen(file), seed);
}
free(map.grid);
return pResult;
}