1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
import curses
import json
import os
import getpass
import sys
from .connection import Connection
from .client import Client
from .display import Display
defaultAdresses = {
"abstract": "asciifarm",
"unix": "asciifarm.socket",
"inet": "localhost:9021",
}
def main(name, socketType, address, keybindings, characters, colours=False):
connection = Connection(socketType)
try:
connection.connect(address)
except ConnectionRefusedError:
print("ERROR: Could not connect to server.\nAre you sure that the server is running and that you're connecting to the right address?", file=sys.stderr)
return
caught_ctrl_c = False
def start(stdscr):
display = Display(stdscr, characters, colours)
client = Client(stdscr, display, name, connection, keybindings)
nonlocal caught_ctrl_c
try:
client.start()
except KeyboardInterrupt:
caught_ctrl_c = True
curses.wrapper(start)
if caught_ctrl_c:
print('^C caught, goodbye!')
|