mirror of
https://github.com/Faraphel/Atlas-Install.git
synced 2025-07-03 03:08:29 +02:00
31 lines
1.3 KiB
Python
31 lines
1.3 KiB
Python
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)
|
|
"""
|
|
|
|
tags: list
|
|
|
|
def get_tag_template(self, mod_config: "ModConfig", template_name: str, default: any = None) -> any:
|
|
"""
|
|
Return the tag template found in templates. If not found, return default
|
|
:param mod_config: mod configuration
|
|
: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 mod_config.tags_templates[template_name], self.tags):
|
|
return mod_config.multiple_safe_eval(mod_config.tags_templates[template_name][tag], env={"tag": tag})
|
|
return default
|
|
|
|
def repr_format(self, mod_config: "ModConfig", template: str) -> str:
|
|
return mod_config.multiple_safe_eval(
|
|
template,
|
|
env={
|
|
"track": self,
|
|
"get_tag_template": lambda *args, **kwargs: self.get_tag_template(mod_config, *args, **kwargs)
|
|
}
|
|
)
|
|
|
|
def get_filename(self, mod_config: "ModConfig") -> str:
|
|
return self.repr_format(mod_config=mod_config, template=mod_config.track_file_template)
|