-
Notifications
You must be signed in to change notification settings - Fork 0
/
mylife1.c
executable file
·169 lines (155 loc) · 4.72 KB
/
mylife1.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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h> // sleep()関数を使う
//#include "gol.h"
#define height 40
#define width 70
#define cell_number height * width
void my_init_cells(int cell[height][width], FILE* fp) {
//ファイルがない場合の初期配置
if (fp == NULL){
for (int i = 0; i < cell_number / 10; ++i) {
int height_point = rand() % height;
int width_point = rand() % width;
cell[height_point][width_point] = 1;
}
}//ファイルがある場合の初期配置
else {
char s[11];
int height_point, width_point;
fgets(s, 10, fp);
while (fscanf(fp, "%d %d", &width_point, &height_point) != EOF) {
cell[height_point][width_point] = 1;
}
}
}
double cell_ratio(int cell[height][width]) {
int num = 0;
double ratio;
for (int i = 0; i < height; ++i) {
for (int j = 0; j < width; ++j) {
if (cell[i][j] == 1) {
num++;
}
}
}
ratio = (double)num / (height * width);
return ratio;
}
void my_print_cells(FILE* fp, int gen, int cell[height][width]) {
printf("generation = %d\n", gen);
printf("living cell ratio = %f\n", cell_ratio(cell));
//上の壁
printf("+");
for (int i = 0; i < width; ++i) {
printf("-");
}
printf("+\n");
//中身
for (int i = 0; i < height; ++i) {
printf("|");
for (int j = 0; j < width; ++j) {
if (cell[i][j]) {
printf("\e[31m#\e[0m");
}else {
printf(" ");
}
}
printf("|\n");
}
//下の壁
printf("+");
for (int i = 0; i < width; ++i) {
printf("-");
}
printf("+\n");
}
//個別のセルの次状態を別の配列に書いておく
void my_update_individual(int k, int l, int cell[height][width], int copy_cell[height][width]) {
if (cell[k][l] == 1) {
int count = 0;
for (int m = k - 1; m <= k + 1; ++m) {
for (int n = l - 1; n <= l + 1; ++n) {
if (m >= 0 && m < height && n >= 0 && n < width) {
if (cell[m][n] == 1) {
count++;
}
}
}
}
if (count != 3 && count != 4) {
copy_cell[k][l] = 0;
}else {
copy_cell[k][l] = 1;
}
}else if (cell[k][l] == 0) {
int count = 0;
for (int m = k - 1; m <= k + 1; ++m) {
for (int n = l - 1; n <= l + 1; ++n) {
if (m >= 0 && m < height && n >= 0 && n < width) {
if (cell[m][n] == 1) {
count++;
}
}
}
}
if (count == 3) {
copy_cell[k][l] = 1;
}else {
copy_cell[k][l] = 0;
}
}
}
//すべてのセルの次状態がそろった時点で、もとのセルに次状態を書き込む
void my_update_cells(int cell[height][width]) {
int copy_cell[height][width] = {0};
for (int k = 0; k < height; ++k) {
for (int l = 0; l < width; ++l) {
my_update_individual(k, l, cell, copy_cell);
}
}
for (int k = 0; k < height; ++k) {
for (int l = 0; l < width; ++l) {
cell[k][l] = copy_cell[k][l];
}
}
}
int main(int argc, char **argv) {
FILE *fp = stdout;
int cell[height][width];
for(int y = 0 ; y < height ; y++){
for(int x = 0 ; x < width ; x++){
cell[y][x] = 0;
}
}
/* ファイルを引数にとるか、ない場合はデフォルトの初期値を使う */
if ( argc > 2 ) {
fprintf(stderr, "usage: %s [filename for init]\n", argv[0]);
return EXIT_FAILURE;
}
else if (argc == 2) {
FILE *lgfile;
if ( (lgfile = fopen(argv[1],"r")) != NULL ) {
my_init_cells(cell,lgfile); // ファイルによる初期化
}
else{
fprintf(stderr,"cannot open file %s\n",argv[1]);
return EXIT_FAILURE;
}
fclose(lgfile);
}
else{
my_init_cells(cell, NULL); // デフォルトの初期値を使う
}
my_print_cells(fp, 0, cell); // 表示する
sleep(1); // 1秒休止
fprintf(fp,"\e[%dA",height+4);//height+3 の分、カーソルを上に戻す(壁2、表示部1)
/* 世代を進める*/
for (int gen = 1 ;; gen++) {
my_update_cells(cell); // セルを更新
my_print_cells(fp, gen, cell); // 表示する
sleep(1); //1秒休止する
fprintf(fp,"\e[%dA",height+4);//height+3 の分、カーソルを上に戻す(壁2、表示部1)
}
return EXIT_SUCCESS;
}