mirror of
https://github.com/LazoCoder/Pokemon-Terminal
synced 2025-02-18 13:58:33 +00:00
213 lines
6.5 KiB
Python
Executable file
213 lines
6.5 KiB
Python
Executable file
#!/usr/bin/env python3
|
|
"""The main module that brings everything together."""
|
|
|
|
from database import Database
|
|
from filters import Filter
|
|
import os
|
|
import filters
|
|
import random
|
|
import scripter
|
|
import sys
|
|
import time
|
|
import argparse
|
|
|
|
|
|
def print_list(list_of_items):
|
|
"""Print all the items in a list. Used for printing each Pokemon from a
|
|
particular region."""
|
|
print("\n".join(str(item) for item in list_of_items))
|
|
|
|
|
|
def print_columns(items):
|
|
"""Print a list as multiple columns instead of just one."""
|
|
rows = []
|
|
items_per_column = int(len(items) / 4) + 1
|
|
for index, pokemon in enumerate(items):
|
|
name = pokemon.get_id() + " " + pokemon.get_name().title()
|
|
name = name.ljust(20)
|
|
if len(rows) < items_per_column:
|
|
rows.append(name)
|
|
else:
|
|
rows[index % items_per_column] += name
|
|
print_list(rows)
|
|
|
|
|
|
def slideshow(filtered, delay, changerFunc):
|
|
pid = os.fork()
|
|
if pid > 0:
|
|
print(f"Starting slideshow with {len(filtered)}, pokemon " +
|
|
f"and a delay of {delay} minutes between pokemon")
|
|
print("Forked process to background with pid",
|
|
pid, "(stored in $POKEMON_TERMINAL_PID)")
|
|
os.environ["POKEMON_TERMINAL_PID"] = str(pid)
|
|
sys.exit(0)
|
|
random.shuffle(filtered)
|
|
queque = iter(filtered)
|
|
while True:
|
|
next_pkmn = next(queque, None)
|
|
if next_pkmn is None:
|
|
random.shuffle(filtered)
|
|
queque = iter(filtered)
|
|
continue
|
|
changerFunc(next_pkmn.get_path())
|
|
time.sleep(delay * 60)
|
|
|
|
|
|
def main(argv):
|
|
"""Entrance to the program."""
|
|
if __name__ != "__main__":
|
|
Filter.filtered_list = [pok for pok in Filter.POKEMON_LIST]
|
|
parser = argparse.ArgumentParser(
|
|
description='Set a pokemon to the current terminal background or '
|
|
'wallpaper',
|
|
epilog='Not setting any filters will get a completly random pokemon')
|
|
filtersGroup = parser.add_argument_group(
|
|
'Filters', 'Arguments used to filter the list of pokemons with '
|
|
'various conditions')
|
|
filtersGroup.add_argument(
|
|
'-n',
|
|
'--name',
|
|
help='Filter by pokemon which name contains NAME',
|
|
action=filters.NameFilter,
|
|
type=str.lower)
|
|
filtersGroup.add_argument(
|
|
'-r',
|
|
'--region',
|
|
help='Filter the pokemons by region',
|
|
action=filters.RegionFilter,
|
|
choices=Database.REGIONS,
|
|
type=str.lower)
|
|
filtersGroup.add_argument(
|
|
'-l',
|
|
'--light',
|
|
help='Filter out the pokemons darker then 0.xx',
|
|
default=0.7,
|
|
const=0.7,
|
|
metavar='0.xx',
|
|
nargs='?',
|
|
type=float,
|
|
action=filters.LightFilter)
|
|
filtersGroup.add_argument(
|
|
'-d',
|
|
'--dark',
|
|
help='Filter out the pokemons lighter then 0.xx',
|
|
default=0.42,
|
|
const=0.42,
|
|
metavar='0.xx',
|
|
nargs='?',
|
|
type=float,
|
|
action=filters.DarkFilter)
|
|
filtersGroup.add_argument(
|
|
'-t',
|
|
'--type',
|
|
help='Filter the pokemons by type.',
|
|
action=filters.TypeFilter,
|
|
choices=Database.POKEMON_TYPES,
|
|
type=str.lower)
|
|
filtersGroup.add_argument(
|
|
'-ne',
|
|
'--no-extras',
|
|
help='Excludes extra pokemons',
|
|
nargs=0,
|
|
action=filters.NonExtrasFilter)
|
|
filtersGroup.add_argument(
|
|
'-e',
|
|
'--extras',
|
|
help='Excludes all non-extra pokemons',
|
|
nargs=0,
|
|
action=filters.ExtrasFilter)
|
|
|
|
miscGroup = parser.add_argument_group("Misc")
|
|
miscGroup.add_argument(
|
|
'-ss',
|
|
'--slideshow',
|
|
help='Instead of simply choosing a random pokemon ' +
|
|
'from the filtered list, starts a slideshow (with X minutes ' +
|
|
'of delay between pokemon) in the background with the ' +
|
|
'pokemon that matched the filters',
|
|
default=argparse.SUPPRESS, type=float, metavar='X')
|
|
miscGroup.add_argument(
|
|
'-w',
|
|
'--wallpaper',
|
|
help='Changes the desktop wallpapper instead of the terminal '
|
|
'background',
|
|
action='store_true')
|
|
miscGroup.add_argument(
|
|
'-v', '--verbose', help='Enables verbose output', action='store_true')
|
|
miscGroup.add_argument(
|
|
'-dr',
|
|
'--dry-run',
|
|
help='Implies -v and doesn\'t actually changes either wallpapper '
|
|
'or background after the pokemon has been chosen',
|
|
action='store_true')
|
|
either = parser.add_mutually_exclusive_group()
|
|
either.add_argument(
|
|
'-c',
|
|
'--clear',
|
|
help='Clears the current pokemon from terminal '
|
|
'background and quits.',
|
|
action='store_true')
|
|
either.add_argument(
|
|
'id',
|
|
help='Specify the desired pokemon ID',
|
|
nargs='?',
|
|
default=0,
|
|
type=int)
|
|
options = parser.parse_args(argv)
|
|
|
|
if options.clear:
|
|
scripter.clear_terminal()
|
|
return
|
|
|
|
size = len(Filter.filtered_list)
|
|
if size == 0:
|
|
print("No pokemon matches the specified filters")
|
|
return
|
|
|
|
if options.id <= 0:
|
|
target = random.choice(Filter.filtered_list)
|
|
else:
|
|
options.id -= 1
|
|
if len(Filter.POKEMON_LIST) > options.id:
|
|
if len(sys.argv) > 2:
|
|
print("ID has been specified, ignoring all filters.")
|
|
size = 1
|
|
target = Filter.POKEMON_LIST[options.id]
|
|
Filter.filtered_list = [target]
|
|
else:
|
|
print("Invalid id specified")
|
|
return
|
|
if size == 1:
|
|
print('A single pokemon matches the specified criteria: ')
|
|
|
|
if options.dry_run:
|
|
options.verbose = True
|
|
if options.verbose:
|
|
if size > Database.MAX_ID:
|
|
print('No pokemon has been filtered...')
|
|
else:
|
|
# Print the list of filtered pokemon
|
|
[
|
|
print("#%s - %s" % (pkmn.get_id(), pkmn.get_name().title()))
|
|
for pkmn in Filter.filtered_list
|
|
]
|
|
print("Total of %d pokemon matched the filters. Chose %s" %
|
|
(size, target.get_name().title()))
|
|
|
|
if options.dry_run:
|
|
print("Dry run, exiting.")
|
|
return
|
|
|
|
if options.slideshow is not None and options.id <= 0 and size > 1:
|
|
targFunc = scripter.change_wallpaper if options.wallpaper else scripter.change_terminal
|
|
slideshow(Filter.filtered_list, options.slideshow, targFunc)
|
|
|
|
if options.wallpaper:
|
|
scripter.change_wallpaper(target.get_path())
|
|
else:
|
|
scripter.change_terminal(target.get_path())
|
|
|
|
|
|
if __name__ == "__main__":
|
|
# Entrance to the program.
|
|
main(sys.argv[1:])
|