warchron_app/src/warchron/model/round.py

104 lines
3.1 KiB
Python
Raw Normal View History

2026-01-30 10:52:19 +01:00
from __future__ import annotations
2026-02-02 10:41:16 +01:00
from uuid import uuid4
2026-02-04 16:10:53 +01:00
from typing import Any, Dict
2026-02-02 10:41:16 +01:00
from warchron.model.choice import Choice
from warchron.model.battle import Battle
2026-01-21 07:43:04 +01:00
2026-01-19 18:55:07 +01:00
class Round:
2026-02-04 16:10:53 +01:00
def __init__(self) -> None:
self.id: str = str(uuid4())
2026-02-04 16:10:53 +01:00
self.choices: Dict[str, Choice] = {}
self.battles: Dict[str, Battle] = {}
self.is_over: bool = False
2026-01-19 18:55:07 +01:00
2026-02-04 16:10:53 +01:00
def set_id(self, new_id: str) -> None:
2026-01-21 07:43:04 +01:00
self.id = new_id
2026-01-19 18:55:07 +01:00
2026-02-04 16:10:53 +01:00
def set_state(self, new_state: bool) -> None:
2026-01-19 18:55:07 +01:00
self.is_over = new_state
2026-02-04 16:10:53 +01:00
def toDict(self) -> Dict[str, Any]:
2026-01-19 18:55:07 +01:00
return {
2026-01-21 08:31:48 +01:00
"id": self.id,
# "sectors" : self.sectors,
# "choices" : self.choices,
# "battles" : self.battles,
2026-02-02 10:41:16 +01:00
"is_over": self.is_over,
2026-01-19 18:55:07 +01:00
}
@staticmethod
2026-02-04 16:10:53 +01:00
def fromDict(data: Dict[str, Any]) -> Round:
2026-01-21 08:31:48 +01:00
rnd = Round()
rnd.set_id(data["id"])
# rnd.sectors = data.get("sectors", {})
# rnd.choices = data.get("choices", {})
# rnd.battles = data.get("battles", {})
rnd.set_state(data.get("is_over", False))
2026-01-30 10:52:19 +01:00
return rnd
2026-02-02 10:41:16 +01:00
# Choice methods
2026-01-30 10:52:19 +01:00
2026-01-30 15:32:44 +01:00
def get_choice(self, participant_id: str) -> Choice | None:
2026-01-30 10:52:19 +01:00
return self.choices.get(participant_id)
2026-02-02 10:41:16 +01:00
2026-01-30 15:32:44 +01:00
def create_choice(self, participant_id: str) -> Choice:
if participant_id not in self.choices:
choice = Choice(
2026-02-02 10:41:16 +01:00
participant_id=participant_id,
priority_sector_id=None,
secondary_sector_id=None,
2026-01-30 15:32:44 +01:00
)
self.choices[participant_id] = choice
return self.choices[participant_id]
2026-01-30 10:52:19 +01:00
2026-02-02 10:41:16 +01:00
def update_choice(
self,
participant_id: str,
priority_sector_id: str | None,
secondary_sector_id: str | None,
comment: str | None,
2026-02-04 16:10:53 +01:00
) -> None:
2026-01-30 18:55:39 +01:00
choice = self.get_choice(participant_id)
2026-02-04 16:10:53 +01:00
if choice:
choice.set_priority(priority_sector_id)
choice.set_secondary(secondary_sector_id)
choice.set_comment(comment)
2026-01-30 18:55:39 +01:00
2026-02-04 16:10:53 +01:00
def remove_choice(self, participant_id: str) -> None:
2026-01-30 15:32:44 +01:00
del self.choices[participant_id]
2026-02-02 10:41:16 +01:00
# Battle methods
2026-01-30 18:55:39 +01:00
def get_battle(self, sector_id: str) -> Battle | None:
return self.battles.get(sector_id)
2026-02-02 10:41:16 +01:00
2026-01-30 18:55:39 +01:00
def create_battle(self, sector_id: str) -> Battle:
if sector_id not in self.battles:
2026-02-02 10:41:16 +01:00
battle = Battle(sector_id=sector_id, player_1_id=None, player_2_id=None)
2026-01-30 18:55:39 +01:00
self.battles[sector_id] = battle
return self.battles[sector_id]
2026-02-02 10:41:16 +01:00
def update_battle(
self,
sector_id: str,
player_1_id: str | None,
player_2_id: str | None,
winner_id: str | None,
score: str | None,
victory_condition: str | None,
comment: str | None,
2026-02-04 16:10:53 +01:00
) -> None:
2026-01-30 18:55:39 +01:00
bat = self.get_battle(sector_id)
2026-02-04 16:10:53 +01:00
if bat:
bat.set_player_1(player_1_id)
bat.set_player_2(player_2_id)
bat.set_winner(winner_id)
bat.set_score(score)
bat.set_victory_condition(victory_condition)
bat.set_comment(comment)
def remove_battle(self, sector_id: str) -> None:
2026-01-30 18:55:39 +01:00
del self.battles[sector_id]