work on colour stack + make fix

This commit is contained in:
Mattias Andrée 2012-08-21 02:53:01 +02:00
parent 5ee263a055
commit 5fa8938b95
2 changed files with 23 additions and 4 deletions

4
configure vendored
View file

@ -228,8 +228,8 @@ function makeMakefile()
done
echo
echo -en '\t' ; echo 'mkdir -p "$(INSTALLDIR)/bin/"'
echo -en '\t' ; echo 'install "ponysay" "$(INSTALLDIR)/bin/ponysay"'
echo -en '\t' ; echo 'ln -sf "ponysay" "$(INSTALLDIR)/bin/ponythink"'
echo -en '\t' ; echo 'install "ponysay.install" "$(INSTALLDIR)/bin/ponysay"'
echo -en '\t' ; echo 'ln -sf "ponysay" "$(INSTALLDIR)/bin/ponythink"'
echo
echo -en '\t' ; echo 'mkdir -p "$(INSTALLDIR)/share/licenses/ponysay/"'
for file in $licenseFiles; do

23
ponysay
View file

@ -1085,16 +1085,35 @@ class ColourStack():
Constructor
'''
def __init__(self, autopush, autopop):
pass
self.autopush = autopush
self.autopop = autopop
self.lenpush = len(autopush)
self.lenpop = len(autopop)
self.bufproto = ' ' * (self.lenpush if self.lenpush > self.lenpop else self.lenpop)
self.stack = []
self.push()
def push(self):
self.stack = [[self.bufproto]] + self.stack
if len(self.stack) == 1:
return ''
return ''
def pop(self):
return ''
def feed(self, char):
return ''
buf = self.stack[0][0]
rc = ''
if buf[:-self.lenpush] == self.autopush:
rc = self.push()
elif buf[:-self.lenpop] == self.autopop:
rc = self.pop()
self.stack[0][0] = buf[1:] + char
return rc