2020-11-06 14:34:24 +00:00
|
|
|
#!/usr/bin/env python
|
|
|
|
import curses
|
2020-11-06 19:24:19 +00:00
|
|
|
|
|
|
|
from dungeonbattle.display.texturepack import TexturePack
|
2020-11-06 14:34:24 +00:00
|
|
|
from dungeonbattle.interfaces import Map
|
2020-11-06 16:43:30 +00:00
|
|
|
|
2020-11-06 14:34:24 +00:00
|
|
|
|
|
|
|
class MapDisplay:
|
|
|
|
|
2020-11-06 19:24:19 +00:00
|
|
|
def __init__(self, m: Map, pack: TexturePack, height: int, width: int,
|
|
|
|
init_pad: bool = True):
|
2020-11-06 14:34:24 +00:00
|
|
|
self.width = width
|
|
|
|
self.height = height
|
2020-11-06 16:43:30 +00:00
|
|
|
self.pack = pack
|
2020-11-06 19:24:19 +00:00
|
|
|
self.map = m
|
|
|
|
if init_pad:
|
|
|
|
self.pad = curses.newpad(m.height, m.width + 1)
|
2020-11-06 14:34:24 +00:00
|
|
|
|
|
|
|
def update_pad(self):
|
2020-11-06 16:43:30 +00:00
|
|
|
self.pad.addstr(0, 0, self.map.draw_string(self.pack))
|
2020-11-06 14:34:24 +00:00
|
|
|
for e in self.map.entities:
|
2020-11-06 16:43:30 +00:00
|
|
|
self.pad.addstr(e.y, e.x, self.pack.PLAYER)
|
2020-11-06 14:34:24 +00:00
|
|
|
|
|
|
|
def display(self, y, x):
|
|
|
|
deltay, deltax = (self.height // 2) + 1, (self.width //2) + 1
|
|
|
|
pminrow, pmincol = y-deltay, x-deltax
|
|
|
|
sminrow, smincol = max(-pminrow, 0), max(-pmincol, 0)
|
|
|
|
deltay, deltax = self.height - deltay, self.width - deltax
|
|
|
|
smaxrow = self.map.height - (y + deltay) + self.height -1
|
|
|
|
smaxrow = min(smaxrow, self.height-1)
|
|
|
|
smaxcol = self.map.width - (x + deltax) + self.width -1
|
|
|
|
smaxcol = min(smaxcol, self.width-1)
|
|
|
|
pminrow = max(0, min(self.map.height, pminrow))
|
|
|
|
pmincol = max(0, min(self.map.width, pmincol))
|
|
|
|
self.pad.clear()
|
|
|
|
self.update_pad()
|
|
|
|
self.pad.refresh(pminrow, pmincol, sminrow, smincol, smaxrow, smaxcol)
|