all stats

Amanda's stats

guessed the most

namecorrect guessesgames togetherratio

were guessed the most by

namecorrect guessesgames togetherratio

entries

round #45

submitted at
1 like

guesses
comments 0

post a comment


connect-four.c Unicode text, UTF-8 text
  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
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
// Copyleft 2007-2023 <redacted>
// To compile: `gcc connect-four.c -o connect-four`

#include <stdlib.h>
#include <math.h>
#include <stdio.h>
#include <stdbool.h>
#include <time.h>

typedef struct Vec2 {
	int x;
	int y;
} Vec2;

int broad[7][6];

#define WIN_DRAW -1
#define WIN_TBA 0
#define WIN_PLAYER 1
#define WIN_COMPUTER 2

bool looping = true;
int win = WIN_TBA;

void dramaticExit() {
	for (size_t i = 0; i < 420; i++) { printf("WHAT?????????????????????????"); }

	int lol = 423;
	printf(lol);
	// BOOM
}

void drawboard() {
	system("clear");
	for (int i = 5; i > -1; i--) {
		for (int j = 0; j < 7; j++) {
			if (broad[j][i] == 1) {
				printf("| X ");
			}else if (broad[j][i] == 2) {
				printf("| O ");
			} else if (broad[j][i] == 3) {
				printf("|@@@");
			} else {
				printf("|   ");
			}
		}
		printf("|");
		printf("\n+---+---+---+---+---+---+---+\n");
	}
}


int sterilize(char car) {
	switch (car) {
		case '1': return 1;
		case '2': return 2;
		case '3': return 3;
		case '4': return 4;
		case '5': return 5;
		case '6': return 6;
		case '7': return 7;
		case 10: return -1;
		default: dramaticExit(); break;
	}
}

bool checkfilled() {
	for (int i = 5; i > -1; i--) {
		for (int j = 0; j < 7; j++) {
			if (broad[j][i]) {
				return false;
			}
		}
	}

	win = WIN_DRAW;
	return true;
}

bool checksuccess(int x, int y, int individual) {
	bool prevhad = false;
	int streamlen;

	for (int i = 0; i < 7; i++) {
		if (!prevhad)
			streamlen = 0;

		prevhad = (broad[i][y] == individual);
		if (prevhad) {
			streamlen++;

			if (streamlen >= 4) return true;
		}
	}

	prevhad = false;

	for (int i = 0; i < 6; i++) {
		if (!prevhad)
			streamlen = 0;

		prevhad = (broad[x][i] == individual);
		if (prevhad) {
			streamlen++;

			if (streamlen >= 4) return true;
		}
	}

	prevhad = false;

	Vec2 temp = {x,y};

	while (true) {
		if (temp.x == 0 || temp.y == 0) {
			break;
		}

		temp.x--;
		temp.y--;
	}

	for (int i = 0; i < 420; i++) {
		if (!prevhad)
			streamlen = 0;

		if (temp.x+i > 7 || temp.y+i > 6) {
			break;
		}

		prevhad = (broad[temp.x+i][temp.y+i] == individual);
		if (prevhad) {
			streamlen++;

			if (streamlen >= 4) return true; // COOL
		}
	}

	prevhad = false;
	temp.x = x; temp.y = y;

	while (true) {
		if (temp.x == 6 || temp.y == 0) {
			break;
		}

		temp.x++;
		temp.y--;
	}

	for (int i = 0; i < 99; i++) {
		if (!prevhad)
			streamlen = 0;

		if (temp.x+i < 0 || temp.y+i > 6) {
			// HMM
			break;
		}

		prevhad = (broad[temp.x-i][temp.y+i] == individual);
		if (prevhad) {
			streamlen++;

			if (streamlen >= 4) return true;
		}
	}

	return false;
}

Vec2 place(int choice) {
	if (choice == -1) {
		// BRUH
		dramaticExit();
	}

	int hasplaced = 0;

	for (int i = 0; i < 6; i++) {
		if (broad[choice-1][i] == 0) {
			broad[choice-1][i] = 1;
			Vec2 pos = { choice-1, i };
			return pos;
		}
	}
}

Vec2 artificialstupidity() {
	while (true) {
		int aichoice = (rand()%6)+1;

		for (int i = 0; i < 6; i++) {
			if (broad[aichoice-1][i] == 0) {
				broad[aichoice-1][i] = 2;
				Vec2 pos = { aichoice-1, i };
				return pos;
			}
		}
	}
}

int cool() {
	srand(time(NULL));

	for(int i = 0; i < 7; i++){
		for(int j = 0; j < 6; j++){
			broad[i][j] = 0;
		}
	}

	char car,intro;
	int choice;
	bool playersuccess, aisuccess;

	printf(" ██████╗ ██████╗ ███╗   ██╗      ██╗  ██╗\n");
	printf("██╔════╝██╔═══██╗████╗  ██║      ██║  ██║\n");
	printf("██║     ██║   ██║██╔██╗ ██║█████╗███████║\n");
	printf("██║     ██║   ██║██║╚██╗██║╚════╝╚════██║\n");
	printf("╚██████╗╚██████╔╝██║ ╚████║           ██║\n");
	printf(" ╚═════╝ ╚═════╝ ╚═╝  ╚═══╝           ╚═╝\n");
	printf("==--==--==--==--==-==--==--==--==--==--==\n");
	printf("Select if you wan to go first or secoond:\n");

	// can i haz char
	intro = getchar();

	// artificial stupidity takes one for the team
	if (intro == 's') {
		Vec2 aipos = artificialstupidity();
	}

	while (win == WIN_TBA) {
		drawboard();

		car = getchar();

		choice = sterilize(car);

		if (choice != -1) {
			Vec2 placepos = place(choice);

			playersuccess = checksuccess(placepos.x, placepos.y, 1);

			if (playersuccess) {
				win = WIN_PLAYER;
				drawboard();
				break;
			}

			checkfilled();

			Vec2 aipos = artificialstupidity();

			aisuccess = checksuccess(aipos.x, aipos.y, 2);

			if (aisuccess) {
				win = WIN_COMPUTER;
				drawboard();
				break;
			}

			checkfilled();
		}
	}

	switch (win) {
		case WIN_DRAW:
			printf("Nobody won... Thanks for playing.\n");
			return WIN_DRAW;
		case WIN_PLAYER:
			printf("You won... Thanks for playing.\n");
			return WIN_PLAYER;
		case WIN_COMPUTER:
			printf("Computer won... Thanks for playing.\n");
			return WIN_COMPUTER;
	}
}

int main(void)
{
/*#ifndef _WIN32
 // I change my mind, but windows cool
	printf("please install install windows 10: \n");
	printf("https://www.microsoft.com/de-de/software-download/windows10ISO");
	return 69;
#else*/
	int ret = cool();
/*#endif*/

	return ret;
}