From b36f6d55272ded1f742e361e7b81599c48bf44fe Mon Sep 17 00:00:00 2001 From: Mattias Andrée Date: Mon, 20 Aug 2012 00:28:01 +0200 Subject: work on balloon --- ponysay.py | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) (limited to 'ponysay.py') diff --git a/ponysay.py b/ponysay.py index b74e251..a687ecc 100755 --- a/ponysay.py +++ b/ponysay.py @@ -950,14 +950,20 @@ class Backend(): if self.wrapcolumn is not None: wrap = self.wrapcolumn - left - w = 6 - h = 5 + lines = self.message.split('\n') + h = 4 + len(lines) + w = 6 + len(max(lines, key = len)) if w < width: w = width if h < height: h = height - rc = (('X' * w) + '\n') * h + rc = '/' + '-' * (w - 2) + '\\\n' + rc += '|' + ' ' * (w - 2) + '|\n' + for line in lines: + rc += '| ' + line + ' ' * (w - len(line) - 6) + ' |\n' + rc += '|' + ' ' * (w - 2) + '|\n' + rc += '\\' + '-' * (w - 2) + '/' - return rc[:-1] + return rc -- cgit