mirror of
https://github.com/Faraphel/Atlas-Install.git
synced 2025-07-04 03:38:26 +02:00
46 lines
1.6 KiB
Python
46 lines
1.6 KiB
Python
from typing import TYPE_CHECKING
|
|
|
|
if TYPE_CHECKING:
|
|
from source import TemplateMultipleSafeEval
|
|
from source.mkw import Tag
|
|
from source.mkw.ModConfig import ModConfig
|
|
|
|
|
|
class RealArenaTrack:
|
|
"""
|
|
class shared between all arena and track class that represent a "real" track or arena
|
|
(For example, DefaultTrack is not considered a real track class)
|
|
"""
|
|
|
|
mod_config: "ModConfig"
|
|
tags: list["Tag"]
|
|
|
|
def get_tag_template(self, template_name: str, default: any = None) -> any:
|
|
"""
|
|
Return the tag template found in templates. If not found, return default
|
|
:param template_name: name of the template of the tags
|
|
:param default: default value if no tag template is found
|
|
:return: formatted representation of the tag
|
|
"""
|
|
for tag in filter(lambda tag: tag in self.mod_config.tags_templates[template_name], self.tags):
|
|
return self.mod_config.multiple_safe_eval(
|
|
template=self.mod_config.tags_templates[template_name][tag],
|
|
args=["tag"],
|
|
)(tag=tag)
|
|
return default
|
|
|
|
def repr_format(self, template: "TemplateMultipleSafeEval") -> str:
|
|
return self.mod_config.multiple_safe_eval(
|
|
template=template,
|
|
env={
|
|
"get_tag_template": lambda track, *args, **kwargs: track.get_tag_template(*args, **kwargs),
|
|
},
|
|
args=["track"],
|
|
)(track=self)
|
|
|
|
@property
|
|
def filename(self) -> str:
|
|
return self.repr_format(template=self.mod_config.track_file_template)
|
|
|
|
def __getattr__(self, item):
|
|
return self.mod_config.default_track_attributes.get(item, None)
|