2020-11-10 17:08:06 +00:00
|
|
|
import curses
|
2020-11-19 01:18:08 +00:00
|
|
|
from squirrelbattle.display.mapdisplay import MapDisplay
|
|
|
|
from squirrelbattle.display.statsdisplay import StatsDisplay
|
|
|
|
from squirrelbattle.display.menudisplay import SettingsMenuDisplay, \
|
2020-11-13 18:08:40 +00:00
|
|
|
MainMenuDisplay
|
2020-11-19 11:03:05 +00:00
|
|
|
from squirrelbattle.display.logsdisplay import LogsDisplay
|
2020-11-19 01:18:08 +00:00
|
|
|
from squirrelbattle.display.texturepack import TexturePack
|
2020-11-10 17:08:06 +00:00
|
|
|
from typing import Any
|
2020-11-19 01:18:08 +00:00
|
|
|
from squirrelbattle.game import Game, GameMode
|
|
|
|
from squirrelbattle.enums import DisplayActions
|
2020-11-10 17:08:06 +00:00
|
|
|
|
|
|
|
|
|
|
|
class DisplayManager:
|
2020-11-10 19:34:22 +00:00
|
|
|
|
2020-11-10 17:08:06 +00:00
|
|
|
def __init__(self, screen: Any, g: Game):
|
|
|
|
self.game = g
|
|
|
|
self.screen = screen
|
2020-11-10 18:40:59 +00:00
|
|
|
pack = TexturePack.get_pack(self.game.settings.TEXTURE_PACK)
|
|
|
|
self.mapdisplay = MapDisplay(screen, pack)
|
|
|
|
self.statsdisplay = StatsDisplay(screen, pack)
|
2020-11-10 19:34:22 +00:00
|
|
|
self.mainmenudisplay = MainMenuDisplay(self.game.main_menu,
|
|
|
|
screen, pack)
|
2020-11-13 14:40:44 +00:00
|
|
|
self.settingsmenudisplay = SettingsMenuDisplay(screen, pack)
|
2020-11-19 11:03:05 +00:00
|
|
|
self.logsdisplay = LogsDisplay(screen, pack)
|
2020-11-10 19:34:22 +00:00
|
|
|
self.displays = [self.statsdisplay, self.mapdisplay,
|
2020-11-19 11:03:05 +00:00
|
|
|
self.mainmenudisplay, self.settingsmenudisplay,
|
|
|
|
self.logsdisplay]
|
2020-11-10 17:08:06 +00:00
|
|
|
self.update_game_components()
|
|
|
|
|
2020-11-12 00:58:10 +00:00
|
|
|
def handle_display_action(self, action: DisplayActions) -> None:
|
2020-11-11 23:12:30 +00:00
|
|
|
if action == DisplayActions.REFRESH:
|
2020-11-11 22:56:08 +00:00
|
|
|
self.refresh()
|
2020-11-11 23:12:30 +00:00
|
|
|
elif action == DisplayActions.UPDATE:
|
2020-11-11 22:56:08 +00:00
|
|
|
self.update_game_components()
|
|
|
|
|
2020-11-10 19:34:22 +00:00
|
|
|
def update_game_components(self) -> None:
|
2020-11-10 17:08:06 +00:00
|
|
|
for d in self.displays:
|
|
|
|
d.pack = TexturePack.get_pack(self.game.settings.TEXTURE_PACK)
|
|
|
|
self.mapdisplay.update_map(self.game.map)
|
|
|
|
self.statsdisplay.update_player(self.game.player)
|
2020-11-11 23:12:30 +00:00
|
|
|
self.settingsmenudisplay.update_menu(self.game.settings_menu)
|
2020-11-19 11:03:05 +00:00
|
|
|
self.logsdisplay.update_logs(self.game.logs)
|
2020-11-10 17:08:06 +00:00
|
|
|
|
|
|
|
def refresh(self) -> None:
|
2020-11-10 18:40:59 +00:00
|
|
|
if self.game.state == GameMode.PLAY:
|
2020-11-11 21:12:05 +00:00
|
|
|
# The map pad has already the good size
|
|
|
|
self.mapdisplay.refresh(0, 0, self.rows * 4 // 5, self.cols,
|
|
|
|
resize_pad=False)
|
2020-11-10 19:34:22 +00:00
|
|
|
self.statsdisplay.refresh(self.rows * 4 // 5, 0,
|
2020-11-19 11:55:06 +00:00
|
|
|
self.rows // 10, self.cols)
|
|
|
|
self.logsdisplay.refresh(self.rows * 9 // 10, 0,
|
|
|
|
self.rows // 10, self.cols)
|
2020-11-10 18:40:59 +00:00
|
|
|
if self.game.state == GameMode.MAINMENU:
|
2020-11-10 19:34:22 +00:00
|
|
|
self.mainmenudisplay.refresh(0, 0, self.rows, self.cols)
|
2020-11-11 13:46:25 +00:00
|
|
|
if self.game.state == GameMode.SETTINGS:
|
2020-11-11 19:36:43 +00:00
|
|
|
self.settingsmenudisplay.refresh(0, 0, self.rows, self.cols - 1)
|
2020-11-10 20:20:11 +00:00
|
|
|
self.resize_window()
|
2020-11-10 17:08:06 +00:00
|
|
|
|
2020-11-10 20:20:11 +00:00
|
|
|
def resize_window(self) -> bool:
|
2020-11-10 17:08:06 +00:00
|
|
|
"""
|
2020-11-10 20:20:11 +00:00
|
|
|
If the window got resized, ensure that the screen size got updated.
|
2020-11-10 17:08:06 +00:00
|
|
|
"""
|
|
|
|
y, x = self.screen.getmaxyx() if self.screen else (0, 0)
|
2020-11-10 20:32:42 +00:00
|
|
|
if self.screen and curses.is_term_resized(self.rows,
|
|
|
|
self.cols): # pragma: nocover
|
2020-11-10 17:08:06 +00:00
|
|
|
curses.resizeterm(y, x)
|
|
|
|
return True
|
|
|
|
return False
|
|
|
|
|
|
|
|
@property
|
|
|
|
def rows(self) -> int:
|
|
|
|
return curses.LINES if self.screen else 42
|
|
|
|
|
|
|
|
@property
|
|
|
|
def cols(self) -> int:
|
2020-11-10 19:34:22 +00:00
|
|
|
return curses.COLS if self.screen else 42
|