You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

28 lines
991 B

def reussite(joueur, action):
with open('stats.txt', 'r') as stats:
stats = stats.readlines()
nb_action = 0
nb_reussite_action = 0
for ligne in stats:
ligne = ligne.strip().split(' ')
if ligne[0] == joueur and ligne[1].split('-')[0] == action:
nb_action += 1
if ligne[0] == joueur and ligne[1].split('-')[1] == "reussi":
nb_reussite_action += 1
return nb_action, nb_reussite_action
def points(x, y):
if x**2+(y-300)**2 <= 62500 or (x-1000)**2+(y-300)**2 <= 62500:
return 2
else:
return 3
def totalPoints(joueur):
with open('stats.txt', 'r') as stats:
nb_total_points = 0
for ligne in stats:
ligne = ligne.strip().split(' ')
if ligne[0] == joueur:
coord_x, coord_y = int(ligne[2]), int(ligne[3])
nb_total_points += points(coord_x, coord_y)
return nb_total_points