2020-11-27 16:33:17 +01:00
|
|
|
# Copyright (C) 2020 by ÿnérant, eichhornchen, nicomarg, charlse
|
|
|
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
|
2020-11-06 15:34:24 +01:00
|
|
|
import curses
|
2020-11-10 20:43:30 +01:00
|
|
|
from typing import Any, Optional, Union
|
2020-11-08 23:40:03 +01:00
|
|
|
|
2020-11-19 02:18:08 +01:00
|
|
|
from squirrelbattle.display.texturepack import TexturePack
|
2020-12-11 17:43:46 +01:00
|
|
|
from squirrelbattle.game import Game
|
2020-11-19 02:18:08 +01:00
|
|
|
from squirrelbattle.tests.screen import FakePad
|
2020-11-10 18:08:06 +01:00
|
|
|
|
2020-11-06 15:34:24 +01:00
|
|
|
|
|
|
|
class Display:
|
2020-11-10 20:34:22 +01:00
|
|
|
x: int
|
|
|
|
y: int
|
|
|
|
width: int
|
|
|
|
height: int
|
2020-11-10 21:20:11 +01:00
|
|
|
pad: Any
|
2020-11-10 20:34:22 +01:00
|
|
|
|
2020-11-10 20:43:30 +01:00
|
|
|
def __init__(self, screen: Any, pack: Optional[TexturePack] = None):
|
2020-11-06 15:34:24 +01:00
|
|
|
self.screen = screen
|
2020-11-10 20:43:30 +01:00
|
|
|
self.pack = pack or TexturePack.get_pack("ascii")
|
2020-11-08 23:40:03 +01:00
|
|
|
|
|
|
|
def newpad(self, height: int, width: int) -> Union[FakePad, Any]:
|
2020-11-08 23:48:26 +01:00
|
|
|
return curses.newpad(height, width) if self.screen else FakePad()
|
2020-11-09 00:44:08 +01:00
|
|
|
|
2020-11-26 20:04:54 +01:00
|
|
|
def truncate(self, msg: str, height: int, width: int) -> str:
|
2020-11-26 20:35:10 +01:00
|
|
|
height = max(0, height)
|
|
|
|
width = max(0, width)
|
2020-11-26 20:04:54 +01:00
|
|
|
lines = msg.split("\n")
|
|
|
|
lines = lines[:height]
|
|
|
|
lines = [line[:width] for line in lines]
|
|
|
|
return "\n".join(lines)
|
|
|
|
|
2020-11-26 12:35:52 +01:00
|
|
|
def addstr(self, pad: Any, y: int, x: int, msg: str, *options) -> None:
|
2020-11-26 20:04:54 +01:00
|
|
|
"""
|
|
|
|
Display a message onto the pad.
|
|
|
|
If the message is too large, it is truncated vertically and horizontally
|
|
|
|
"""
|
|
|
|
height, width = pad.getmaxyx()
|
2020-11-26 20:35:10 +01:00
|
|
|
msg = self.truncate(msg, height - y, width - x - 1)
|
|
|
|
if msg.replace("\n", "") and x >= 0 and y >= 0:
|
2020-11-26 20:04:54 +01:00
|
|
|
return pad.addstr(y, x, msg, *options)
|
2020-11-26 12:35:52 +01:00
|
|
|
|
2020-11-10 22:30:55 +01:00
|
|
|
def init_pair(self, number: int, foreground: int, background: int) -> None:
|
|
|
|
return curses.init_pair(number, foreground, background) \
|
|
|
|
if self.screen else None
|
|
|
|
|
|
|
|
def color_pair(self, number: int) -> int:
|
|
|
|
return curses.color_pair(number) if self.screen else 0
|
|
|
|
|
2020-11-11 22:12:05 +01:00
|
|
|
def resize(self, y: int, x: int, height: int, width: int,
|
|
|
|
resize_pad: bool = True) -> None:
|
2020-11-10 18:08:06 +01:00
|
|
|
self.x = x
|
|
|
|
self.y = y
|
|
|
|
self.width = width
|
|
|
|
self.height = height
|
2020-11-26 20:58:46 +01:00
|
|
|
if hasattr(self, "pad") and resize_pad and \
|
|
|
|
self.height >= 0 and self.width >= 0:
|
2020-11-20 18:06:43 +01:00
|
|
|
self.pad.resize(self.height + 1, self.width + 1)
|
2020-11-10 18:08:06 +01:00
|
|
|
|
2020-11-11 22:12:05 +01:00
|
|
|
def refresh(self, *args, resize_pad: bool = True) -> None:
|
2020-11-10 18:08:06 +01:00
|
|
|
if len(args) == 4:
|
2020-11-11 22:12:05 +01:00
|
|
|
self.resize(*args, resize_pad)
|
2020-11-10 18:08:06 +01:00
|
|
|
self.display()
|
2020-11-10 20:34:22 +01:00
|
|
|
|
2020-11-26 20:58:46 +01:00
|
|
|
def refresh_pad(self, pad: Any, top_y: int, top_x: int,
|
|
|
|
window_y: int, window_x: int,
|
|
|
|
last_y: int, last_x: int) -> None:
|
|
|
|
"""
|
|
|
|
Refresh a pad on a part of the window.
|
|
|
|
The refresh starts at coordinates (top_y, top_x) from the pad,
|
|
|
|
and is drawn from (window_y, window_x) to (last_y, last_x).
|
|
|
|
If coordinates are invalid (negative indexes/length..., then nothing
|
|
|
|
is drawn and no error is raised.
|
|
|
|
"""
|
|
|
|
top_y, top_x = max(0, top_y), max(0, top_x)
|
|
|
|
window_y, window_x = max(0, window_y), max(0, window_x)
|
2020-11-26 22:32:25 +01:00
|
|
|
screen_max_y, screen_max_x = self.screen.getmaxyx() if self.screen \
|
2020-11-27 14:04:51 +01:00
|
|
|
else (42, 42)
|
2020-11-26 20:58:46 +01:00
|
|
|
last_y, last_x = min(screen_max_y - 1, last_y), \
|
|
|
|
min(screen_max_x - 1, last_x)
|
|
|
|
|
|
|
|
if last_y >= window_y and last_x >= window_x:
|
|
|
|
# Refresh the pad only if coordinates are valid
|
|
|
|
pad.refresh(top_y, top_x, window_y, window_x, last_y, last_x)
|
|
|
|
|
2020-11-10 20:34:22 +01:00
|
|
|
def display(self) -> None:
|
|
|
|
raise NotImplementedError
|
2020-11-09 00:44:08 +01:00
|
|
|
|
2020-12-11 17:43:46 +01:00
|
|
|
def handle_click(self, y: int, x: int, game: Game) -> None:
|
2020-12-11 17:40:56 +01:00
|
|
|
"""
|
|
|
|
A mouse click was performed on the coordinates (y, x) of the pad.
|
|
|
|
Maybe it can do something.
|
|
|
|
"""
|
|
|
|
pass
|
|
|
|
|
2020-11-09 00:44:08 +01:00
|
|
|
@property
|
|
|
|
def rows(self) -> int:
|
|
|
|
return curses.LINES if self.screen else 42
|
|
|
|
|
|
|
|
@property
|
|
|
|
def cols(self) -> int:
|
|
|
|
return curses.COLS if self.screen else 42
|
2020-11-20 16:52:04 +01:00
|
|
|
|
|
|
|
|
|
|
|
class VerticalSplit(Display):
|
|
|
|
|
|
|
|
def __init__(self, *args, **kwargs):
|
|
|
|
super().__init__(*args, **kwargs)
|
|
|
|
self.pad = self.newpad(self.rows, 1)
|
|
|
|
|
|
|
|
@property
|
|
|
|
def width(self) -> int:
|
|
|
|
return 1
|
|
|
|
|
|
|
|
@width.setter
|
|
|
|
def width(self, val: Any) -> None:
|
|
|
|
pass
|
|
|
|
|
|
|
|
def display(self) -> None:
|
|
|
|
for i in range(self.height):
|
2020-11-26 12:35:52 +01:00
|
|
|
self.addstr(self.pad, i, 0, "┃")
|
2020-11-26 20:58:46 +01:00
|
|
|
self.refresh_pad(self.pad, 0, 0, self.y, self.x,
|
|
|
|
self.y + self.height - 1, self.x)
|
2020-11-20 16:52:04 +01:00
|
|
|
|
|
|
|
|
|
|
|
class HorizontalSplit(Display):
|
|
|
|
|
|
|
|
def __init__(self, *args, **kwargs):
|
|
|
|
super().__init__(*args, **kwargs)
|
|
|
|
self.pad = self.newpad(1, self.cols)
|
|
|
|
|
|
|
|
@property
|
|
|
|
def height(self) -> int:
|
|
|
|
return 1
|
|
|
|
|
|
|
|
@height.setter
|
|
|
|
def height(self, val: Any) -> None:
|
|
|
|
pass
|
|
|
|
|
|
|
|
def display(self) -> None:
|
|
|
|
for i in range(self.width):
|
2020-11-26 12:35:52 +01:00
|
|
|
self.addstr(self.pad, 0, i, "━")
|
2020-11-26 20:58:46 +01:00
|
|
|
self.refresh_pad(self.pad, 0, 0, self.y, self.x, self.y,
|
|
|
|
self.x + self.width - 1)
|
2020-11-20 18:06:43 +01:00
|
|
|
|
2020-11-20 18:09:39 +01:00
|
|
|
|
2020-11-20 18:06:43 +01:00
|
|
|
class Box(Display):
|
|
|
|
|
2020-11-27 17:52:26 +01:00
|
|
|
def __init__(self, *args, fg_border_color: Optional[int] = None, **kwargs):
|
2020-11-20 18:06:43 +01:00
|
|
|
super().__init__(*args, **kwargs)
|
|
|
|
self.pad = self.newpad(self.rows, self.cols)
|
2020-11-27 17:52:26 +01:00
|
|
|
self.fg_border_color = fg_border_color or curses.COLOR_WHITE
|
|
|
|
|
|
|
|
pair_number = 4 + self.fg_border_color
|
|
|
|
self.init_pair(pair_number, self.fg_border_color, curses.COLOR_BLACK)
|
|
|
|
self.pair = self.color_pair(pair_number)
|
2020-11-20 18:09:39 +01:00
|
|
|
|
2020-11-20 18:06:43 +01:00
|
|
|
def display(self) -> None:
|
2020-11-27 17:52:26 +01:00
|
|
|
self.addstr(self.pad, 0, 0, "┏" + "━" * (self.width - 2) + "┓",
|
|
|
|
self.pair)
|
2020-11-20 18:06:43 +01:00
|
|
|
for i in range(1, self.height - 1):
|
2020-11-27 17:52:26 +01:00
|
|
|
self.addstr(self.pad, i, 0, "┃", self.pair)
|
|
|
|
self.addstr(self.pad, i, self.width - 1, "┃", self.pair)
|
2020-11-26 12:35:52 +01:00
|
|
|
self.addstr(self.pad, self.height - 1, 0,
|
2020-11-27 17:52:26 +01:00
|
|
|
"┗" + "━" * (self.width - 2) + "┛", self.pair)
|
2020-11-26 20:58:46 +01:00
|
|
|
self.refresh_pad(self.pad, 0, 0, self.y, self.x,
|
|
|
|
self.y + self.height - 1, self.x + self.width - 1)
|