This commit is contained in:
Yohann D'ANELLO
2020-11-10 20:34:22 +01:00
parent 1ff2e26cd4
commit 5c95bf11e7
7 changed files with 72 additions and 71 deletions

View File

@ -1,21 +1,18 @@
#!/usr/bin/env python
from typing import Any
import curses
from dungeonbattle.display.texturepack import TexturePack
from dungeonbattle.entities.player import Player
from dungeonbattle.interfaces import Map
from .display import Display
class MapDisplay(Display):
player: Player
def __init__(self, *args):
super().__init__(*args)
def update_map(self, m: Map):
def update_map(self, m: Map) -> None:
self.map = m
self.pad = curses.newpad(m.height, m.width + 1)
self.pad = self.newpad(m.height, m.width + 1)
def update_pad(self) -> None:
self.pad.addstr(0, 0, self.map.draw_string(self.pack))
@ -36,4 +33,4 @@ class MapDisplay(Display):
pmincol = max(0, min(self.map.width, pmincol))
self.pad.clear()
self.update_pad()
self.pad.refresh(pminrow, pmincol, sminrow, smincol, smaxrow, smaxcol)
self.pad.refresh(pminrow, pmincol, sminrow, smincol, smaxrow, smaxcol)