-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplayer.py
45 lines (36 loc) · 1.11 KB
/
player.py
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
import random
from dataclasses import dataclass
from dataclasses import field
from constants import GENES
from constants import KONAMI_CODE
@dataclass(repr=False)
class Player:
id: int
dna: list[str]
score: int = field(init=False)
winner: bool = field(init=False)
mutation_rate: float
def __post_init__(self):
self.mutate()
self.score = self.test_fitness()
self.winner = True if self.dna == KONAMI_CODE else False
def mutate(self) -> None:
for i in range(len(self.dna)):
mutate_chance = random.random()
if mutate_chance < self.mutation_rate:
self.dna[i] = random.choice(GENES)
def test_fitness(self) -> int:
"""Checks how many equal genes in common with konami code"""
score = 0
for idx, gene in enumerate(self.dna):
if gene != KONAMI_CODE[idx]:
break
score += 1
return score
def __repr__(self) -> str:
return f"""
Player_{self.id}:
DNA: {self.dna}
SCORE: {self.score}
WINNER: {self.winner}
"""