Compare commits

..

No commits in common. "879d2863af1e5345ef6eb336c65a3a0f94227919" and "d2aae461a0c263b05045c090ea4423efdbcf28cc" have entirely different histories.

1 changed files with 67 additions and 141 deletions

View File

@ -6,9 +6,6 @@
#include <sys/ioctl.h> #include <sys/ioctl.h>
#include <unistd.h> #include <unistd.h>
#include <termio.h> #include <termio.h>
#elif _WIN32
#include <windows.h>
#include <conio.h>
#endif #endif
#define DEBUGGER_PIPES_TO_NUMBERS 0 #define DEBUGGER_PIPES_TO_NUMBERS 0
@ -44,7 +41,6 @@ void random_color() {
color = colors[rand() % (sizeof(colors) / sizeof(colors[0]))]; color = colors[rand() % (sizeof(colors) / sizeof(colors[0]))];
} }
#ifdef __linux__
int getch_pipes(){ int getch_pipes(){
int ch; int ch;
struct termios oldattr, newattr; struct termios oldattr, newattr;
@ -61,22 +57,16 @@ int getch_pipes(){
return ch; return ch;
} }
#endif
int print_grid(int x, int y, char **grid, int how_many_targets, int *lul) { void print_grid(int x, int y, char **grid) {
int target_count = 0;
for (int i = 0; i < y; i++) { for (int i = 0; i < y; i++) {
printf("\n"); printf("\n");
for (int j = 0; j < x; j++) { for (int j = 0; j < x; j++) {
if(grid[i][j] == 3){ if (!DEBUGGER_PIPES_TO_NUMBERS){
target_count += 1;
}if (!DEBUGGER_PIPES_TO_NUMBERS){
if(grid[i][j] == 0){ if(grid[i][j] == 0){
printf(FILLER); printf(FILLER);
} else if(grid[i][j] == 3){ } else if(grid[i][j] != 0 && grid[i][j] != 1 && grid[i][j] != 2){
printf("%s█","\033[31m" ); return;
} else if(grid[i][j] != 0 && grid[i][j] != 1 && grid[i][j] != 2 && grid[i][j] != 3){
return 1;
} else if(grid[i - 1][j] == 0 && grid[i + 1][j] == 0 && grid[i][j - 1] != 0 && grid[i][j + 1] != 0 && grid[i][j] == 1 ){ } else if(grid[i - 1][j] == 0 && grid[i + 1][j] == 0 && grid[i][j - 1] != 0 && grid[i][j + 1] != 0 && grid[i][j] == 1 ){
printf("%s━", color); printf("%s━", color);
@ -141,10 +131,6 @@ int print_grid(int x, int y, char **grid, int how_many_targets, int *lul) {
} else if(grid[i - 1][j] == 2 && grid[i + 1][j] == 2 && grid[i][j - 1] == 2 && grid[i][j + 1] == 2 && grid[i][j] == 2 ){ } else if(grid[i - 1][j] == 2 && grid[i + 1][j] == 2 && grid[i][j - 1] == 2 && grid[i][j + 1] == 2 && grid[i][j] == 2 ){
printf("%s┃", color); printf("%s┃", color);
} else if(grid[i][j] == 3){
printf("");
} else if(grid[i - 1][j] != 0 && grid[i + 1][j] != 0 && grid[i][j - 1] != 0 && grid[i][j + 1] != 0 && grid[i][j] == 0 ){ } else if(grid[i - 1][j] != 0 && grid[i + 1][j] != 0 && grid[i][j - 1] != 0 && grid[i][j + 1] != 0 && grid[i][j] == 0 ){
@ -174,118 +160,68 @@ int print_grid(int x, int y, char **grid, int how_many_targets, int *lul) {
} }
} }
} }
if (target_count <= 2*how_many_targets - 1*how_many_targets) {
printf("\e[1;1H\e[2J");
printf("\n");
printf(" █ █ █████ █ █ █ █ █████ ██ █\n");
printf(" ██ ██ █ █ █ █ █ █ █ █ ███ █\n");
printf(" █████ █ █ █ █ █ █ █ █ █ ██ █\n");
printf(" █ █ █ █ █ █ ██ █ █ █ █ ███\n");
printf(" █ █████ █████ █ █ █████ █ ██\n");
printf("\n");
printf("Targets overritten: %i\n", 2*how_many_targets-target_count);
if (target_count > 3) {
printf("\nspecial achivement!!!!!!\n");
printf("'q' for start menue");
return 1;
} else {
*lul += 1;
printf("lul = %i\n", *lul);
system("xdg-open https://bit.ly/3BlS71b");
printf("'q' for start menue");
return 1;
}
}
return 0;
} }
int generate_pipe_x(int GRID_GROESSE_X, int GRID_GROESSE_Y, char **grid, int *x_start, int *y_start, int laenge, int how_many_targets, int *return_code, int *lul) { void generate_pipe_x(int GRID_GROESSE_X, int GRID_GROESSE_Y, char **grid, int *x_start, int *y_start, int laenge) {
if (laenge < 0){ if(laenge < 0){
for (int i = *x_start; i > *x_start + laenge; i--) { for (int i = *x_start; i > *x_start + laenge; i--) {
if (*return_code == 1) {
return 0;
}
if (i <= -laenge/2 -1) { if (i <= -laenge/2 -1) {
*x_start = GRID_GROESSE_X + laenge/2; *x_start = GRID_GROESSE_X + laenge/2;
return 0; return;
} }
grid[*y_start][i] = INFILL_X_PIPE; grid[*y_start][i] = INFILL_X_PIPE;
printf("\33[H\033[J"); printf("\33[H\033[J");
*return_code = print_grid(GRID_GROESSE_X, GRID_GROESSE_Y, grid, how_many_targets, lul); print_grid(GRID_GROESSE_X, GRID_GROESSE_Y, grid);
usleep(SLEEP_TIMER);
} }
} else { } else{
for (int i = *x_start; i < *x_start + laenge; i++) { for (int i = *x_start; i < *x_start + laenge; i++) {
if (*return_code == 1) {
return 0;
}
if (i >= GRID_GROESSE_X - laenge/2+1) { if (i >= GRID_GROESSE_X - laenge/2+1) {
*x_start = laenge/2; *x_start = laenge/2;
return 0; return;
} }
grid[*y_start][i] = INFILL_X_PIPE; grid[*y_start][i] = INFILL_X_PIPE;
printf("\33[H\033[J"); printf("\33[H\033[J");
*return_code = print_grid(GRID_GROESSE_X, GRID_GROESSE_Y, grid, how_many_targets, lul); print_grid(GRID_GROESSE_X, GRID_GROESSE_Y, grid);
usleep(SLEEP_TIMER);
} }
} }
*x_start += laenge; *x_start += laenge;
return 0;
} }
int generate_pipe_y(int GRID_GROESSE_X, int GRID_GROESSE_Y, char **grid, int *x_start, int *y_start, int laenge, int how_many_targets, int *return_code, int *lul) { void generate_pipe_y(int GRID_GROESSE_X, int GRID_GROESSE_Y, char **grid, int *x_start, int *y_start, int laenge) {
if (laenge < 0){ if(laenge < 0){
for (int i = *y_start; i > *y_start + laenge/2; i--) { for (int i = *y_start; i > *y_start + laenge/2; i--) {
if (*return_code == 1) {
return 0;
}
if (i <= -laenge/2) { if (i <= -laenge/2) {
*y_start = GRID_GROESSE_Y + laenge/2; *y_start = GRID_GROESSE_Y + laenge/2;
return 0; return;
} }
grid[i][*x_start] = INFILL_Y_PIPE; grid[i][*x_start] = INFILL_Y_PIPE;
printf("\33[H\033[J"); printf("\33[H\033[J");
*return_code = print_grid(GRID_GROESSE_X, GRID_GROESSE_Y, grid, how_many_targets, lul); print_grid(GRID_GROESSE_X, GRID_GROESSE_Y, grid);
usleep(SLEEP_TIMER);
} }
} else{ } else{
for (int i = *y_start; i < *y_start + laenge/2; i++) { for (int i = *y_start; i < *y_start + laenge/2; i++) {
if (*return_code == 1) {
return 0;
}
if (i >= (GRID_GROESSE_Y / 2)*2 - 1) { if (i >= (GRID_GROESSE_Y / 2)*2 - 1) {
*y_start = laenge/2; *y_start = laenge/2;
return 0; return;
} }
grid[i][*x_start] = INFILL_Y_PIPE; grid[i][*x_start] = INFILL_Y_PIPE;
printf("\33[H\033[J"); printf("\33[H\033[J");
*return_code = print_grid(GRID_GROESSE_X, GRID_GROESSE_Y, grid, how_many_targets, lul); print_grid(GRID_GROESSE_X, GRID_GROESSE_Y, grid);
usleep(SLEEP_TIMER);
} }
} }
*y_start += laenge/2;
return 0;
}
void generate_target(int GRID_GROESSE_X, int GRID_GROESSE_Y, char **grid, int *x_start, int *y_start, int laenge) {
int abstand_vom_rand_x = 6;
int abstand_vom_rand_y = 3;
int target_x = 0;
int target_y = 0;
while (target_x <= abstand_vom_rand_x || target_x >= GRID_GROESSE_X - abstand_vom_rand_x || target_y <= abstand_vom_rand_y || target_y >= GRID_GROESSE_Y - abstand_vom_rand_y) {
target_x = ((rand() % GRID_GROESSE_X));
target_y = ((rand() % GRID_GROESSE_Y));
}
for (int j = target_y; j < target_y + 2; j++) {
for (int i = target_x; i < target_x + 1; i++) {
grid[j][i] = 3;
}
}
}
*y_start += laenge/2;
}
int pipes(int GRID_GROESSE_X, int GRID_GROESSE_Y) { int pipes(int GRID_GROESSE_X, int GRID_GROESSE_Y) {
//int main() { //int main() {
// system("chcp 65001 >null"); // system("chcp 65001 >null");
// int GRID_GROESSE_X = 100; // x:y -> 2:1 for a square looking grid // int GRID_GROESSE_X = 120; // x:y -> 2:1 for a square looking grid
// int GRID_GROESSE_Y = 60; // int GRID_GROESSE_Y = 60;
int x_start = GRID_GROESSE_X / 2; int x_start = GRID_GROESSE_X / 2;
@ -294,8 +230,6 @@ int pipes(int GRID_GROESSE_X, int GRID_GROESSE_Y) {
int max_l = MAX_LAENGE_PIPE + 1 - MIN_LAENGE_PIPE; int max_l = MAX_LAENGE_PIPE + 1 - MIN_LAENGE_PIPE;
int min_l = MIN_LAENGE_PIPE - 1; int min_l = MIN_LAENGE_PIPE - 1;
int color_c_p = COLOR_CHANGING_PROBABILITY + 1; int color_c_p = COLOR_CHANGING_PROBABILITY + 1;
int return_code = 0;
int lul = 0;
srand(time(NULL)); srand(time(NULL));
random_color(); random_color();
@ -311,14 +245,9 @@ int pipes(int GRID_GROESSE_X, int GRID_GROESSE_Y) {
} }
} }
// int richtungswechsler = 1; int richtungswechsler = 1;
int how_many_targets = 3;
for (int i = 1; i <= how_many_targets; i++) {
generate_target(GRID_GROESSE_X, GRID_GROESSE_Y, grid, &x_start, &y_start, laenge);
}
return_code = generate_pipe_x(GRID_GROESSE_X, GRID_GROESSE_Y, grid, &x_start, &y_start, 1, how_many_targets, &return_code, &lul);
if (!DEBUGGER_RANDOM) { while (!DEBUGGER_RANDOM) {
while (!AUTOMATISCH) { while (!AUTOMATISCH) {
if ((rand() %color_c_p) <= 1) { if ((rand() %color_c_p) <= 1) {
@ -326,57 +255,54 @@ int pipes(int GRID_GROESSE_X, int GRID_GROESSE_Y) {
} }
laenge = ((rand() %max_l)+min_l); laenge = ((rand() %max_l)+min_l);
#ifdef __linux__ char key_input = (char)getch_pipes();
char key_input = (char)getch_pipes();
#elif _WIN32
char key_input = (char)getch();
#endif
switch (key_input) { switch (key_input) {
case 'h': generate_pipe_x(GRID_GROESSE_X, GRID_GROESSE_Y, grid, &x_start, &y_start, laenge * -1, how_many_targets, &return_code, &lul); break; case 'h': generate_pipe_x(GRID_GROESSE_X, GRID_GROESSE_Y, grid, &x_start, &y_start, laenge * -1); break;
case 'a': generate_pipe_x(GRID_GROESSE_X, GRID_GROESSE_Y, grid, &x_start, &y_start, laenge * -1, how_many_targets, &return_code, &lul); break; case 'a': generate_pipe_x(GRID_GROESSE_X, GRID_GROESSE_Y, grid, &x_start, &y_start, laenge * -1); break;
case 'l': generate_pipe_x(GRID_GROESSE_X, GRID_GROESSE_Y, grid, &x_start, &y_start, laenge, how_many_targets, &return_code, &lul); break; case 'l': generate_pipe_x(GRID_GROESSE_X, GRID_GROESSE_Y, grid, &x_start, &y_start, laenge); break;
case 'd': generate_pipe_x(GRID_GROESSE_X, GRID_GROESSE_Y, grid, &x_start, &y_start, laenge, how_many_targets, &return_code, &lul); break; case 'd': generate_pipe_x(GRID_GROESSE_X, GRID_GROESSE_Y, grid, &x_start, &y_start, laenge); break;
case 'j': generate_pipe_y(GRID_GROESSE_X, GRID_GROESSE_Y, grid, &x_start, &y_start, laenge, how_many_targets, &return_code, &lul); break; case 'j': generate_pipe_y(GRID_GROESSE_X, GRID_GROESSE_Y, grid, &x_start, &y_start, laenge); break;
case 's': generate_pipe_y(GRID_GROESSE_X, GRID_GROESSE_Y, grid, &x_start, &y_start, laenge, how_many_targets, &return_code, &lul); break; case 's': generate_pipe_y(GRID_GROESSE_X, GRID_GROESSE_Y, grid, &x_start, &y_start, laenge); break;
case 'k': generate_pipe_y(GRID_GROESSE_X, GRID_GROESSE_Y, grid, &x_start, &y_start, laenge * -1, how_many_targets, &return_code, &lul); break; case 'k': generate_pipe_y(GRID_GROESSE_X, GRID_GROESSE_Y, grid, &x_start, &y_start, laenge * -1); break;
case 'w': generate_pipe_y(GRID_GROESSE_X, GRID_GROESSE_Y, grid, &x_start, &y_start, laenge * -1, how_many_targets, &return_code, &lul); break; case 'w': generate_pipe_y(GRID_GROESSE_X, GRID_GROESSE_Y, grid, &x_start, &y_start, laenge * -1); break;
case 'q': return 0; case 'q': return 0;
default: continue; default: continue;
} }
} }
// while (AUTOMATISCH) { while (AUTOMATISCH) {
// if ((rand() %color_c_p) <= 1) { if ((rand() %color_c_p) <= 1) {
// random_color(); random_color();
// } }
// if ((rand() %2)-1) { if ((rand() %2)-1) {
// laenge = ((rand() %max_l)+min_l); laenge = ((rand() %max_l)+min_l);
// } else { } else {
// laenge = ((rand() %max_l)+min_l)*-1; laenge = ((rand() %max_l)+min_l)*-1;
// } }
//
// if (richtungswechsler == 1) { if (richtungswechsler == 1) {
// generate_pipe_x(GRID_GROESSE_X, GRID_GROESSE_Y, grid, &x_start, &y_start, laenge, how_many_targets); generate_pipe_x(GRID_GROESSE_X, GRID_GROESSE_Y, grid, &x_start, &y_start, laenge);
// richtungswechsler *= -1; richtungswechsler *= -1;
// } else { } else {
// generate_pipe_y(GRID_GROESSE_X, GRID_GROESSE_Y, grid, &x_start, &y_start, laenge, how_many_targets); generate_pipe_y(GRID_GROESSE_X, GRID_GROESSE_Y, grid, &x_start, &y_start, laenge);
// richtungswechsler *= -1; richtungswechsler *= -1;
// } }
// } }
// } }
//
// if (DEBUGGER_RANDOM) { if (DEBUGGER_RANDOM) {
// generate_pipe_x(GRID_GROESSE_X, GRID_GROESSE_Y, grid, &x_start, &y_start, laenge, how_many_targets); generate_pipe_x(GRID_GROESSE_X, GRID_GROESSE_Y, grid, &x_start, &y_start, laenge);
// generate_pipe_y(GRID_GROESSE_X, GRID_GROESSE_Y, grid, &x_start, &y_start, laenge, how_many_targets); generate_pipe_y(GRID_GROESSE_X, GRID_GROESSE_Y, grid, &x_start, &y_start, laenge);
// generate_pipe_x(GRID_GROESSE_X, GRID_GROESSE_Y, grid, &x_start, &y_start, laenge, how_many_targets); generate_pipe_x(GRID_GROESSE_X, GRID_GROESSE_Y, grid, &x_start, &y_start, laenge);
// generate_pipe_y(GRID_GROESSE_X, GRID_GROESSE_Y, grid, &x_start, &y_start, laenge * -0.1, how_many_targets); generate_pipe_y(GRID_GROESSE_X, GRID_GROESSE_Y, grid, &x_start, &y_start, laenge * -0.1);
// generate_pipe_x(GRID_GROESSE_X, GRID_GROESSE_Y, grid, &x_start, &y_start, laenge * -1.05, how_many_targets); generate_pipe_x(GRID_GROESSE_X, GRID_GROESSE_Y, grid, &x_start, &y_start, laenge * -1.05);
// generate_pipe_y(GRID_GROESSE_X, GRID_GROESSE_Y, grid, &x_start, &y_start, laenge * -1, how_many_targets); generate_pipe_y(GRID_GROESSE_X, GRID_GROESSE_Y, grid, &x_start, &y_start, laenge * -1);
// generate_pipe_x(GRID_GROESSE_X, GRID_GROESSE_Y, grid, &x_start, &y_start, laenge * 0.1, how_many_targets); generate_pipe_x(GRID_GROESSE_X, GRID_GROESSE_Y, grid, &x_start, &y_start, laenge * 0.1);
// generate_pipe_y(GRID_GROESSE_X, GRID_GROESSE_Y, grid, &x_start, &y_start, laenge * 0.9, how_many_targets); generate_pipe_y(GRID_GROESSE_X, GRID_GROESSE_Y, grid, &x_start, &y_start, laenge * 0.9);
// generate_pipe_x(GRID_GROESSE_X, GRID_GROESSE_Y, grid, &x_start, &y_start, laenge, how_many_targets); generate_pipe_x(GRID_GROESSE_X, GRID_GROESSE_Y, grid, &x_start, &y_start, laenge);
} }