release: v0.2.0 #28

Merged
david-spacil merged 35 commits from version/v0.2.0 into main 2026-06-27 19:42:23 +02:00
Showing only changes of commit 485f152a41 - Show all commits
+53 -55
View File
@@ -5,14 +5,14 @@ import re
import csv import csv
from collections import Counter from collections import Counter
score = 0 score: int = 0
hodnoty = {} hodnoty: dict[str, int] = {}
players = {} players: dict[str, list[int]] = {}
pointer = "" pointer: str = ""
first = "" first: str = ""
h_bool = True h_bool: bool = True
aggr = {} aggr: dict[str, int] = {}
final_score = 10000 final_score: int = 10000
with open("hodnoty.csv", "r") as csv_file: with open("hodnoty.csv", "r") as csv_file:
csv_reader = csv.reader(csv_file) csv_reader = csv.reader(csv_file)
@@ -25,18 +25,18 @@ with open("hodnoty.csv", "r") as csv_file:
def throw(count: int) -> str: def throw(count: int) -> str:
count = int(count) count = int(count)
new_throw = [] new_throw: list[str] = []
for dice in range(count): for dice in range(count):
new_throw.append(str(randint(1, 6))) new_throw.append(str(randint(1, 6)))
new_throw = "".join(new_throw) new_throw_str: str = "".join(new_throw)
return new_throw return new_throw_str
def show_throw(throw: str) -> str: def show_throw(throw: str) -> str:
throw_temp = [] throw_temp: list[str] = []
for x in throw: for x in throw:
throw_temp.append(x) throw_temp.append(x)
pretty_list = ", ".join(throw_temp) pretty_list: str = ", ".join(throw_temp)
pretty_list += "\n" pretty_list += "\n"
for i in range(1, len(throw_temp) + 1): for i in range(1, len(throw_temp) + 1):
pretty_list += "^ " pretty_list += "^ "
@@ -45,13 +45,13 @@ def show_throw(throw: str) -> str:
pretty_list += f"{i} " pretty_list += f"{i} "
return pretty_list return pretty_list
def clear(): def clear() -> None:
if name == 'nt': if name == 'nt':
_ = system('cls') _ = system('cls')
else: else:
_ = system('clear') _ = system('clear')
def evaluate(inp: Any, count: int, throw: str) -> tuple: def evaluate(inp: Any, count: int, throw: str) -> tuple[Any, ...]:
global h_bool global h_bool
@@ -77,8 +77,7 @@ def evaluate(inp: Any, count: int, throw: str) -> tuple:
inp = str(inp) inp = str(inp)
if re.search(r"^\d+$", inp): if re.search(r"^\d+$", inp):
if len(inp) > count: if len(inp) > count:
data = ("msg", "ER01", "Tolika kostkami nemůžete hodit. Zkuste to znovu:", count, throw) data: tuple[Any, ...] = ("msg", "ER01", "Tolika kostkami nemůžete hodit. Zkuste to znovu: ", count, throw)
return data
else: else:
for x in inp: for x in inp:
x = int(x) x = int(x)
@@ -87,30 +86,30 @@ def evaluate(inp: Any, count: int, throw: str) -> tuple:
ran = "1" ran = "1"
else: else:
ran = f"1{count}" ran = f"1{count}"
data = ("msg", "ER02", f"Zvolte prosím kostky v platném rozsahu ({ran}):", count, throw) data = ("msg", "ER02", f"Zvolte prosím kostky v platném rozsahu ({ran}): ", count, throw)
return data return data
old_throw = [] old_throw: list[str] = []
pick = [] pick: list[str] = []
for y in range(count): for y in range(count):
if str(y+1) not in inp: if str(y+1) not in inp:
old_throw.append(throw[y]) old_throw.append(throw[y])
if str(y+1) in inp: if str(y+1) in inp:
pick.append(throw[y]) pick.append(throw[y])
old_throw = "".join(old_throw) old_throw_str: str = "".join(old_throw)
pick.sort() pick.sort()
pick = "".join(pick) pick_str: str = "".join(pick)
new_count = len(old_throw) new_count: int = len(old_throw_str)
if not eval_score(pick): if not eval_score(pick_str):
new_count = count new_count = count
old_throw = throw old_throw_str = throw
else: else:
h_bool = False h_bool = False
data = ("count", new_count, old_throw) data = ("count", new_count, old_throw_str)
return data
elif inp == "h": elif inp == "h":
if h_bool: if h_bool:
clear() clear()
@@ -119,7 +118,7 @@ def evaluate(inp: Any, count: int, throw: str) -> tuple:
else: else:
h_bool = True h_bool = True
data = ("count", count, "") data = ("count", count, "")
return data
elif inp == "k": elif inp == "k":
global score global score
@@ -139,21 +138,22 @@ def evaluate(inp: Any, count: int, throw: str) -> tuple:
next_player() next_player()
data = ("count", 6, "") data = ("count", 6, "")
if pointer == first: if pointer == first:
winner = check_win() winner: str = check_win()
if winner: if winner:
data = ("win", winner, aggr[winner]) data = ("win", winner, aggr[winner])
return data
elif inp == "exit": elif inp == "exit":
data = ("exit",) data = ("exit",)
return data
else: else:
data = ("msg", "ER03", "Zadejte prosím platnou hodnotu:", count, throw) data = ("msg", "ER03", "Zadejte prosím platnou hodnotu:", count, throw)
return data return data
def check_value(throw: str) -> bool: def check_value(throw: str) -> bool:
throw_s = sorted(throw) throw_s: list[str] = sorted(throw)
throw_str = "".join(throw_s) throw_str: str = "".join(throw_s)
hodnota = False hodnota: bool = False
for h in hodnoty: for h in hodnoty:
if h in throw_str: if h in throw_str:
hodnota = True hodnota = True
@@ -161,11 +161,11 @@ def check_value(throw: str) -> bool:
return hodnota return hodnota
def add_players(): def add_players() -> None:
global pointer, first, final_score global pointer, first, final_score
while True: while True:
inp = input("Zadejte jméno prvního hráče: ") inp: str = input("Zadejte jméno prvního hráče: ")
if inp == "": if inp == "":
print("Jméno nemůže být prázdné.") print("Jméno nemůže být prázdné.")
else: else:
@@ -193,8 +193,8 @@ def add_players():
inp = input("Zadejte finální skóre (nechte prázdné pro výchozích 10 000): ") inp = input("Zadejte finální skóre (nechte prázdné pro výchozích 10 000): ")
if inp != "": if inp != "":
try: try:
inp = int(inp) inp_int: int = int(inp)
final_score = inp final_score = inp_int
except ValueError: except ValueError:
print("Zadejte prosím platnou číselnou hodnotu.") print("Zadejte prosím platnou číselnou hodnotu.")
else: else:
@@ -203,21 +203,21 @@ def add_players():
break break
def check_win() -> str: def check_win() -> str:
over_limit = {} over_limit: dict[str, int] = {}
for p in aggr: for p in aggr:
if aggr[p] >= final_score: if aggr[p] >= final_score:
over_limit[p] = aggr[p] over_limit[p] = aggr[p]
winner = "" winner: str = ""
if over_limit: if over_limit:
over_limit_sorted = dict(sorted(over_limit.items(), key=lambda x: x[1], reverse=True)) over_limit_sorted: dict[str, int] = dict(sorted(over_limit.items(), key=lambda x: x[1], reverse=True))
over_limit_sorted_list = [] over_limit_sorted_list: list[tuple[str, int]] = []
for ols in over_limit_sorted: for ols in over_limit_sorted:
over_limit_sorted_list.append((ols, over_limit_sorted[ols])) over_limit_sorted_list.append((ols, over_limit_sorted[ols]))
count = Counter(list(over_limit_sorted.values())) count: Counter = Counter(list(over_limit_sorted.values()))
for c in count: for c in count:
if count[c] == 1: if count[c] == 1:
@@ -226,17 +226,17 @@ def check_win() -> str:
return winner return winner
def game(data: tuple): def game(data: tuple) -> None:
while True: while True:
if data[0] == "count": if data[0] == "count":
count = data[1] count: int = data[1]
th = data[2] th: str = data[2]
if(th == ""): if(th == ""):
th = throw(count) th = throw(count)
clear() clear()
print(f"Vítězné skóre: {final_score}.") # print(f"Vítězné skóre: {final_score}.")
strikes = "" strikes: str = ""
if len(players[pointer]) > 0: if len(players[pointer]) > 0:
if players[pointer][-1:][0] == 0: if players[pointer][-1:][0] == 0:
@@ -246,7 +246,7 @@ def game(data: tuple):
else: else:
strikes = "" strikes = ""
print(f"Na tahu je {pointer} ({aggr[pointer]}{strikes}).") print(f"Na tahu je {pointer} ({aggr[pointer]}{strikes}/{final_score}).")
print(show_throw(th)) print(show_throw(th))
if not check_value(th) and data[2] == "" and count != 0: if not check_value(th) and data[2] == "" and count != 0:
global score global score
@@ -256,13 +256,13 @@ def game(data: tuple):
else: else:
if count == 0: if count == 0:
count = 6 count = 6
msg = ("Jakou akci chcete provést?\n" msg: str = ("Jakou akci chcete provést?\n"
" - Zadejte kombinaci kostek k ponechání (dojde k jejich vyhodnocení): [pozice kostek] (např. 1 nebo 34 nebo 123456).\n" " - Zadejte kombinaci kostek k ponechání (dojde k jejich vyhodnocení): [pozice kostek] (např. 1 nebo 34 nebo 123456).\n"
" - Hodit znovu: [h].\n" " - Hodit znovu: [h].\n"
f" - Ukončit hod a ponechat si skóre z tohoto hodu ({score}): [k].\n" f" - Ukončit hod a ponechat si skóre z tohoto hodu ({score}): [k].\n"
" - Ukončit hru: [exit].\n" " - Ukončit hru: [exit].\n"
) )
inp = input(msg) inp: str = input(msg)
data = evaluate(inp, count, th) data = evaluate(inp, count, th)
elif data[0] == "msg": elif data[0] == "msg":
@@ -270,7 +270,6 @@ def game(data: tuple):
msg = data[2] msg = data[2]
count = data[3] count = data[3]
th = data[4] th = data[4]
# clear()
inp = input(msg) inp = input(msg)
data = evaluate(inp, count, th) data = evaluate(inp, count, th)
else: else:
@@ -279,7 +278,7 @@ def game(data: tuple):
break break
elif data[0] == "win": elif data[0] == "win":
winner = data[1] winner: str = data[1]
score = data[2] score = data[2]
clear() clear()
@@ -292,11 +291,10 @@ def game(data: tuple):
print("Hra byla předčasně ukončena. Snad se zase brzy uvidíme.") print("Hra byla předčasně ukončena. Snad se zase brzy uvidíme.")
break break
def main(): def main() -> None:
clear() clear()
print("Vítejte ve hře v kostky!") print("Vítejte ve hře v kostky!")
add_players() add_players()
input("Prosím, stiskněte enter pro první hod:")
data = ("count", 6, "") data = ("count", 6, "")
game(data) game(data)