aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorlonkaars <l.leblansch@gmail.com>2021-02-16 15:38:08 +0100
committerlonkaars <l.leblansch@gmail.com>2021-02-16 15:38:08 +0100
commit7a2543051af1d30b62bcf78f0e10b46f80b5d10b (patch)
tree460a8672c91ca72a7c2fdea014de20df6c53cf18
parentd2536926285b8cf8f2bcb7dfc300529d1914e4d8 (diff)
board overflow error
-rw-r--r--console/voerbak.c11
-rw-r--r--console/voerbak_connector.py38
2 files changed, 33 insertions, 16 deletions
diff --git a/console/voerbak.c b/console/voerbak.c
index 4ee20e4..86f6076 100644
--- a/console/voerbak.c
+++ b/console/voerbak.c
@@ -79,15 +79,18 @@ bool checkWin(int board[], int width, int height, int pos) {
return won;
}
-void dropFisje(int board[], int width, int height, int column, int disc) {
+bool dropFisje(int board[], int width, int height, int column, int disc) {
for (int row = 0; row < height; row++) {
int pos = column + row * width;
if (board[pos] == 0) {
board[pos] = disc;
bool won = checkWin(board, width, height, pos);
- return;
+ return true; // success
}
}
+ printf("e:full\n");
+ fflush(stdout);
+ return false; // unsuccessful drop on board full
}
int main() {
@@ -102,9 +105,9 @@ int main() {
while (scanf("%d", &move) == 1) {
if (move == 0) break;
if (move < 1 || move > width) continue;
- dropFisje(board, width, height, move - 1, player_1 + 1);
+ bool dropSuccess = dropFisje(board, width, height, move - 1, player_1 + 1);
printBoard(board, width, height);
- player_1 = !player_1;
+ player_1 = player_1 ^ dropSuccess; // only flip turns on successful drop
}
return 0;
diff --git a/console/voerbak_connector.py b/console/voerbak_connector.py
index fb6dbf2..742ddc0 100644
--- a/console/voerbak_connector.py
+++ b/console/voerbak_connector.py
@@ -1,12 +1,19 @@
from colorama import Fore
+import logging as log
import subprocess
import os
+VERBOSE = log.ERROR
+log.basicConfig(format="[ %(levelname)s ]: %(message)s", level=VERBOSE)
+
DISC_SHAPE = "o"
DISC_A = Fore.RED + DISC_SHAPE + Fore.RESET
DISC_B = Fore.BLUE + DISC_SHAPE + Fore.RESET
EMPTY = Fore.LIGHTBLACK_EX + "_" + Fore.RESET
+VOERBAK_LOCATION = "./voerbak"
+if os.name == "nt": VOERBAK_LOCATION += ".exe"
+
class bord:
def __init__(self, w, h):
self.width = w
@@ -16,16 +23,23 @@ class bord:
self.process = subprocess.Popen(["./voerbak"],
stdin=subprocess.PIPE,
stdout=subprocess.PIPE,
- stderr=subprocess.PIPE)
+ stderr=None)
self.process.stdin.write(bytearray(f"{w} {h}\n", "utf-8"))
self.process.stdin.flush()
+ def get_output(self):
+ return self.process.stdout.readline().decode()[:-1]
+
def update_board(self):
- buffer = self.process.stdout.readline()
- while buffer.decode().startswith("w"):
- self.win_positions.append(buffer.decode()[2:-1].split("-"))
- buffer = self.process.stdout.readline()
- self.board = buffer.decode()
+ buffer = self.get_output()
+ while not buffer.isdigit():
+ if buffer.startswith("w:"):
+ self.win_positions.append(buffer[2:].split("-"))
+ log.info(f"won: {buffer[2:].split('-')}")
+ elif buffer.startswith("e:"):
+ log.warning(buffer[2:])
+ buffer = self.get_output()
+ self.board = buffer
def print(self):
for y in range(self.height -1, -1, -1):
@@ -46,14 +60,14 @@ class bord:
def main():
gert = bord(7, 6)
while True:
- # gert.print()
- column = int(input("column?: "))
+ if len(gert.win_positions) > 0:
+ print(f"won: {gert.win_positions}")
+ exit(0)
+ gert.print()
+ column = int(input("column?: ")) - 1
if column not in range(gert.width):
continue
- # os.system("clear")
- gert.drop_fisje(column)
- gert.print()
- print(gert.win_positions)
+ gert.drop_fisje(column + 1)
if __name__ == "__main__":
main()