2021-04-08 14:57:31 -04:00
|
|
|
import RNS
|
|
|
|
import importlib
|
2021-04-09 16:07:38 -04:00
|
|
|
import time
|
|
|
|
|
2021-05-04 14:53:03 -04:00
|
|
|
import nomadnet
|
2021-05-04 05:08:31 -04:00
|
|
|
from nomadnet.ui.textui import *
|
2021-05-04 14:53:03 -04:00
|
|
|
from nomadnet import NomadNetworkApp
|
|
|
|
|
|
|
|
COLORMODE_MONO = 1
|
|
|
|
COLORMODE_16 = 16
|
|
|
|
COLORMODE_88 = 88
|
|
|
|
COLORMODE_256 = 256
|
|
|
|
COLORMODE_TRUE = 2**24
|
|
|
|
THEME_DARK = 0x01
|
|
|
|
THEME_LIGHT = 0x02
|
|
|
|
|
|
|
|
THEMES = {
|
|
|
|
THEME_DARK: [
|
|
|
|
# Style name # 16-color style # Monochrome style # 88, 256 and true-color style
|
|
|
|
('heading', 'light gray,underline', 'default', 'underline', 'g93,underline', 'default'),
|
|
|
|
('menubar', 'black', 'light gray', 'standout', '#111', '#bbb'),
|
|
|
|
('shortcutbar', 'black', 'light gray', 'standout', '#111', '#bbb'),
|
|
|
|
('body_text', 'white', 'default', 'default', '#0a0', 'default'),
|
|
|
|
('buttons', 'light green,bold', 'default', 'default', '#00a533', 'default'),
|
|
|
|
('msg_editor', 'black', 'light cyan', 'standout', '#111', '#0bb'),
|
|
|
|
("msg_header_ok", 'black', 'light green', 'standout', 'black', '#6b2',),
|
|
|
|
("msg_header_caution", 'black', 'yellow', 'standout', 'black', '#fd3',),
|
|
|
|
("list_focus", "black", "light cyan", "standout", "#111", "#0bb"),
|
|
|
|
]
|
|
|
|
}
|
2021-04-08 14:57:31 -04:00
|
|
|
|
|
|
|
class TextUI:
|
|
|
|
|
|
|
|
def __init__(self):
|
|
|
|
self.app = NomadNetworkApp.get_shared_instance()
|
2021-05-12 08:02:44 -04:00
|
|
|
self.app.ui = self
|
2021-04-08 14:57:31 -04:00
|
|
|
self.loop = None
|
|
|
|
|
|
|
|
if importlib.util.find_spec("urwid") != None:
|
|
|
|
import urwid
|
|
|
|
else:
|
|
|
|
RNS.log("The text-mode user interface requires Urwid to be installed on your system.", RNS.LOG_ERROR)
|
|
|
|
RNS.log("You can install it with the command: pip3 install urwid", RNS.LOG_ERROR)
|
|
|
|
nomadnet.panic()
|
|
|
|
|
2021-04-09 16:07:38 -04:00
|
|
|
urwid.set_encoding("UTF-8")
|
|
|
|
|
|
|
|
intro_timeout = self.app.config["textui"]["intro_time"]
|
|
|
|
colormode = self.app.config["textui"]["colormode"]
|
|
|
|
theme = self.app.config["textui"]["theme"]
|
|
|
|
|
2021-05-04 14:53:03 -04:00
|
|
|
palette = THEMES[theme]
|
2021-04-09 16:07:38 -04:00
|
|
|
|
|
|
|
self.screen = urwid.raw_display.Screen()
|
|
|
|
self.screen.register_palette(palette)
|
|
|
|
|
2021-05-04 14:53:03 -04:00
|
|
|
self.main_display = Main.MainDisplay(self, self.app)
|
2021-04-09 16:07:38 -04:00
|
|
|
|
|
|
|
if intro_timeout > 0:
|
2021-05-04 14:53:03 -04:00
|
|
|
self.intro_display = Extras.IntroDisplay(self.app)
|
2021-04-09 16:07:38 -04:00
|
|
|
initial_widget = self.intro_display.widget
|
|
|
|
else:
|
|
|
|
initial_widget = self.main_display.widget
|
|
|
|
|
|
|
|
self.loop = urwid.MainLoop(initial_widget, screen=self.screen)
|
|
|
|
|
|
|
|
if intro_timeout > 0:
|
|
|
|
self.loop.set_alarm_in(intro_timeout, self.display_main)
|
|
|
|
|
|
|
|
self.set_colormode(colormode)
|
|
|
|
|
|
|
|
self.loop.run()
|
|
|
|
|
|
|
|
def set_colormode(self, colormode):
|
|
|
|
self.screen.set_terminal_properties(colormode)
|
|
|
|
self.screen.reset_default_terminal_palette()
|
|
|
|
|
|
|
|
def display_main(self, loop, user_data):
|
|
|
|
self.loop.widget = self.main_display.widget
|