blob: f9b7e39d50384c2a698656a915b5fd42b211b922 (
plain)
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
|
from colorama import Fore
import os
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
class bord:
def __init__(self, w, h):
self.width = w
self.height = h
self.board = [[EMPTY for x in range(self.width)] for u in range(self.height)]
def print(self):
print("\n".join([" ".join(y) for y in self.board]))
def outside_board(self, coords):
return coords[0] < 0 or \
coords[1] < 0 or \
coords[0] > self.width - 1 or \
coords[1] > self.height - 1
def drop_fisje(self, column, disc):
row = -1
for r in range(len(self.board)):
if self.board[r][column] != EMPTY:
row = r - 1
break
self.board[row][column] = disc
def main():
disc_a = True
gert = bord(7, 6)
while True:
gert.print()
column = int(input("column?: ")) - 1
os.system("clear")
gert.drop_fisje(column, DISC_A if disc_a else DISC_B)
disc_a = not disc_a
if __name__ == "__main__":
main()
|