2023-07-02 07:33:30 +00:00
|
|
|
from dataclasses import dataclass
|
|
|
|
from functools import cached_property
|
|
|
|
from typing import ClassVar
|
|
|
|
|
2023-07-29 18:08:56 +00:00
|
|
|
from module.exception import ScriptError
|
2023-07-02 07:33:30 +00:00
|
|
|
from module.ocr.keyword import Keyword
|
|
|
|
|
|
|
|
|
|
|
|
@dataclass(repr=False)
|
|
|
|
class MapPlane(Keyword):
|
|
|
|
instances: ClassVar = {}
|
|
|
|
|
2023-07-29 18:08:56 +00:00
|
|
|
# Map floors, 'F1' by default
|
|
|
|
# Example: ['B1', 'F1', 'F2']
|
|
|
|
floors = ['F1']
|
|
|
|
|
|
|
|
# Page on bigmap sidebar
|
|
|
|
# 'top' or 'bottom'
|
|
|
|
page = 'top'
|
|
|
|
|
2023-07-02 07:33:30 +00:00
|
|
|
@cached_property
|
|
|
|
def world(self) -> str:
|
|
|
|
"""
|
|
|
|
Returns:
|
|
|
|
str: World name. Note that "Parlor Car" is considered as a plane of Herta.
|
|
|
|
"Herta" for Herta Space Station
|
|
|
|
"Jarilo" for Jarilo-VI
|
|
|
|
"Luofu" for The Xianzhou Luofu
|
|
|
|
"" for unknown
|
|
|
|
"""
|
|
|
|
for world in ['Herta', 'Jarilo', 'Luofu']:
|
|
|
|
if self.name.startswith(world):
|
|
|
|
return world
|
|
|
|
|
|
|
|
return ''
|
|
|
|
|
|
|
|
@cached_property
|
|
|
|
def is_HertaSpaceStation(self):
|
|
|
|
return self.world == 'Herta'
|
|
|
|
|
|
|
|
@cached_property
|
|
|
|
def is_JariloVI(self):
|
|
|
|
return self.world == 'Jarilo'
|
|
|
|
|
|
|
|
@cached_property
|
|
|
|
def is_Luofu(self):
|
|
|
|
return self.world == 'Luofu'
|
2023-07-29 18:08:56 +00:00
|
|
|
|
|
|
|
@cached_property
|
|
|
|
def has_multiple_floors(self):
|
2023-07-30 11:33:54 +00:00
|
|
|
return self.floors and self.floors != ['F1']
|
2023-07-29 18:08:56 +00:00
|
|
|
|
2023-07-30 11:33:54 +00:00
|
|
|
def convert_to_floor_index(self, floor: str | int) -> int:
|
2023-07-29 18:08:56 +00:00
|
|
|
"""
|
|
|
|
Args:
|
2023-07-30 11:33:54 +00:00
|
|
|
floor: int for floor index counted from bottom, such as 1, 2, 3
|
|
|
|
str for floor names in game, such as "B1", "F1", "F2"
|
2023-07-29 18:08:56 +00:00
|
|
|
|
|
|
|
Returns:
|
|
|
|
int: 1 to 3 counted from bottom.
|
|
|
|
|
|
|
|
Raises:
|
|
|
|
ScriptError: If floor doesn't exist
|
|
|
|
"""
|
2023-07-30 11:33:54 +00:00
|
|
|
if isinstance(floor, int):
|
|
|
|
# Check exist
|
|
|
|
try:
|
|
|
|
_ = self.floors[floor - 1]
|
|
|
|
return floor
|
2023-10-02 09:13:01 +00:00
|
|
|
except (IndexError, ValueError):
|
2023-07-30 11:33:54 +00:00
|
|
|
raise ScriptError(f'Plane {self} does not have floor index {floor}')
|
|
|
|
elif isinstance(floor, str):
|
|
|
|
# Convert to floor index
|
|
|
|
floor = floor.upper()
|
|
|
|
try:
|
|
|
|
return self.floors.index(floor) + 1
|
2023-10-02 09:13:01 +00:00
|
|
|
except (IndexError, ValueError):
|
2023-07-30 11:33:54 +00:00
|
|
|
raise ScriptError(f'Plane {self} does not have floor name {floor}')
|
|
|
|
else:
|
|
|
|
raise ScriptError(f'Plane {self} does not have floor {floor}')
|
|
|
|
|
|
|
|
def convert_to_floor_name(self, floor: str | int) -> str:
|
2023-07-29 18:08:56 +00:00
|
|
|
"""
|
|
|
|
Args:
|
2023-07-30 11:33:54 +00:00
|
|
|
floor: int for floor index counted from bottom, such as 1, 2, 3
|
|
|
|
str for floor names in game, such as "B1", "F1", "F2"
|
2023-07-29 18:08:56 +00:00
|
|
|
|
|
|
|
Returns:
|
|
|
|
str: Floor names in game, such as "B1", "F1", "F2"
|
|
|
|
|
|
|
|
Raises:
|
|
|
|
ScriptError: If floor doesn't exist
|
|
|
|
"""
|
2023-07-30 11:33:54 +00:00
|
|
|
if isinstance(floor, int):
|
|
|
|
# Convert to floor index
|
|
|
|
try:
|
|
|
|
return self.floors[floor - 1]
|
2023-10-02 09:13:01 +00:00
|
|
|
except (IndexError, ValueError):
|
2023-07-30 11:33:54 +00:00
|
|
|
raise ScriptError(f'Plane {self} does not have floor index {floor}')
|
|
|
|
elif isinstance(floor, str):
|
|
|
|
# Check exist
|
|
|
|
floor = floor.upper()
|
|
|
|
try:
|
|
|
|
_ = self.floors.index(floor) + 1
|
|
|
|
return floor
|
2023-10-02 09:13:01 +00:00
|
|
|
except (IndexError, ValueError):
|
2023-07-30 11:33:54 +00:00
|
|
|
raise ScriptError(f'Plane {self} does not have floor name {floor}')
|
|
|
|
else:
|
|
|
|
raise ScriptError(f'Plane {self} does not have floor {floor}')
|
2023-09-26 16:28:39 +00:00
|
|
|
|
2023-10-01 15:03:57 +00:00
|
|
|
@cached_property
|
|
|
|
def rogue_domain(self) -> str:
|
|
|
|
if self.name.startswith('Rogue_Domain'):
|
|
|
|
return self.name.removeprefix('Rogue_Domain')
|
|
|
|
else:
|
|
|
|
return ''
|
|
|
|
|
2023-09-26 16:28:39 +00:00
|
|
|
|
|
|
|
@dataclass(repr=False)
|
|
|
|
class MapWorld(Keyword):
|
|
|
|
instances: ClassVar = {}
|