2026-01-28 16:25:40 +01:00
|
|
|
from __future__ import annotations
|
2026-02-02 14:33:31 +01:00
|
|
|
from uuid import uuid4
|
2026-01-19 18:55:07 +01:00
|
|
|
|
2026-01-30 15:32:44 +01:00
|
|
|
from warchron.model.round import Round, Choice, Battle
|
2026-01-19 18:55:07 +01:00
|
|
|
|
2026-02-02 14:33:31 +01:00
|
|
|
|
2026-01-19 18:55:07 +01:00
|
|
|
class Campaign:
|
2026-01-28 16:25:40 +01:00
|
|
|
def __init__(self, name: str, month: int):
|
|
|
|
|
self.id: str = str(uuid4())
|
|
|
|
|
self.name: str = name
|
|
|
|
|
self.month: int = month
|
2026-01-30 00:34:22 +01:00
|
|
|
self.participants: dict[str, CampaignParticipant] = {}
|
|
|
|
|
self.sectors: dict[str, Sector] = {}
|
2026-01-30 15:32:44 +01:00
|
|
|
self.rounds: list[Round] = []
|
2026-01-19 18:55:07 +01:00
|
|
|
self.is_over = False
|
|
|
|
|
|
2026-01-28 16:25:40 +01:00
|
|
|
def set_id(self, new_id: str):
|
2026-01-19 18:55:07 +01:00
|
|
|
self.id = new_id
|
|
|
|
|
|
2026-01-28 16:25:40 +01:00
|
|
|
def set_name(self, new_name: str):
|
2026-01-19 18:55:07 +01:00
|
|
|
self.name = new_name
|
|
|
|
|
|
2026-01-28 16:25:40 +01:00
|
|
|
def set_month(self, new_month: int):
|
2026-01-19 18:55:07 +01:00
|
|
|
self.month = new_month
|
2026-02-02 14:33:31 +01:00
|
|
|
|
2026-01-28 16:25:40 +01:00
|
|
|
def set_state(self, new_state: bool):
|
2026-01-19 18:55:07 +01:00
|
|
|
self.is_over = new_state
|
|
|
|
|
|
|
|
|
|
def toDict(self):
|
|
|
|
|
return {
|
2026-02-02 14:33:31 +01:00
|
|
|
"id": self.id,
|
|
|
|
|
"name": self.name,
|
|
|
|
|
"month": self.month,
|
2026-01-28 16:25:40 +01:00
|
|
|
# "participants" : self.participants,
|
2026-01-21 08:31:48 +01:00
|
|
|
"rounds": [rnd.toDict() for rnd in self.rounds],
|
2026-02-02 14:33:31 +01:00
|
|
|
"is_over": self.is_over,
|
2026-01-19 18:55:07 +01:00
|
|
|
}
|
2026-02-02 14:33:31 +01:00
|
|
|
|
2026-01-19 18:55:07 +01:00
|
|
|
@staticmethod
|
2026-01-21 08:31:48 +01:00
|
|
|
def fromDict(data: dict):
|
2026-01-22 23:42:47 +01:00
|
|
|
camp = Campaign(name=data["name"], month=data["month"])
|
2026-01-21 08:31:48 +01:00
|
|
|
camp.set_id(data["id"])
|
2026-01-28 16:25:40 +01:00
|
|
|
# camp.participants = data.get("participants", {})
|
2026-01-21 08:31:48 +01:00
|
|
|
for rnd_data in data.get("rounds", []):
|
|
|
|
|
camp.rounds.append(Round.fromDict(rnd_data))
|
|
|
|
|
camp.set_state(data.get("is_over", False))
|
|
|
|
|
return camp
|
2026-01-28 16:25:40 +01:00
|
|
|
|
2026-02-02 14:33:31 +01:00
|
|
|
# Campaign participant methods
|
2026-01-30 00:34:22 +01:00
|
|
|
|
|
|
|
|
def get_all_campaign_participants_ids(self) -> set[str]:
|
|
|
|
|
return set(self.participants.keys())
|
|
|
|
|
|
2026-02-03 08:25:25 +01:00
|
|
|
def has_participant(self, participant_id: str) -> bool:
|
|
|
|
|
return participant_id in self.participants
|
2026-01-30 00:34:22 +01:00
|
|
|
|
2026-02-03 09:01:17 +01:00
|
|
|
def has_war_participant(self, war_participant_id: str) -> bool:
|
|
|
|
|
return any(
|
|
|
|
|
part.war_participant_id == war_participant_id
|
|
|
|
|
for part in self.participants.values()
|
|
|
|
|
)
|
|
|
|
|
|
2026-02-02 14:33:31 +01:00
|
|
|
def add_campaign_participant(
|
|
|
|
|
self, war_participant_id: str, leader: str, theme: str
|
|
|
|
|
) -> CampaignParticipant:
|
2026-02-03 09:01:17 +01:00
|
|
|
if self.has_war_participant(war_participant_id):
|
2026-01-30 00:34:22 +01:00
|
|
|
raise ValueError("Player already registered in this campaign")
|
2026-02-02 14:33:31 +01:00
|
|
|
participant = CampaignParticipant(
|
|
|
|
|
war_participant_id=war_participant_id, leader=leader, theme=theme
|
|
|
|
|
)
|
2026-01-30 00:34:22 +01:00
|
|
|
self.participants[participant.id] = participant
|
|
|
|
|
return participant
|
|
|
|
|
|
2026-02-02 14:33:31 +01:00
|
|
|
def get_campaign_participant(self, participant_id: str) -> CampaignParticipant:
|
|
|
|
|
try:
|
|
|
|
|
return self.participants[participant_id]
|
|
|
|
|
except KeyError:
|
|
|
|
|
raise KeyError(f"Participant {participant_id} not in campaign {self.id}")
|
2026-01-30 00:34:22 +01:00
|
|
|
|
|
|
|
|
def get_all_campaign_participants(self) -> list[CampaignParticipant]:
|
|
|
|
|
return list(self.participants.values())
|
|
|
|
|
|
2026-02-02 14:33:31 +01:00
|
|
|
def update_campaign_participant(
|
|
|
|
|
self, participant_id: str, *, leader: str, theme: str
|
|
|
|
|
):
|
|
|
|
|
part = self.get_campaign_participant(participant_id)
|
|
|
|
|
# Can't change referred War.participant
|
2026-01-30 00:34:22 +01:00
|
|
|
part.set_leader(leader)
|
|
|
|
|
part.set_theme(theme)
|
|
|
|
|
|
2026-02-02 14:33:31 +01:00
|
|
|
def remove_campaign_participant(self, participant_id: str):
|
2026-01-30 15:32:44 +01:00
|
|
|
# TODO manage choices referring to it
|
|
|
|
|
# TODO manage battles referring to it
|
2026-02-02 14:33:31 +01:00
|
|
|
del self.participants[participant_id]
|
2026-01-30 00:34:22 +01:00
|
|
|
|
2026-02-02 14:33:31 +01:00
|
|
|
# Sector methods
|
2026-01-30 00:34:22 +01:00
|
|
|
|
2026-02-02 14:33:31 +01:00
|
|
|
def add_sector(
|
|
|
|
|
self, name: str, round_id: str, major_id: str, minor_id: str, influence_id: str
|
|
|
|
|
) -> Sector:
|
2026-01-30 00:34:22 +01:00
|
|
|
sect = Sector(name, round_id, major_id, minor_id, influence_id)
|
|
|
|
|
self.sectors[sect.id] = sect
|
|
|
|
|
return sect
|
|
|
|
|
|
2026-01-30 15:32:44 +01:00
|
|
|
def get_sector(self, sector_id: str) -> Sector:
|
|
|
|
|
return self.sectors[sector_id]
|
2026-02-02 14:33:31 +01:00
|
|
|
|
2026-01-30 15:32:44 +01:00
|
|
|
def get_sector_name(self, sector_id: str) -> str:
|
|
|
|
|
if sector_id is None:
|
|
|
|
|
return ""
|
|
|
|
|
return self.sectors[sector_id].name
|
2026-01-30 00:34:22 +01:00
|
|
|
|
|
|
|
|
def get_all_sectors(self) -> list[Sector]:
|
|
|
|
|
return list(self.sectors.values())
|
|
|
|
|
|
2026-01-30 15:32:44 +01:00
|
|
|
# TODO manage choices referring to it (round order!)
|
2026-02-02 14:33:31 +01:00
|
|
|
def update_sector(
|
|
|
|
|
self,
|
|
|
|
|
sector_id: str,
|
|
|
|
|
*,
|
|
|
|
|
name: str,
|
|
|
|
|
round_id: str,
|
|
|
|
|
major_id: str,
|
|
|
|
|
minor_id: str,
|
|
|
|
|
influence_id: str,
|
|
|
|
|
):
|
2026-01-30 00:34:22 +01:00
|
|
|
sect = self.get_sector(sector_id)
|
|
|
|
|
sect.set_name(name)
|
|
|
|
|
sect.set_round(round_id)
|
|
|
|
|
sect.set_major(major_id)
|
|
|
|
|
sect.set_minor(minor_id)
|
|
|
|
|
sect.set_influence(influence_id)
|
2026-02-02 14:33:31 +01:00
|
|
|
|
2026-01-30 00:34:22 +01:00
|
|
|
def remove_sector(self, sector_id: str):
|
2026-01-30 15:32:44 +01:00
|
|
|
# TODO manage choices referring to it
|
|
|
|
|
# TODO manage battles referring to it
|
2026-01-30 00:34:22 +01:00
|
|
|
del self.sectors[sector_id]
|
|
|
|
|
|
2026-01-30 18:55:39 +01:00
|
|
|
def get_sectors_in_round(self, round_id: str) -> list[Sector]:
|
2026-02-02 14:33:31 +01:00
|
|
|
sectors = [s for s in self.sectors.values() if s.round_id == round_id]
|
2026-01-30 18:55:39 +01:00
|
|
|
return sectors
|
|
|
|
|
|
2026-02-02 14:33:31 +01:00
|
|
|
# Round methods
|
2026-01-30 00:34:22 +01:00
|
|
|
|
2026-01-28 16:25:40 +01:00
|
|
|
def has_round(self, round_id: str) -> bool:
|
|
|
|
|
return any(r.id == round_id for r in self.rounds)
|
2026-02-02 14:33:31 +01:00
|
|
|
|
2026-01-28 16:25:40 +01:00
|
|
|
def get_round(self, round_id: str) -> Round:
|
2026-01-30 15:32:44 +01:00
|
|
|
for rnd in self.rounds:
|
|
|
|
|
if rnd.id == round_id:
|
|
|
|
|
return rnd
|
|
|
|
|
raise KeyError(f"Round {round_id} not found")
|
2026-01-21 07:43:04 +01:00
|
|
|
|
|
|
|
|
def get_all_rounds(self) -> list[Round]:
|
|
|
|
|
return list(self.rounds)
|
2026-02-02 14:33:31 +01:00
|
|
|
|
2026-01-21 07:43:04 +01:00
|
|
|
def add_round(self) -> Round:
|
|
|
|
|
round = Round()
|
|
|
|
|
self.rounds.append(round)
|
2026-01-22 23:42:47 +01:00
|
|
|
return round
|
2026-02-02 14:33:31 +01:00
|
|
|
|
2026-01-22 23:42:47 +01:00
|
|
|
def remove_round(self, round_id: str):
|
|
|
|
|
rnd = next((r for r in self.rounds if r.id == round_id), None)
|
|
|
|
|
if rnd:
|
|
|
|
|
self.rounds.remove(rnd)
|
2026-01-27 11:49:37 +01:00
|
|
|
|
|
|
|
|
def get_round_index(self, round_id: str) -> int:
|
2026-01-30 00:34:22 +01:00
|
|
|
if round_id is None:
|
|
|
|
|
return None
|
2026-01-27 11:49:37 +01:00
|
|
|
for index, rnd in enumerate(self.rounds, start=1):
|
|
|
|
|
if rnd.id == round_id:
|
|
|
|
|
return index
|
|
|
|
|
raise KeyError("Round not found in campaign")
|
2026-01-28 16:25:40 +01:00
|
|
|
|
2026-01-30 00:34:22 +01:00
|
|
|
def get_round_name(self, round_id: str | None) -> str:
|
2026-02-02 14:33:31 +01:00
|
|
|
if round_id is None:
|
2026-01-30 00:34:22 +01:00
|
|
|
return ""
|
2026-02-02 14:33:31 +01:00
|
|
|
for rnd in self.rounds:
|
|
|
|
|
if rnd.id == round_id:
|
|
|
|
|
return rnd.name
|
|
|
|
|
return ""
|
2026-01-30 00:34:22 +01:00
|
|
|
|
2026-02-02 14:33:31 +01:00
|
|
|
# Choice methods
|
2026-01-30 15:32:44 +01:00
|
|
|
|
|
|
|
|
def create_choice(self, round_id: str, participant_id: str) -> Choice:
|
|
|
|
|
rnd = self.get_round(round_id)
|
|
|
|
|
return rnd.create_choice(participant_id)
|
|
|
|
|
|
2026-02-02 14:33:31 +01:00
|
|
|
def update_choice(
|
|
|
|
|
self,
|
|
|
|
|
round_id: str,
|
|
|
|
|
participant_id: str,
|
|
|
|
|
priority_sector_id: str | None,
|
|
|
|
|
secondary_sector_id: str | None,
|
|
|
|
|
comment: str | None,
|
|
|
|
|
):
|
2026-02-02 10:41:16 +01:00
|
|
|
rnd = self.get_round(round_id)
|
2026-02-02 14:33:31 +01:00
|
|
|
rnd.update_choice(
|
|
|
|
|
participant_id, priority_sector_id, secondary_sector_id, comment
|
|
|
|
|
)
|
2026-02-02 10:41:16 +01:00
|
|
|
|
2026-01-30 15:32:44 +01:00
|
|
|
def remove_choice(self, round_id: str, participant_id: str) -> Choice:
|
|
|
|
|
rnd = self.get_round(round_id)
|
|
|
|
|
rnd.remove_choice(participant_id)
|
|
|
|
|
|
2026-02-02 14:33:31 +01:00
|
|
|
# Battle methods
|
2026-01-30 18:55:39 +01:00
|
|
|
|
|
|
|
|
def create_battle(self, round_id: str, sector_id: str) -> Battle:
|
|
|
|
|
rnd = self.get_round(round_id)
|
|
|
|
|
return rnd.create_battle(sector_id)
|
2026-02-02 14:33:31 +01:00
|
|
|
|
|
|
|
|
def update_battle(
|
|
|
|
|
self,
|
|
|
|
|
round_id: str,
|
|
|
|
|
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-02 10:41:16 +01:00
|
|
|
rnd = self.get_round(round_id)
|
2026-02-02 14:33:31 +01:00
|
|
|
rnd.update_battle(
|
|
|
|
|
sector_id,
|
|
|
|
|
player_1_id,
|
|
|
|
|
player_2_id,
|
|
|
|
|
winner_id,
|
|
|
|
|
score,
|
|
|
|
|
victory_condition,
|
|
|
|
|
comment,
|
|
|
|
|
)
|
2026-01-30 18:55:39 +01:00
|
|
|
|
|
|
|
|
def remove_battle(self, round_id: str, sector_id: str) -> Battle:
|
|
|
|
|
rnd = self.get_round(round_id)
|
|
|
|
|
rnd.remove_battle(sector_id)
|
|
|
|
|
|
2026-02-02 14:33:31 +01:00
|
|
|
|
2026-01-28 16:25:40 +01:00
|
|
|
class CampaignParticipant:
|
2026-02-03 08:25:25 +01:00
|
|
|
def __init__(
|
|
|
|
|
self, *, war_participant_id: str, leader: str | None, theme: str | None
|
|
|
|
|
):
|
2026-02-02 14:33:31 +01:00
|
|
|
self.id: str = str(uuid4())
|
|
|
|
|
self.war_participant_id: str = war_participant_id # ref to War.participants
|
2026-02-03 08:25:25 +01:00
|
|
|
self.leader: str | None = leader
|
|
|
|
|
self.theme: str | None = theme
|
2026-01-30 00:34:22 +01:00
|
|
|
|
|
|
|
|
def set_id(self, new_id: str):
|
|
|
|
|
self.id = new_id
|
|
|
|
|
|
2026-02-02 14:33:31 +01:00
|
|
|
def set_war_participant(self, new_participant: str):
|
|
|
|
|
self.war_participant_id = new_participant
|
|
|
|
|
|
2026-01-30 00:34:22 +01:00
|
|
|
def set_leader(self, new_faction: str):
|
|
|
|
|
self.leader = new_faction
|
|
|
|
|
|
|
|
|
|
def set_theme(self, new_theme: str):
|
|
|
|
|
self.theme = new_theme
|
2026-01-28 16:25:40 +01:00
|
|
|
|
2026-02-02 14:33:31 +01:00
|
|
|
|
2026-01-28 16:25:40 +01:00
|
|
|
class Sector:
|
2026-02-02 14:33:31 +01:00
|
|
|
def __init__(
|
2026-02-03 08:25:25 +01:00
|
|
|
self,
|
|
|
|
|
name: str,
|
|
|
|
|
round_id: str,
|
|
|
|
|
major_id: str | None,
|
|
|
|
|
minor_id: str | None,
|
|
|
|
|
influence_id: str | None,
|
2026-02-02 14:33:31 +01:00
|
|
|
):
|
2026-01-28 16:25:40 +01:00
|
|
|
self.id: str = str(uuid4())
|
|
|
|
|
self.name: str = name
|
2026-01-30 00:34:22 +01:00
|
|
|
self.round_id: str = round_id
|
2026-02-02 14:33:31 +01:00
|
|
|
self.major_objective_id: str | None = major_id # ref to War.objectives
|
|
|
|
|
self.minor_objective_id: str | None = minor_id # ref to War.objectives
|
|
|
|
|
self.influence_objective_id: str | None = influence_id # ref to War.objectives
|
2026-01-30 18:55:39 +01:00
|
|
|
self.mission: str | None = None
|
|
|
|
|
self.description: str | None = None
|
2026-01-30 00:34:22 +01:00
|
|
|
|
|
|
|
|
def set_id(self, new_id: str):
|
|
|
|
|
self.id = new_id
|
|
|
|
|
|
|
|
|
|
def set_name(self, new_name: str):
|
|
|
|
|
self.name = new_name
|
|
|
|
|
|
|
|
|
|
def set_round(self, new_round_id: str):
|
|
|
|
|
self.round_id = new_round_id
|
|
|
|
|
|
|
|
|
|
def set_major(self, new_major_id: str):
|
|
|
|
|
self.major_objective_id = new_major_id
|
|
|
|
|
|
|
|
|
|
def set_minor(self, new_minor_id: str):
|
|
|
|
|
self.minor_objective_id = new_minor_id
|
|
|
|
|
|
|
|
|
|
def set_influence(self, new_influence_id: str):
|
|
|
|
|
self.influence_objective_id = new_influence_id
|