mirror of
https://github.com/erkin/ponysay.git
synced 2024-11-23 04:47:59 +01:00
data field names + print pony to the right without its colours applied to the left side
This commit is contained in:
parent
e73c8518d1
commit
88ca31b0a6
1 changed files with 61 additions and 3 deletions
|
@ -73,11 +73,13 @@ class PonysayTool():
|
||||||
print('%s %s' % ('ponysay', VERSION))
|
print('%s %s' % ('ponysay', VERSION))
|
||||||
|
|
||||||
elif (opts['--edit'] is not None) and (len(opts['--edit']) == 1):
|
elif (opts['--edit'] is not None) and (len(opts['--edit']) == 1):
|
||||||
|
print('\033[?1049h', end='') # initialise terminal
|
||||||
pony = opts['--edit'][0]
|
pony = opts['--edit'][0]
|
||||||
if not os.path.isfile(pony):
|
if not os.path.isfile(pony):
|
||||||
printerr('%s is not an existing regular file' % pony)
|
printerr('%s is not an existing regular file' % pony)
|
||||||
exit(252)
|
exit(252)
|
||||||
self.editmeta(pony)
|
self.editmeta(pony)
|
||||||
|
print('\033[?1049l', end='') # terminate terminal
|
||||||
|
|
||||||
else:
|
else:
|
||||||
exit(253)
|
exit(253)
|
||||||
|
@ -131,7 +133,7 @@ class PonysayTool():
|
||||||
cut = 0
|
cut = 0
|
||||||
while (len(comment) > cut) and (len(comment[cut]) == 0):
|
while (len(comment) > cut) and (len(comment[cut]) == 0):
|
||||||
cut += 1
|
cut += 1
|
||||||
comment = [''] + comment[cut:]
|
comment = comment[cut:]
|
||||||
|
|
||||||
|
|
||||||
stdout = sys.stdout
|
stdout = sys.stdout
|
||||||
|
@ -156,11 +158,67 @@ class PonysayTool():
|
||||||
printpony = sys.stdout.buf[:-1].split('\n')
|
printpony = sys.stdout.buf[:-1].split('\n')
|
||||||
sys.stdout = stdout
|
sys.stdout = stdout
|
||||||
|
|
||||||
|
preprint = '\033[H\033[2J'
|
||||||
|
if printpony[0].startswith(preprint):
|
||||||
|
printpony[0] = printpony[0][len(preprint):]
|
||||||
ponyheight = len(printpony)
|
ponyheight = len(printpony)
|
||||||
ponywidth = Backend.len(max(printpony, key = Backend.len))
|
ponywidth = Backend.len(max(printpony, key = Backend.len))
|
||||||
|
|
||||||
print('\n'.join(printpony))
|
## Call `stty` to determine the size of the terminal, this way is better then using python's ncurses
|
||||||
print(str(ponyheight) + '×' + str(ponywidth))
|
termsize = None
|
||||||
|
for channel in (sys.stdout, sys.stdin, sys.stderr):
|
||||||
|
termsize = Popen(['stty', 'size'], stdout=PIPE, stdin=channel, stderr=PIPE).communicate()[0]
|
||||||
|
if len(termsize) > 0:
|
||||||
|
termsize = termsize.decode('utf8', 'replace')[:-1].split(' ') # [:-1] removes a \n
|
||||||
|
termsize = [int(item) for item in termsize]
|
||||||
|
break
|
||||||
|
if termsize is None:
|
||||||
|
print('\033[?1049l', end='')
|
||||||
|
|
||||||
|
AUTO_PUSH = '\033[01010~'
|
||||||
|
AUTO_POP = '\033[10101~'
|
||||||
|
modprintpony = '\n'.join(printpony).replace('\n', AUTO_PUSH + '\n' + AUTO_POP)
|
||||||
|
colourstack = ColourStack(AUTO_PUSH, AUTO_POP)
|
||||||
|
buf = ''
|
||||||
|
for c in modprintpony:
|
||||||
|
buf += c + colourstack.feed(c)
|
||||||
|
modprintpony = buf.replace(AUTO_PUSH, '').replace(AUTO_POP, '')
|
||||||
|
|
||||||
|
printpony = [('\033[21;39;49;0m%s%s\033[21;39;49;0m' % (' ' * (termsize[1] - ponywidth), line)) for line in modprintpony.split('\n')]
|
||||||
|
|
||||||
|
|
||||||
|
print(preprint, end='')
|
||||||
|
print('\n'.join(printpony), end='')
|
||||||
|
print('\033[H', end='')
|
||||||
|
print('Please see the info manual for details on how to fill out this form')
|
||||||
|
print()
|
||||||
|
|
||||||
|
|
||||||
|
if 'WIDTH' in data: del data['WIDTH']
|
||||||
|
if 'HEIGHT' in data: del data['HEIGHT']
|
||||||
|
data['comment'] = '\n'.join(comment)
|
||||||
|
fields = [key for key in data]
|
||||||
|
fields.sort()
|
||||||
|
standardfields = ['GROUP NAME', 'NAME', 'OTHER NAMES', 'APPEARANCE', 'KIND',
|
||||||
|
'GROUP', 'BALLOON', 'LINK', 'LINK ON', 'COAT', 'MANE', 'EYE',
|
||||||
|
'AURA', 'DISPLAY', 'MASTER', 'SOURCE', 'MEDIA', 'comment']
|
||||||
|
for standard in standardfields:
|
||||||
|
if standard in fields:
|
||||||
|
del fields[fields.index(standard)]
|
||||||
|
if standard not in data:
|
||||||
|
data[standard] = ''
|
||||||
|
|
||||||
|
fields = standardfields[:-1] + fields + [standardfields[-1]]
|
||||||
|
|
||||||
|
|
||||||
|
for key in fields:
|
||||||
|
print('\033[1m%s:\033[21m' % key)
|
||||||
|
|
||||||
|
input()
|
||||||
|
|
||||||
|
comment = data['comment']
|
||||||
|
del data['comment']
|
||||||
|
comment = ('\n' + comment + '\n').replace('\n$$$\n', '\n$$$ ($$$)\n')[:-1]
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue