2017-06-06 17:13:26 +00:00
|
|
|
#!/usr/bin/env python3
|
2017-04-28 07:46:39 +00:00
|
|
|
|
|
|
|
# The main module that brings everything together.
|
|
|
|
|
|
|
|
from sys import argv
|
2017-04-29 05:57:47 +00:00
|
|
|
from database import Database
|
2017-04-28 19:51:42 +00:00
|
|
|
import scripter
|
2017-04-28 23:17:44 +00:00
|
|
|
import sys
|
|
|
|
import time
|
2017-04-28 07:46:39 +00:00
|
|
|
|
|
|
|
|
|
|
|
def print_list(list_of_items):
|
|
|
|
# Print all the items in a list. Used for printing each Pokemon from a particular region.
|
|
|
|
for item in list_of_items:
|
|
|
|
print(item)
|
|
|
|
|
|
|
|
|
|
|
|
def print_columns(items):
|
|
|
|
# Print a list as multiple columns instead of just one.
|
|
|
|
rows = []
|
2017-04-28 08:02:50 +00:00
|
|
|
items_per_column = int(len(items) / 4) + 1
|
2017-04-28 07:46:39 +00:00
|
|
|
|
|
|
|
for index in range(0, len(items)):
|
|
|
|
pokemon = items[index]
|
|
|
|
|
|
|
|
if not pokemon.is_extra():
|
2017-04-28 07:55:40 +00:00
|
|
|
name = pokemon.get_id() + " " + str(pokemon.get_name()).capitalize()
|
2017-04-28 07:46:39 +00:00
|
|
|
else:
|
|
|
|
name = "--- " + pokemon.get_name()
|
|
|
|
|
|
|
|
name = name.ljust(20)
|
|
|
|
|
|
|
|
if len(rows) < items_per_column:
|
|
|
|
rows.append(name)
|
|
|
|
else:
|
|
|
|
rows[index % items_per_column] += name
|
|
|
|
|
|
|
|
print_list(rows)
|
|
|
|
|
|
|
|
|
|
|
|
def prefix_search(db, arg):
|
|
|
|
# Find all Pokemon in database, db, with the prefix, arg.
|
2017-04-28 19:51:42 +00:00
|
|
|
result = db.names_with_prefix(arg)
|
2017-04-28 07:46:39 +00:00
|
|
|
if len(result) == 0:
|
|
|
|
print("No Pokemon found with prefix '" + arg + "'.")
|
|
|
|
else:
|
|
|
|
print_columns(result)
|
|
|
|
|
|
|
|
|
|
|
|
def print_extra(db):
|
|
|
|
# Print all the 'Extra' Pokemon from the 'Extra' folder.
|
|
|
|
result = db.get_extra()
|
|
|
|
if len(result) == 0:
|
|
|
|
print("No Pokemon were found in Images/Extra.")
|
|
|
|
else:
|
|
|
|
print_columns(result)
|
|
|
|
|
|
|
|
|
|
|
|
def print_usage():
|
|
|
|
# Print the instructions of usage.
|
|
|
|
print(
|
|
|
|
'''
|
|
|
|
Usage:
|
|
|
|
pokemon [parameter]
|
|
|
|
|
|
|
|
Parameters:
|
2017-04-28 08:02:50 +00:00
|
|
|
[name] - Change the terminal background to the specified Pokemon.
|
|
|
|
[index] - Change the terminal background to a Pokemon by its index.
|
|
|
|
[region] - List all the Pokemon of the specified region.
|
|
|
|
[one letter] - List all Pokemon who's names begin with a particular letter.
|
|
|
|
[two letters] - List all Pokemon who's names begin with those two letters.
|
2017-04-28 07:46:39 +00:00
|
|
|
|
|
|
|
Other Parameters:
|
2017-06-12 00:05:19 +00:00
|
|
|
pokemon all - List all the Pokemon supported.
|
|
|
|
pokemon regions - List all the available regions.
|
|
|
|
pokemon extra - List all the Pokemon from the 'Extra' folder.
|
|
|
|
pokemon random - Change the terminal background to a random Pokemon.
|
|
|
|
pokemon random-kanto - Change the terminal background to a random Pokemon from the specified region.
|
2017-06-14 04:07:50 +00:00
|
|
|
pokemon slideshow [time] - Iterate through each Pokemon. Optional time (in seconds) between Pokemon.
|
|
|
|
pokemon slideshow-kanto [time] - Iterate through each Pokemon in the specified region. Optional time (in seconds) between Pokemon.
|
2017-06-18 04:31:05 +00:00
|
|
|
pokemon clear | disable | off - Clear the Pokemon in the terminal.
|
2017-06-12 00:05:19 +00:00
|
|
|
pokemon help - Display this menu.
|
2017-06-18 04:07:33 +00:00
|
|
|
|
|
|
|
Wallpaper Parameters:
|
|
|
|
pokemon _pikachu - Change the wallpaper to the specified Pokemon.
|
|
|
|
pokemon _random - Change the wallpaper to a random Pokemon.
|
|
|
|
pokemon _random-kanto - Change the wallpaper to a random Pokemon from the specified region.
|
2017-06-18 04:31:05 +00:00
|
|
|
|
|
|
|
Search System Information:
|
|
|
|
Any input containing 3 or more characters triggers the internal search system. Examples:
|
|
|
|
"pokemon pika" changes the terminal background to Pikachu.
|
|
|
|
"pokemon dos" changes the terminal background to Gyarados.
|
2017-04-28 07:46:39 +00:00
|
|
|
''')
|
|
|
|
|
|
|
|
|
2017-06-12 00:05:19 +00:00
|
|
|
def slideshow(db, start, end, seconds="0.25"):
|
2017-04-28 23:17:44 +00:00
|
|
|
# Show each Pokemon in order, one by one.
|
|
|
|
try:
|
|
|
|
for x in range(start, end):
|
|
|
|
pokemon = db.get_pokemon(x)
|
|
|
|
scripter.change_terminal(pokemon)
|
2017-06-12 00:05:19 +00:00
|
|
|
time.sleep(float(seconds))
|
2017-04-28 23:17:44 +00:00
|
|
|
except KeyboardInterrupt:
|
|
|
|
print("Program was terminated.")
|
|
|
|
sys.exit()
|
|
|
|
|
|
|
|
|
2017-04-28 22:26:00 +00:00
|
|
|
def change_terminal_background(db, arg):
|
|
|
|
# Change the terminal background to the specified Pokemon, if it exists.
|
|
|
|
if arg in db:
|
|
|
|
pokemon = db.get_pokemon(arg)
|
|
|
|
scripter.change_terminal(pokemon)
|
2017-04-29 05:57:47 +00:00
|
|
|
else: # If not found in the database, try to give suggestions.
|
|
|
|
suggestions = db.names_with_infix(arg)
|
|
|
|
if len(suggestions) == 0:
|
2017-05-09 13:33:24 +00:00
|
|
|
print("No such Pokemon was found and no suggestions are available.")
|
2017-04-29 05:57:47 +00:00
|
|
|
elif len(suggestions) == 1:
|
|
|
|
scripter.change_terminal(suggestions[0])
|
|
|
|
print("Did you mean " + suggestions[0].get_name().capitalize() + "?")
|
|
|
|
scripter.change_terminal(suggestions[0])
|
|
|
|
else:
|
|
|
|
print("Did you mean " + suggestions[0].get_name().capitalize() + "?")
|
|
|
|
print("Other suggestions:")
|
|
|
|
print_columns(suggestions[1:])
|
|
|
|
scripter.change_terminal(suggestions[0])
|
2017-04-28 22:26:00 +00:00
|
|
|
|
|
|
|
|
|
|
|
def change_wallpaper(db, arg):
|
|
|
|
# Change the wallpaper to the specified Pokemon, if it exists.
|
|
|
|
if arg in db:
|
|
|
|
pokemon = db.get_pokemon(arg)
|
|
|
|
scripter.change_wallpaper(pokemon)
|
2017-04-29 05:57:47 +00:00
|
|
|
else: # If not found in the database, try to give suggestions.
|
|
|
|
suggestions = db.names_with_infix(arg)
|
|
|
|
if len(suggestions) == 0:
|
2017-05-09 13:13:35 +00:00
|
|
|
print("No such Pokemon was found and no suggestions are available.")
|
2017-04-29 05:57:47 +00:00
|
|
|
elif len(suggestions) == 1:
|
2017-04-29 06:08:46 +00:00
|
|
|
scripter.change_wallpaper(suggestions[0])
|
2017-04-29 05:57:47 +00:00
|
|
|
print("Did you mean " + suggestions[0].get_name().capitalize() + "?")
|
|
|
|
scripter.change_wallpaper(suggestions[0])
|
|
|
|
else:
|
2017-04-29 06:20:17 +00:00
|
|
|
print("Result: " + arg)
|
2017-04-29 05:57:47 +00:00
|
|
|
print("Did you mean " + suggestions[0].get_name().capitalize() + "?")
|
|
|
|
print("Other suggestions:")
|
|
|
|
print_columns(suggestions[1:])
|
|
|
|
scripter.change_wallpaper(suggestions[0])
|
2017-04-28 22:26:00 +00:00
|
|
|
|
2017-06-18 04:07:33 +00:00
|
|
|
|
2017-06-12 00:05:19 +00:00
|
|
|
def multiple_argument_handler(arg, time):
|
|
|
|
db = Database()
|
2017-06-14 04:07:50 +00:00
|
|
|
|
|
|
|
if arg.startswith("slideshow"):
|
|
|
|
try:
|
|
|
|
float(time)
|
|
|
|
if arg == "slideshow":
|
|
|
|
slideshow(db, 1, 494, time)
|
|
|
|
elif arg == "slideshow-kanto":
|
|
|
|
slideshow(db, 1, 152, time)
|
|
|
|
elif arg == "slideshow-johto":
|
|
|
|
slideshow(db, 152, 252, time)
|
|
|
|
elif arg == "slideshow-hoenn":
|
|
|
|
slideshow(db, 252, 387, time)
|
|
|
|
elif arg == "slideshow-sinnoh":
|
|
|
|
slideshow(db, 387, 494, time)
|
|
|
|
else:
|
|
|
|
print("Invalid slideshow command specified."
|
|
|
|
"\nType \"help\" to see all the commands.")
|
|
|
|
except ValueError:
|
|
|
|
print("The slideshow time needs to be a positive number"
|
|
|
|
"\nType \"help\" to see all the commands.")
|
|
|
|
else:
|
|
|
|
print("Invalid command specified."
|
|
|
|
"\nType \"help\" to see all the commands.")
|
2017-04-28 22:26:00 +00:00
|
|
|
|
2017-06-18 04:07:33 +00:00
|
|
|
|
2017-04-28 07:46:39 +00:00
|
|
|
def single_argument_handler(arg):
|
|
|
|
# Handle the logic for when there is only one command line parameter inputted.
|
|
|
|
db = Database()
|
2017-04-29 06:20:17 +00:00
|
|
|
|
|
|
|
# If there is an escape code, then change the wallpaper, not the terminal.
|
|
|
|
if str(arg).startswith("_"):
|
|
|
|
escape_code = True
|
|
|
|
arg = arg[1:]
|
|
|
|
else:
|
|
|
|
escape_code = False
|
|
|
|
|
2017-04-28 07:46:39 +00:00
|
|
|
if len(arg) < 3 and arg.isalpha():
|
|
|
|
prefix_search(db, arg)
|
2017-04-29 05:57:47 +00:00
|
|
|
elif arg == "extra":
|
2017-04-28 07:46:39 +00:00
|
|
|
print_extra(db)
|
|
|
|
elif arg == "regions":
|
|
|
|
print_list(db.get_regions())
|
2017-06-18 04:31:05 +00:00
|
|
|
elif arg == "help" or arg.startswith("-h"):
|
2017-04-28 07:46:39 +00:00
|
|
|
print_usage()
|
|
|
|
elif arg == "kanto":
|
|
|
|
print_columns(db.get_kanto())
|
|
|
|
elif arg == "johto":
|
|
|
|
print_columns(db.get_johto())
|
|
|
|
elif arg == "hoenn":
|
|
|
|
print_columns(db.get_hoenn())
|
|
|
|
elif arg == "sinnoh":
|
|
|
|
print_columns(db.get_sinnoh())
|
2017-04-29 05:57:47 +00:00
|
|
|
elif arg == "all":
|
2017-04-28 07:46:39 +00:00
|
|
|
print_columns(db.get_all())
|
2017-06-18 04:31:05 +00:00
|
|
|
elif arg == "clear" or arg == "disable" or arg == "off":
|
2017-06-11 19:30:23 +00:00
|
|
|
scripter.clear_terminal()
|
2017-04-29 06:20:17 +00:00
|
|
|
elif arg == "random" and escape_code:
|
|
|
|
change_wallpaper(db, db.get_random().get_name())
|
2017-06-07 09:03:52 +00:00
|
|
|
elif arg == "random-kanto" and escape_code:
|
|
|
|
change_wallpaper(db, db.get_random_from_region("kanto").get_name())
|
|
|
|
elif arg == "random-johto" and escape_code:
|
|
|
|
change_wallpaper(db, db.get_random_from_region("johto").get_name())
|
|
|
|
elif arg == "random-hoenn" and escape_code:
|
|
|
|
change_wallpaper(db, db.get_random_from_region("hoenn").get_name())
|
|
|
|
elif arg == "random-sinnoh" and escape_code:
|
|
|
|
change_wallpaper(db, db.get_random_from_region("sinnoh").get_name())
|
2017-04-29 05:57:47 +00:00
|
|
|
elif arg == "random":
|
2017-04-28 22:26:00 +00:00
|
|
|
change_terminal_background(db, db.get_random().get_name())
|
2017-06-07 09:03:52 +00:00
|
|
|
elif arg == "random-kanto":
|
|
|
|
change_terminal_background(db, db.get_random_from_region("kanto").get_name())
|
|
|
|
elif arg == "random-johto":
|
|
|
|
change_terminal_background(db, db.get_random_from_region("johto").get_name())
|
|
|
|
elif arg == "random-hoenn":
|
|
|
|
change_terminal_background(db, db.get_random_from_region("hoenn").get_name())
|
|
|
|
elif arg == "random-sinnoh":
|
|
|
|
change_terminal_background(db, db.get_random_from_region("sinnoh").get_name())
|
2017-04-28 23:17:44 +00:00
|
|
|
elif arg == "slideshow":
|
|
|
|
slideshow(db, 1, 494)
|
|
|
|
elif arg == "slideshow-kanto":
|
|
|
|
slideshow(db, 1, 152)
|
|
|
|
elif arg == "slideshow-johto":
|
|
|
|
slideshow(db, 152, 252)
|
|
|
|
elif arg == "slideshow-hoenn":
|
|
|
|
slideshow(db, 252, 387)
|
|
|
|
elif arg == "slideshow-sinnoh":
|
|
|
|
slideshow(db, 387, 494)
|
2017-04-29 05:57:47 +00:00
|
|
|
elif arg == "?":
|
2017-06-18 04:07:33 +00:00
|
|
|
print("This function is deprecated.")
|
2017-04-29 06:20:17 +00:00
|
|
|
elif escape_code:
|
|
|
|
change_wallpaper(db, arg)
|
2017-04-28 19:51:42 +00:00
|
|
|
else:
|
2017-04-28 22:26:00 +00:00
|
|
|
change_terminal_background(db, arg)
|
|
|
|
|
2017-04-28 07:46:39 +00:00
|
|
|
|
|
|
|
if __name__ == "__main__":
|
|
|
|
# Entrance to the program.
|
|
|
|
if len(argv) == 1:
|
2017-04-29 05:57:47 +00:00
|
|
|
print("No command line arguments specified."
|
|
|
|
"\nTry typing in a Pokemon name or number."
|
|
|
|
"\nOr type \"help\" to see all the commands.")
|
2017-04-28 07:46:39 +00:00
|
|
|
elif len(argv) == 2:
|
2017-04-28 07:55:40 +00:00
|
|
|
single_argument_handler(argv[1].lower())
|
2017-06-14 04:07:50 +00:00
|
|
|
elif len(argv) == 3:
|
2017-06-12 00:05:19 +00:00
|
|
|
multiple_argument_handler(argv[1].lower(), argv[2])
|
2017-04-28 07:46:39 +00:00
|
|
|
else:
|
2017-06-14 04:07:50 +00:00
|
|
|
print("Invalid number of arguments."
|
|
|
|
"\nTry \"help\" to see all the commands.")
|