forked from Hay1tsme/artemis
25 lines
958 B
Python
25 lines
958 B
Python
import yaml
|
|
import jinja2
|
|
from twisted.web.http import Request
|
|
|
|
from core.frontend import FE_Base
|
|
from core.config import CoreConfig
|
|
from titles.wacca.database import WaccaData
|
|
from titles.wacca.config import WaccaConfig
|
|
from titles.wacca.const import WaccaConstants
|
|
|
|
class WaccaFrontend(FE_Base):
|
|
def __init__(self, cfg: CoreConfig, environment: jinja2.Environment, cfg_dir: str) -> None:
|
|
super().__init__(cfg, environment)
|
|
self.data = WaccaData(cfg)
|
|
self.game_cfg = WaccaConfig()
|
|
self.game_cfg.update(yaml.safe_load(open(f"{cfg_dir}/wacca.yaml")))
|
|
self.nav_name = "Wacca"
|
|
|
|
def render_GET(self, request: Request) -> bytes:
|
|
template = self.environment.get_template("titles/wacca/frontend/wacca_index.jinja")
|
|
return template.render(
|
|
title=f"{self.core_config.server.name} | {self.nav_name}",
|
|
game_list=self.environment.globals["game_list"]
|
|
).encode("utf-16")
|