mirror of
https://github.com/erkin/ponysay.git
synced 2024-11-22 20:38:00 +01:00
split out the pony restriction logic
Signed-off-by: Mattias Andrée <maandree@operamail.com>
This commit is contained in:
parent
15eed0bb57
commit
4ebc80ff5c
1 changed files with 71 additions and 33 deletions
104
src/ponysay.py
104
src/ponysay.py
|
@ -473,39 +473,11 @@ class Ponysay():
|
||||||
oldponies = {}
|
oldponies = {}
|
||||||
self.__getAllPonies(standard, extra, oldponies, quoters):
|
self.__getAllPonies(standard, extra, oldponies, quoters):
|
||||||
|
|
||||||
## Apply metadata restriction
|
## Apply restriction
|
||||||
if self.restriction is not None:
|
ponies = self.__applyRestriction(oldponies, ponydirs)
|
||||||
logic = Metadata.makeRestrictionLogic(self.restriction)
|
|
||||||
ponies = {}
|
|
||||||
for ponydir in ponydirs:
|
|
||||||
for pony in Metadata.restrictedPonies(ponydir, logic):
|
|
||||||
if (pony in oldponies) and not (pony in ponies):
|
|
||||||
ponies[pony] = ponydir + pony + '.pony'
|
|
||||||
if len(ponies) > 0:
|
|
||||||
oldponies = ponies
|
|
||||||
|
|
||||||
## Apply dimension restriction
|
|
||||||
ponies = {}
|
|
||||||
(termh, termw) = gettermsize()
|
|
||||||
for ponydir in ponydirs:
|
|
||||||
(fitw, fith) = (None, None)
|
|
||||||
if os.path.exists(ponydir + 'widths'):
|
|
||||||
fitw = set()
|
|
||||||
with open(ponydir + 'widths', 'rb') as file:
|
|
||||||
Metadata.getFitting(fitw, termw, file)
|
|
||||||
if os.path.exists(ponydir + ('onlyheights' if self.ponyonly else 'heights')):
|
|
||||||
fith = set()
|
|
||||||
with open(ponydir + ('onlyheights' if self.ponyonly else 'heights'), 'rb') as file:
|
|
||||||
Metadata.getFitting(fith, termh, file)
|
|
||||||
for ponyfile in oldponies.values():
|
|
||||||
if ponyfile.startswith(ponydir):
|
|
||||||
pony = ponyfile[len(ponydir) : -5]
|
|
||||||
if (fitw is None) or (pony in fitw):
|
|
||||||
if (fith is None) or (pony in fith):
|
|
||||||
ponies[pony] = ponyfile
|
|
||||||
|
|
||||||
## Select one pony and set all information
|
## Select one pony and set all information
|
||||||
names = list((oldponies if len(ponies) == 0 else ponies).keys())
|
names = list(ponies.keys())
|
||||||
if len(names) == 0:
|
if len(names) == 0:
|
||||||
printerr('All the ponies are missing, call the Princess!')
|
printerr('All the ponies are missing, call the Princess!')
|
||||||
exit(249)
|
exit(249)
|
||||||
|
@ -547,7 +519,7 @@ class Ponysay():
|
||||||
|
|
||||||
@param standard:bool Whether to include standard ponies
|
@param standard:bool Whether to include standard ponies
|
||||||
@parma extra:bool Whether to include extra ponies
|
@parma extra:bool Whether to include extra ponies
|
||||||
@param collection:dict<str, str> Collection of already found ponies, and collection for new ponies
|
@param collection:dict<str, str> Collection of already found ponies, and collection for new ponies, maps to the pony file
|
||||||
@param quoters:set<str>? Ponies to limit to, or `None` to include all ponies
|
@param quoters:set<str>? Ponies to limit to, or `None` to include all ponies
|
||||||
'''
|
'''
|
||||||
if standard:
|
if standard:
|
||||||
|
@ -561,7 +533,7 @@ class Ponysay():
|
||||||
Get ponies for a set of directories
|
Get ponies for a set of directories
|
||||||
|
|
||||||
@param directories:list<str> Directories with ponies
|
@param directories:list<str> Directories with ponies
|
||||||
@param collection:dict<str, str> Collection of already found ponies, and collection for new ponies
|
@param collection:dict<str, str> Collection of already found ponies, and collection for new ponies, maps to the pony file
|
||||||
@param quoters:set<str>? Ponies to limit to, or `None` to include all ponies
|
@param quoters:set<str>? Ponies to limit to, or `None` to include all ponies
|
||||||
'''
|
'''
|
||||||
for ponydir in directories:
|
for ponydir in directories:
|
||||||
|
@ -572,6 +544,72 @@ class Ponysay():
|
||||||
collection[pony] = ponydir + ponyfile
|
collection[pony] = ponydir + ponyfile
|
||||||
|
|
||||||
|
|
||||||
|
def __applyRestriction(self, oldponies, ponydirs):
|
||||||
|
'''
|
||||||
|
Restrict ponies
|
||||||
|
|
||||||
|
@param oldponies:dict<str, str> Collection of original ponies, maps to pony file
|
||||||
|
@param ponydirs:list<sr> List of pony directories
|
||||||
|
@return :dict<str, str> Map from restricted ponies to pony files
|
||||||
|
'''
|
||||||
|
## Apply metadata restriction
|
||||||
|
if self.restriction is not None:
|
||||||
|
ponies = {}
|
||||||
|
self.__applyMetadataRestriction(ponies, oldponies, ponydirs)
|
||||||
|
if len(ponies) > 0:
|
||||||
|
oldponies = ponies
|
||||||
|
|
||||||
|
## Apply dimension restriction
|
||||||
|
ponies = {}
|
||||||
|
self.__applyDimensionRestriction(ponies, oldponies, ponydirs)
|
||||||
|
if len(ponies) > 0:
|
||||||
|
oldponies = ponies
|
||||||
|
|
||||||
|
return oldponies
|
||||||
|
|
||||||
|
|
||||||
|
def __applyMetadataRestriction(self, ponies, oldponies, ponydirs):
|
||||||
|
'''
|
||||||
|
Restrict to ponies by metadata
|
||||||
|
|
||||||
|
@param ponies:dict<str, str> Collection to fill with restricted ponies, mapped to pony file
|
||||||
|
@param oldponies:dict<str, str> Collection of original ponies, maps to pony file
|
||||||
|
@param ponydirs:list<sr> List of pony directories
|
||||||
|
'''
|
||||||
|
logic = Metadata.makeRestrictionLogic(self.restriction)
|
||||||
|
for ponydir in ponydirs:
|
||||||
|
for pony in Metadata.restrictedPonies(ponydir, logic):
|
||||||
|
if (pony in oldponies) and not (pony in ponies):
|
||||||
|
ponies[pony] = ponydir + pony + '.pony'
|
||||||
|
|
||||||
|
|
||||||
|
def __applyDimensionRestriction(self, ponies, oldponies, ponydirs):
|
||||||
|
'''
|
||||||
|
Restrict to ponies by dimension
|
||||||
|
|
||||||
|
@param ponies:dict<str, str> Collection to fill with restricted ponies, mapped to pony file
|
||||||
|
@param oldponies:dict<str, str> Collection of original ponies, maps to pony file
|
||||||
|
@param ponydirs:list<sr> List of pony directories
|
||||||
|
'''
|
||||||
|
(termh, termw) = gettermsize()
|
||||||
|
for ponydir in ponydirs:
|
||||||
|
(fitw, fith) = (None, None)
|
||||||
|
if os.path.exists(ponydir + 'widths'):
|
||||||
|
fitw = set()
|
||||||
|
with open(ponydir + 'widths', 'rb') as file:
|
||||||
|
Metadata.getFitting(fitw, termw, file)
|
||||||
|
if os.path.exists(ponydir + ('onlyheights' if self.ponyonly else 'heights')):
|
||||||
|
fith = set()
|
||||||
|
with open(ponydir + ('onlyheights' if self.ponyonly else 'heights'), 'rb') as file:
|
||||||
|
Metadata.getFitting(fith, termh, file)
|
||||||
|
for ponyfile in oldponies.values():
|
||||||
|
if ponyfile.startswith(ponydir):
|
||||||
|
pony = ponyfile[len(ponydir) : -5]
|
||||||
|
if (fitw is None) or (pony in fitw):
|
||||||
|
if (fith is None) or (pony in fith):
|
||||||
|
ponies[pony] = ponyfile
|
||||||
|
|
||||||
|
|
||||||
def __getQuote(self, pony, file):
|
def __getQuote(self, pony, file):
|
||||||
'''
|
'''
|
||||||
Select a quote for a pony
|
Select a quote for a pony
|
||||||
|
|
Loading…
Reference in a new issue