-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.c
112 lines (96 loc) · 4.03 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
#include "generacja.h"
#include "read_and_write_png.h"
#include "sasiadstwa.h"
#include "regula_generacji.h"
#include "read_txt.h"
#include "symulator.h"
int main(int argc, char * * argv) {
int i;
if (argc < 2) {
usage();
return -1;
}
if (argc < 6) {
printf(ANSI_COLOR_RED "Nie poprawna ilość argumentów"
ANSI_COLOR_RESET);
printf("\n");
usage();
return -2;
}
if (argc > 6) {
printf(ANSI_COLOR_RED "Za dużo argumentów"
ANSI_COLOR_RESET);
printf("\n");
usage();
return -3;
}
if (atoi(argv[5]) < 0) {
printf(ANSI_COLOR_RED "Nie wolno wprowadzic ujemna liczbe generacji"
ANSI_COLOR_RESET);
printf("\n");
usage();
return -4;
}
if (atoi(argv[1]) == 0) {
if (atoi(argv[2]) == 2) {
read_png_file(argv[3]);
int * * matrix = malloc(sizeof(int * ) * height);
for (i = 0; i < height; i++) {
matrix[i] = malloc(sizeof(int) * width);
}
char * file_o = argv[4];
int num_of_symulations = atoi(argv[5]);
symulator_Moore_a(num_of_symulations, matrix, file_o);
system("convert -delay 15 -loop 0 `ls -v wynik/*.png` wynik/out.gif");
printf("Tworzenie folderu\033[01;37m wynik\x1b[0m...\n");
printf("Plik gif o nazwie\033[01;37m out.gif\x1b[0m zostal stworzony z pomocą metody Moore'a\n");
printf("Zeby popatrzyc wyniki, prosze wejsc w katalog\033[01;37m wynik\x1b[0m\n");
free_matrix(matrix);
} else if (atoi(argv[2]) == 3) {
read_txt(argv[3]);
int * * matrix = malloc(sizeof(int * ) * height);
for (i = 0; i < height; i++) {
matrix[i] = malloc(sizeof(int) * width);
}
char * file_o = argv[4];
int num_of_symulations = atoi(argv[5]);
symulator_Moore_a_txt(num_of_symulations, matrix, file_o);
system("convert -delay 15 -loop 0 `ls -v wynik/*.png` wynik/out.gif");
printf("Tworzenie folderu\033[01;37m wynik\x1b[0m...\n");
printf("Plik gif o nazwie\033[01;37m out.gif\x1b[0m zostal stworzony z pomocą metody Moore'a\n");
printf("Zeby popatrzyc wyniki, prosze wejsc w katalog\033[01;37m wynik\x1b[0m\n");
free_matrix(matrix);
}
} else if (atoi(argv[1]) == 1) {
if (atoi(argv[2]) == 2) {
read_png_file(argv[3]);
int * * matrix = malloc(sizeof(int * ) * height);
for (i = 0; i < height; i++) {
matrix[i] = malloc(sizeof(int) * width);
}
char * file_o = argv[4];
int num_of_symulations = atoi(argv[5]);
symulator_Neumann(num_of_symulations, matrix, file_o);
system("convert -delay 15 -loop 0 `ls -v wynik/*.png` wynik/out.gif");
printf("Tworzenie folderu\033[01;37m wynik\x1b[0m...\n");
printf("Plik gif o nazwie\033[01;37m out.gif\x1b[0m zostal stworzony z pomocą metody Neumann\n");
printf("Zeby popatrzyc wyniki, prosze wejsc w katalog\033[01;37m wynik\x1b[0m\n");
free_matrix(matrix);
} else if (atoi(argv[2]) == 3) {
read_txt(argv[3]);
int * * matrix = malloc(sizeof(int * ) * height);
for (i = 0; i < height; i++) {
matrix[i] = malloc(sizeof(int) * width);
}
char * file_o = argv[4];
int num_of_symulations = atoi(argv[5]);
symulator_Neumann_txt(num_of_symulations, matrix, file_o);
system("convert -delay 15 -loop 0 `ls -v wynik/*.png` wynik/out.gif");
printf("Tworzenie folderu\033[01;37m wynik\x1b[0m...\n");
printf("Plik gif o nazwie\033[01;37m out.gif\x1b[0m zostal stworzony z pomocą metody Neumann\n");
printf("Zeby popatrzyc wyniki, prosze wejsc w katalog\033[01;37m wynik\x1b[0m\n");
free_matrix(matrix);
}
}
return 0;
}