aboutsummaryrefslogtreecommitdiff
path: root/ponysay.py
diff options
context:
space:
mode:
authorMattias Andrée <maandree@operamail.com>2012-08-18 16:08:24 +0200
committerMattias Andrée <maandree@operamail.com>2012-08-18 16:08:24 +0200
commit3100f4b32a5ccebfaf7b099ddba68a38bda9c231 (patch)
treec857484b9432a12a79d2941e6b0d67a7f982a351 /ponysay.py
parenta2bd6fee37f1a1d950dfc19359ce58a818b2d862 (diff)
downloadponysay-3100f4b32a5ccebfaf7b099ddba68a38bda9c231.tar.gz
ponysay-3100f4b32a5ccebfaf7b099ddba68a38bda9c231.tar.bz2
ponysay-3100f4b32a5ccebfaf7b099ddba68a38bda9c231.zip
-L is now implemented
Diffstat (limited to 'ponysay.py')
-rwxr-xr-xponysay.py82
1 files changed, 77 insertions, 5 deletions
diff --git a/ponysay.py b/ponysay.py
index 46a3932..b7b3eb4 100755
--- a/ponysay.py
+++ b/ponysay.py
@@ -40,8 +40,9 @@ for ponydir in _ponydirs:
parser = argparse.ArgumentParser(description = 'Ponysay, like cowsay with ponies')
parser.add_argument('-v', '--version', action = 'version', version = '%s %s' % ("ponysay", VERSION))
-parser.add_argument('-l', '--list', action = 'store_true', dest = 'list', help = 'list pony files')
-parser.add_argument('-f', '--pony', action = 'append', dest = 'pony', help = 'select a pony (either a file name or a pony name)')
+parser.add_argument('-l', '--list', action = 'store_true', dest = 'list', help = 'list pony files')
+parser.add_argument('-L', '--altlist', action = 'store_true', dest = 'linklist', help = 'list pony files with alternatives')
+parser.add_argument('-f', '--pony', action = 'append', dest = 'pony', help = 'select a pony (either a file name or a pony name)')
parser.add_argument('message', nargs = '?', help = 'message to ponysay')
args = parser.parse_args()
@@ -49,8 +50,9 @@ args = parser.parse_args()
class ponysay():
def __init__(self, args):
- if args.list: self.list()
- else: self.print_pony(args)
+ if args.list: self.list()
+ elif args.linklist: self.linklist()
+ else: self.print_pony(args)
'''
@@ -121,12 +123,82 @@ class ponysay():
print(('\033[1m' + pony + '\033[21m' if (pony in quoters) else pony) + spacing, end="") # Print ponyfilename
x += width
if x > (termsize[1] - width): # If too wide, make new line
- print();
+ print()
x = 0
print("\n");
+ '''
+ Lists the available ponies with alternatives inside brackets
+ '''
+ def linklist(self):
+ termsize = Popen(['stty', 'size'], stdout=PIPE).communicate()[0].decode('utf8', 'replace')[:-1].split(" ")
+ termsize = [int(item) for item in termsize]
+
+ quoters = self.__quoters()
+
+ for ponydir in ponydirs: # Loop ponydirs
+ print('\033[1mponyfiles located in ' + ponydir + '\033[21m')
+
+ files = os.listdir(ponydir)
+ files = [item[:-5] for item in files] # remove .pony from file name
+ files.sort()
+ pairs = [(item, os.readlink(ponydir + item + ".pony") if os.path.islink(ponydir + item + ".pony") else '') for item in files]
+
+ ponymap = {}
+ for pair in pairs:
+ if pair[1] == "":
+ if pair[0] not in ponymap:
+ ponymap[pair[0]] = []
+ else:
+ target = pair[1][:-5]
+ if '/' in target:
+ target = target[target.rindex('/') + 1:]
+ if target in ponymap:
+ ponymap[target].append(pair[0])
+ else:
+ ponymap[target] = [pair[0]]
+
+ width = 0
+ ponies = []
+ widths = []
+ for pony in ponymap:
+ w = len(pony)
+ item = '\033[1m' + pony + '\033[21m' if (pony in quoters) else pony
+ syms = ponymap[pony]
+ if len(syms) > 0:
+ w += 2 + len(syms)
+ item += " ("
+ first = True
+ for sym in syms:
+ w += len(sym)
+ if not first:
+ item += " "
+ else:
+ first = False
+ item += '\033[1m' + sym + '\033[21m' if (sym in quoters) else sym
+ item += ")"
+ ponies.append(item)
+ widths.append(w)
+ if width < w:
+ width = w
+
+ width += 2;
+ x = 0
+ index = 0
+ for pony in ponies:
+ spacing = ' ' * (width - widths[index])
+ index += 1
+ print(pony + spacing, end="") # Print ponyfilename
+ x += width
+ if x > (termsize[1] - width): # If too wide, make new line
+ print()
+ x = 0
+
+ print("\n");
+
+
def print_pony(self, args):
if args.message == None:
msg = sys.stdin.read().strip()