squirrel-battle/squirrelbattle/display/mapdisplay.py

70 lines
3.0 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-19 01:18:08 +00:00
from squirrelbattle.interfaces import Map
from .display import Display
2020-12-07 23:59:19 +00:00
from squirrelbattle.entities.player import Player
2020-11-06 16:43:30 +00:00
2020-11-10 19:34:22 +00:00
class MapDisplay(Display):
2020-11-10 19:34:22 +00:00
def __init__(self, *args):
super().__init__(*args)
2020-11-10 19:34:22 +00:00
def update_map(self, m: Map) -> None:
2020-11-10 09:49:11 +00:00
self.map = m
self.pad = self.newpad(m.height, self.pack.tile_width * m.width + 1)
2020-11-06 14:34:24 +00:00
2020-11-06 20:15:09 +00:00
def update_pad(self) -> None:
self.init_pair(1, self.pack.tile_fg_color, self.pack.tile_bg_color)
self.init_pair(2, self.pack.entity_fg_color, self.pack.entity_bg_color)
self.addstr(self.pad, 0, 0, self.map.draw_string(self.pack),
self.color_pair(1))
2020-11-06 14:34:24 +00:00
for e in self.map.entities:
self.addstr(self.pad, e.y, self.pack.tile_width * e.x,
self.pack[e.name.upper()], self.color_pair(2))
2020-12-07 23:59:19 +00:00
players = [ p for p in self.map.entities if isinstance(p,Player) ]
player = players[0] if len(players) > 0 else None
if player:
for x in range(self.map.width):
for y in range(self.map.height):
if (y,x) in player.paths:
2020-12-08 21:22:20 +00:00
deltay, deltax = (y - player.paths[(y, x)][0],
x - player.paths[(y, x)][1])
2020-12-07 23:59:19 +00:00
if (deltay, deltax) == (-1, 0):
2020-12-08 21:22:20 +00:00
character = ''
2020-12-07 23:59:19 +00:00
elif (deltay, deltax) == (1, 0):
2020-12-08 21:22:20 +00:00
character = ''
2020-12-07 23:59:19 +00:00
elif (deltay, deltax) == (0, -1):
2020-12-08 21:22:20 +00:00
character = ''
2020-12-07 23:59:19 +00:00
else:
2020-12-08 21:22:20 +00:00
character = ''
2020-12-07 23:59:19 +00:00
self.addstr(self.pad, y, self.pack.tile_width * x,
character, self.color_pair(1))
2020-11-06 14:34:24 +00:00
def display(self) -> None:
y, x = self.map.currenty, self.pack.tile_width * self.map.currentx
2020-11-06 20:15:09 +00:00
deltay, deltax = (self.height // 2) + 1, (self.width // 2) + 1
pminrow, pmincol = y - deltay, x - deltax
2020-11-06 14:34:24 +00:00
sminrow, smincol = max(-pminrow, 0), max(-pmincol, 0)
deltay, deltax = self.height - deltay, self.width - deltax
2020-11-06 20:15:09 +00:00
smaxrow = self.map.height - (y + deltay) + self.height - 1
smaxrow = min(smaxrow, self.height - 1)
smaxcol = self.pack.tile_width * self.map.width - \
(x + deltax) + self.width - 1
# Wrap perfectly the map according to the width of the tiles
pmincol = self.pack.tile_width * (pmincol // self.pack.tile_width)
smincol = self.pack.tile_width * (smincol // self.pack.tile_width)
smaxcol = self.pack.tile_width \
* (smaxcol // self.pack.tile_width + 1) - 1
2020-11-06 20:15:09 +00:00
smaxcol = min(smaxcol, self.width - 1)
pminrow = max(0, min(self.map.height, pminrow))
pmincol = max(0, min(self.pack.tile_width * self.map.width, pmincol))
self.pad.erase()
2020-11-06 14:34:24 +00:00
self.update_pad()
self.refresh_pad(self.pad, pminrow, pmincol, sminrow, smincol, smaxrow,
smaxcol)