50 lines
1.3 KiB
Python
50 lines
1.3 KiB
Python
|
|
# -*- coding: utf-8 -*-
|
|
import os
|
|
|
|
import sys
|
|
|
|
from db import Session
|
|
from text_interface import faq_commands, restart_commands
|
|
from text_interface.buymenu import BuyMenu
|
|
from text_interface.faq import FAQMenu
|
|
from text_interface.helpermenus import Menu
|
|
|
|
|
|
def restart():
|
|
# Does not work if the script is not executable, or if it was
|
|
# started by searching $PATH.
|
|
os.execv(sys.argv[0], sys.argv)
|
|
|
|
|
|
class MainMenu(Menu):
|
|
def special_input_choice(self, in_str):
|
|
mv = in_str.split()
|
|
if len(mv) == 2 and mv[0].isdigit():
|
|
num = int(mv[0])
|
|
item_name = mv[1]
|
|
else:
|
|
num = 1
|
|
item_name = in_str
|
|
buy_menu = BuyMenu(Session())
|
|
thing = buy_menu.search_for_thing(item_name, find_hidden_products=False)
|
|
if thing:
|
|
buy_menu.execute(initial_contents=[(thing, num)])
|
|
self.show_context()
|
|
return True
|
|
return False
|
|
|
|
def special_input_options(self, result):
|
|
if result in faq_commands:
|
|
FAQMenu().execute()
|
|
return True
|
|
if result in restart_commands:
|
|
if self.confirm('Restart Dibbler?'):
|
|
restart()
|
|
pass
|
|
return True
|
|
return False
|
|
|
|
def invalid_menu_choice(self, in_str):
|
|
print self.show_context()
|