squirrel-battle/squirrelbattle/menus.py

112 lines
3.4 KiB
Python
Raw Normal View History

2020-11-27 15:33:17 +00:00
# Copyright (C) 2020 by ÿnérant, eichhornchen, nicomarg, charlse
# SPDX-License-Identifier: GPL-3.0-or-later
2020-11-08 22:26:54 +00:00
from enum import Enum
2020-11-11 21:45:15 +00:00
from typing import Any, Optional
2020-11-11 21:22:33 +00:00
2020-11-11 22:09:15 +00:00
from .display.texturepack import TexturePack
from .enums import GameMode, KeyValues, DisplayActions
from .settings import Settings
2020-11-27 19:42:19 +00:00
from .translations import gettext as _
2020-11-06 15:40:43 +00:00
2020-11-06 15:20:07 +00:00
class Menu:
"""
A Menu object is the logical representation of a menu in the game
"""
2020-11-06 17:11:59 +00:00
values: list
2020-11-06 15:40:43 +00:00
def __init__(self):
2020-11-06 15:20:07 +00:00
self.position = 0
2020-11-06 17:11:59 +00:00
def go_up(self) -> None:
"""
Moves the pointer of the menu on the previous value
"""
2020-11-06 17:11:59 +00:00
self.position = max(0, self.position - 1)
def go_down(self) -> None:
"""
Moves the pointer of the menu on the next value
"""
2020-11-06 17:11:59 +00:00
self.position = min(len(self.values) - 1, self.position + 1)
2020-11-06 17:25:02 +00:00
def validate(self) -> Any:
"""
Selects the value that is pointed by the menu pointer
"""
2020-11-06 15:40:43 +00:00
return self.values[self.position]
2020-11-06 17:11:59 +00:00
2020-11-06 15:40:43 +00:00
class MainMenuValues(Enum):
"""
Values of the main menu
"""
2020-11-27 19:42:19 +00:00
START = _("New game")
RESUME = _("Resume")
SAVE = _("Save")
LOAD = _("Load")
SETTINGS = _("Settings")
EXIT = _("Exit")
2020-11-06 15:40:43 +00:00
2020-11-10 19:22:53 +00:00
def __str__(self):
return self.value
2020-11-06 17:11:59 +00:00
2020-11-06 15:40:43 +00:00
class MainMenu(Menu):
"""
A special instance of a menu : the main menu
"""
2020-11-06 17:11:59 +00:00
values = [e for e in MainMenuValues]
2020-11-06 15:40:43 +00:00
2020-11-11 19:36:43 +00:00
class SettingsMenu(Menu):
"""
A special instance of a menu : the settings menu
"""
waiting_for_key: bool = False
2020-11-11 19:36:43 +00:00
def update_values(self, settings: Settings) -> None:
self.values = list(settings.__dict__.items())
2020-11-27 19:42:19 +00:00
self.values.append(("RETURN", ["", _("Back")]))
2020-11-11 19:36:43 +00:00
2020-11-11 21:45:15 +00:00
def handle_key_pressed(self, key: Optional[KeyValues], raw_key: str,
game: Any) -> None:
2020-11-11 21:22:33 +00:00
"""
In the setting menu, we van select a setting and change it
2020-11-11 21:22:33 +00:00
"""
if not self.waiting_for_key:
2020-11-12 01:03:08 +00:00
# Navigate normally through the menu.
2020-11-11 22:10:49 +00:00
if key == KeyValues.SPACE or \
key == KeyValues.ENTER and \
self.position == len(self.values) - 1:
2020-11-12 01:03:08 +00:00
# Go back
game.display_actions(DisplayActions.UPDATE)
game.state = GameMode.MAINMENU
if key == KeyValues.DOWN:
self.go_down()
if key == KeyValues.UP:
self.go_up()
if key == KeyValues.ENTER and self.position < len(self.values) - 1:
2020-11-12 01:03:08 +00:00
# Change a setting
option = self.values[self.position][0]
2020-11-11 22:09:15 +00:00
if option == "TEXTURE_PACK":
game.settings.TEXTURE_PACK = \
TexturePack.get_next_pack_name(
game.settings.TEXTURE_PACK)
game.settings.write_settings()
self.update_values(game.settings)
else:
self.waiting_for_key = True
2020-11-11 22:00:45 +00:00
self.update_values(game.settings)
else:
option = self.values[self.position][0]
2020-11-12 01:03:08 +00:00
# Don't use an already mapped key
if any(getattr(game.settings, opt) == raw_key
for opt in game.settings.settings_keys if opt != option):
return
setattr(game.settings, option, raw_key)
game.settings.write_settings()
self.waiting_for_key = False
2020-11-11 22:00:45 +00:00
self.update_values(game.settings)