kete: Read tablet orientation from settings.ini
This commit is contained in:
parent
7cd269b092
commit
b10ede69c4
|
@ -27,6 +27,7 @@ import threading
|
||||||
import time
|
import time
|
||||||
import svgwrite
|
import svgwrite
|
||||||
import xdg.BaseDirectory
|
import xdg.BaseDirectory
|
||||||
|
import configparser
|
||||||
|
|
||||||
|
|
||||||
CONFIG_PATH = os.path.join(xdg.BaseDirectory.xdg_data_home, 'tuhi-kete')
|
CONFIG_PATH = os.path.join(xdg.BaseDirectory.xdg_data_home, 'tuhi-kete')
|
||||||
|
@ -543,13 +544,18 @@ class Listener(Worker):
|
||||||
|
|
||||||
|
|
||||||
class Fetcher(Worker):
|
class Fetcher(Worker):
|
||||||
def __init__(self, manager, args):
|
def __init__(self, manager, args, config):
|
||||||
super(Fetcher, self).__init__(manager)
|
super(Fetcher, self).__init__(manager)
|
||||||
self.device = None
|
self.device = None
|
||||||
self.timestamps = None
|
self.timestamps = None
|
||||||
address = args.address
|
address = args.address
|
||||||
index = args.index
|
index = args.index
|
||||||
|
|
||||||
|
if not address in config:
|
||||||
|
config[address] = {}
|
||||||
|
|
||||||
|
self.orientation = config[address].get('Orientation', 'Landscape')
|
||||||
|
|
||||||
for d in manager.devices:
|
for d in manager.devices:
|
||||||
if d.address == address:
|
if d.address == address:
|
||||||
self.device = d
|
self.device = d
|
||||||
|
@ -591,7 +597,12 @@ class Fetcher(Worker):
|
||||||
# Original diemnsions are too big for SVG Standard
|
# Original diemnsions are too big for SVG Standard
|
||||||
# so we nomalize them
|
# so we nomalize them
|
||||||
width, height = dimensions[0]/100, dimensions[1]/100
|
width, height = dimensions[0]/100, dimensions[1]/100
|
||||||
|
|
||||||
|
if self.orientation in ['Portrait', 'Reverse-Portrait']:
|
||||||
|
svg = svgwrite.Drawing(filename=filename, size=(height, width))
|
||||||
|
else:
|
||||||
svg = svgwrite.Drawing(filename=filename, size=(width, height))
|
svg = svgwrite.Drawing(filename=filename, size=(width, height))
|
||||||
|
|
||||||
g = svgwrite.container.Group(id='layer0')
|
g = svgwrite.container.Group(id='layer0')
|
||||||
for s in js['strokes']:
|
for s in js['strokes']:
|
||||||
svgpoints = []
|
svgpoints = []
|
||||||
|
@ -600,6 +611,14 @@ class Fetcher(Worker):
|
||||||
x, y = p['position']
|
x, y = p['position']
|
||||||
# Normalize coordinates too
|
# Normalize coordinates too
|
||||||
x, y = x/100, y/100
|
x, y = x/100, y/100
|
||||||
|
|
||||||
|
if self.orientation == 'Reverse-Portrait':
|
||||||
|
x, y = y, width - x
|
||||||
|
elif self.orientation == 'Portrait':
|
||||||
|
x, y = height - y, x
|
||||||
|
elif self.orientation == 'Reverse-Landscape':
|
||||||
|
x, y = width - x, height - y
|
||||||
|
|
||||||
svgpoints.append((mode, x, y))
|
svgpoints.append((mode, x, y))
|
||||||
mode = 'L'
|
mode = 'L'
|
||||||
path = svgwrite.path.Path(
|
path = svgwrite.path.Path(
|
||||||
|
@ -716,6 +735,19 @@ class TuhiKeteShell(cmd.Cmd):
|
||||||
except FileExistsError:
|
except FileExistsError:
|
||||||
pass
|
pass
|
||||||
|
|
||||||
|
self._config_file = os.path.join(CONFIG_PATH, 'settings.ini')
|
||||||
|
self._config = configparser.ConfigParser()
|
||||||
|
|
||||||
|
if os.path.exists(self._config_file):
|
||||||
|
self._config.read(self._config_file)
|
||||||
|
else:
|
||||||
|
# Populate config file with a configuration example
|
||||||
|
self._config['11:22:33:44:55:66'] = {
|
||||||
|
'Orientation': 'Landscape'
|
||||||
|
}
|
||||||
|
with open(self._config_file, 'w') as f:
|
||||||
|
self._config.write(f)
|
||||||
|
|
||||||
self._history_file = os.path.join(CONFIG_PATH, 'histfile')
|
self._history_file = os.path.join(CONFIG_PATH, 'histfile')
|
||||||
|
|
||||||
try:
|
try:
|
||||||
|
@ -984,7 +1016,7 @@ class TuhiKeteShell(cmd.Cmd):
|
||||||
|
|
||||||
# we do not call start_worker() as we don't need to retain the
|
# we do not call start_worker() as we don't need to retain the
|
||||||
# worker
|
# worker
|
||||||
worker = Fetcher(self._manager, parsed_args)
|
worker = Fetcher(self._manager, parsed_args, self._config)
|
||||||
worker.run()
|
worker.run()
|
||||||
|
|
||||||
def help_search(self):
|
def help_search(self):
|
||||||
|
|
Loading…
Reference in New Issue