First pass at touch support.

touch
Peter Hinch 2022-07-19 18:31:01 +01:00
rodzic 17554ccf7c
commit 16b73b7502
2 zmienionych plików z 168 dodań i 91 usunięć

Wyświetl plik

@ -15,6 +15,7 @@ from gui.core.colors import *
from hardware_setup import ssd
from gui.primitives import Pushbutton
# Globally available singleton objects
display = None # Singleton instance
ssd = None
@ -26,8 +27,11 @@ __version__ = (0, 1, 6)
# Null function
dolittle = lambda *_: None
async def _g():
pass
type_coro = type(_g())
# Navigation destinations
@ -36,23 +40,25 @@ _NEXT = const(1)
_PREV = const(2)
_LAST = const(3)
def quiet():
global _vb
_vb = False
# Input abstracts input from 2-5 pushbuttons or 3 buttons + encoder. Handles
# transitions between modes (normal, precision, adjustment)
# BTN class instantiates a push button (may be other than a switch).
class Input:
def __init__(self, nxt, sel, prev, incr, decr, encoder):
def __init__(self, nxt, sel, prev, incr, decr, encoder, BTN):
self._encoder = encoder # Encoder in use
self._precision = False # Precision mode
self._adj = False # Adjustment mode
# Count buttons
self._nb = sum(1 for x in (nxt, sel, prev, incr, decr) if x is not None)
# Mandatory buttons
self._next = Pushbutton(nxt)
self._sel = Pushbutton(sel, suppress=True)
self._next = BTN(nxt)
self._sel = BTN(sel, suppress=True)
# Call current screen bound method
self._next.press_func(Screen.ctrl_move, (_NEXT,))
self._sel.release_func(Screen.sel_ctrl)
@ -62,22 +68,23 @@ class Input:
self._sel.double_func(self.adj_mode) # Double click toggles adjust
# Optional buttons
if prev is not None:
self._prev = Pushbutton(prev)
self._prev = BTN(prev)
self._prev.press_func(Screen.ctrl_move, (_PREV,))
if encoder:
_vb and print('Using encoder.')
_vb and print("Using encoder.")
if incr is None or decr is None:
raise ValueError('Must specify pins for encoder.')
raise ValueError("Must specify pins for encoder.")
from gui.primitives.encoder import Encoder
self._enc = Encoder(incr, decr, div=encoder, callback=Screen.adjust)
else:
_vb and print('Using {:d} switches.'.format(self._nb))
_vb and print("Using {:d} switches.".format(self._nb))
# incr and decr methods get the button as an arg.
if incr is not None:
sup = Pushbutton(incr)
sup = BTN(incr)
sup.press_func(Screen.adjust, (sup, 1))
if decr is not None:
sdn = Pushbutton(decr)
sdn = BTN(decr)
sdn.press_func(Screen.adjust, (sdn, -1))
def precision(self, val): # Also called by Screen.ctrl_move to cancel mode
@ -111,14 +118,21 @@ class Input:
def is_adjust(self):
return self._adj
# Normal way to populate the global display instance
def Display(objssd, nxt, sel, prev=None, incr=None, decr=None, encoder=False):
ipdev = Input(nxt, sel, prev, incr, decr, encoder)
def Display(objssd, nxt, sel, prev=None, incr=None, decr=None,
encoder=False, touch=False):
if touch:
from gui.primitives import Touchbutton
ipdev = Input(nxt, sel, prev, incr, decr, encoder, Touchbutton)
else:
ipdev = Input(nxt, sel, prev, incr, decr, encoder, Pushbutton)
return DisplayIP(objssd, ipdev)
# Wrapper for ssd poviding framebuf compatible methods with abstract input device
class DisplayIP:
def __init__(self, objssd, ipdev):
global display, ssd
self.ipdev = ipdev
@ -148,8 +162,11 @@ class DisplayIP:
# Greying out has only one option given limitation of 4-bit display driver
# It would be possible to do better with RGB565 but would need inverse transformation
# to (r, g, b), scale and re-convert to integer.
def _getcolor(self, color): # Takes in an integer color, bit size dependent on driver
return color_map[GREY_OUT] if self._is_grey and color != color_map[BG] else color
def _getcolor(self, color):
# Takes in an integer color, bit size dependent on driver
return (
color_map[GREY_OUT] if self._is_grey and color != color_map[BG] else color
)
def usegrey(self, val): # display.usegrey(True) sets greyed-out
self._is_grey = val
@ -188,12 +205,12 @@ class DisplayIP:
ssd.pixel(x0 + x, y0 - y, color)
ssd.pixel(x0 - x, y0 - y, color)
e2 = err
if (e2 <= y):
if e2 <= y:
y += 1
err += y * 2 + 1
if (-x == y and e2 <= x):
if -x == y and e2 <= x:
e2 = 0
if (e2 > x):
if e2 > x:
x += 1
err += x * 2 + 1
@ -213,12 +230,12 @@ class DisplayIP:
ssd.line(x0 - x, y0 - y, x0 - x, y0 + y, color)
ssd.line(x0 + x, y0 - y, x0 + x, y0 + y, color)
e2 = err
if (e2 <= y):
if e2 <= y:
y += 1
err += y * 2 + 1
if (-x == y and e2 <= x):
if -x == y and e2 <= x:
e2 = 0
if (e2 > x):
if e2 > x:
x += 1
err += x * 2 + 1
@ -306,12 +323,12 @@ class Screen:
if forward:
if isinstance(cls_new_screen, type):
if isinstance(cs_old, Window):
raise ValueError('Windows are modal.')
raise ValueError("Windows are modal.")
new_screen = cls_new_screen(*args, **kwargs)
if not len(new_screen.lstactive):
raise ValueError("Screen has no active widgets.")
else:
raise ValueError('Must pass Screen class or subclass (not instance)')
raise ValueError("Must pass Screen class or subclass (not instance)")
new_screen.parent = cs_old
cs_new = new_screen
else:
@ -346,7 +363,7 @@ class Screen:
# no factor, do_refresh confers no benefit, so use synchronous code.
@classmethod
async def auto_refresh(cls):
arfsh = hasattr(ssd, 'do_refresh') # Refresh can be asynchronous.
arfsh = hasattr(ssd, "do_refresh") # Refresh can be asynchronous.
# By default rfsh_start is permanently set. User code can clear this.
cls.rfsh_start.set()
if arfsh:
@ -378,7 +395,7 @@ class Screen:
def addobject(cls, obj):
cs = cls.current_screen
if cs is None:
raise OSError('You must create a Screen instance')
raise OSError("You must create a Screen instance")
# Populate list of active widgets (i.e. ones that can acquire focus).
if obj.active:
# Append to active list regrdless of disabled state which may
@ -403,7 +420,9 @@ class Screen:
self.width = ssd.width
self.row = 0
self.col = 0
if Screen.current_screen is None and Screen.do_gc: # Initialising class and task
if (
Screen.current_screen is None and Screen.do_gc
): # Initialising class and task
# Here we create singleton tasks
asyncio.create_task(self._garbage_collect())
Screen.current_screen = self
@ -484,7 +503,7 @@ class Screen:
def do_adj(self, button, val):
co = self.get_obj()
if co is not None and hasattr(co, 'do_adj'):
if co is not None and hasattr(co, "do_adj"):
co.do_adj(button, val) # Widget can handle up/down
else:
Screen.current_screen.move(_FIRST if val < 0 else _LAST)
@ -515,9 +534,10 @@ class Screen:
gc.collect()
gc.threshold(gc.mem_free() // 4 + gc.mem_alloc())
n += 1
n &= 0x1f
n &= 0x1F
_vb and (not n) and print("Free RAM", gc.mem_free())
# Very basic window class. Cuts a rectangular hole in a screen on which
# content may be drawn.
class Window(Screen):
@ -535,8 +555,18 @@ class Window(Screen):
def close(): # More intuitive name for popup window
Screen.back()
def __init__(self, row, col, height, width, *, draw_border=True,
bgcolor=None, fgcolor=None, writer=None):
def __init__(
self,
row,
col,
height,
width,
*,
draw_border=True,
bgcolor=None,
fgcolor=None,
writer=None,
):
Screen.__init__(self)
self.row = row
self.col = col
@ -563,12 +593,22 @@ class Window(Screen):
y = self.row
return x, y, x + w, y + h, w, h
# Base class for all displayable objects
class Widget:
def __init__(self, writer, row, col, height, width,
fgcolor, bgcolor, bdcolor,
value=None, active=False):
def __init__(
self,
writer,
row,
col,
height,
width,
fgcolor,
bgcolor,
bdcolor,
value=None,
active=False,
):
self.active = active
# By default widgets cannot be adjusted: no green border in adjust mode
self.adjustable = False
@ -623,7 +663,11 @@ class Widget:
self.args = []
def warning(self):
print('Warning: attempt to create {} outside screen dimensions.'.format(self.__class__.__name__))
print(
"Warning: attempt to create {} outside screen dimensions.".format(
self.__class__.__name__
)
)
def value(self, val=None): # User method to get or set value
if val is not None:
@ -640,10 +684,12 @@ class Widget:
# Some widgets (e.g. Dial) have an associated Label
def text(self, text=None, invert=False, fgcolor=None, bgcolor=None, bdcolor=None):
if hasattr(self, 'label'):
if hasattr(self, "label"):
self.label.value(text, invert, fgcolor, bgcolor, bdcolor)
else:
raise ValueError('Method {}.text does not exist.'.format(self.__class__.__name__))
raise ValueError(
"Method {}.text does not exist.".format(self.__class__.__name__)
)
# Called from subclass prior to populating framebuf with control
def show(self, black=True):
@ -657,7 +703,9 @@ class Widget:
dev = display.usegrey(self._greyed_out)
x = self.col
y = self.row
dev.fill_rect(x, y, self.width, self.height, color_map[BG] if black else self.bgcolor)
dev.fill_rect(
x, y, self.width, self.height, color_map[BG] if black else self.bgcolor
)
return True
# Called by Screen.show(). Draw background and bounding box if required.
@ -672,7 +720,11 @@ class Widget:
# print('border', self, display.ipdev.is_adjust())
if self.has_focus() and not isinstance(self, DummyWidget):
color = color_map[FOCUS]
precision = hasattr(self, 'do_precision') and self.do_precision and display.ipdev.is_precision()
precision = (
hasattr(self, "do_precision")
and self.do_precision
and display.ipdev.is_precision()
)
if precision:
color = self.prcolor
elif display.ipdev.is_adjust() and self.adjustable:
@ -733,20 +785,32 @@ class Widget:
# def do_up(self, button)
# def do_down(self, button)
# A LinearIO widget uses the up and down buttons to vary a float. Such widgets
# have do_up and do_down methods which adjust the control's value in a
# time-dependent manner.
class LinearIO(Widget):
def __init__(self, writer, row, col, height, width,
fgcolor, bgcolor, bdcolor,
value=None, active=True, prcolor=False,
min_delta=0.01, max_delta=0.1):
def __init__(
self,
writer,
row,
col,
height,
width,
fgcolor,
bgcolor,
bdcolor,
value=None,
active=True,
prcolor=False,
min_delta=0.01,
max_delta=0.1,
):
self.min_delta = min_delta
self.max_delta = max_delta
super().__init__(writer, row, col, height, width,
fgcolor, bgcolor, bdcolor,
value, active)
super().__init__(
writer, row, col, height, width, fgcolor, bgcolor, bdcolor, value, active
)
self.adjustable = True # Can show adjustable border
self.do_precision = prcolor is not False
if self.do_precision:
@ -761,7 +825,9 @@ class LinearIO(Widget):
# Handle increase and decrease buttons. Redefined by textbox.py, scale_log.py
async def btnhan(self, button, up, d):
maxd = self.max_delta if self.precision() else d * 4 # Why move fast in precision mode?
maxd = (
self.max_delta if self.precision() else d * 4
) # Why move fast in precision mode?
t = ticks_ms()
while button():
await asyncio.sleep_ms(0) # Quit fast on button release
@ -774,11 +840,21 @@ class LinearIO(Widget):
def precision(self):
return self.do_precision and display.ipdev.is_precision()
# The dummy enables popup windows by satisfying the need for at least one active
# widget on a screen. It is invisible and is drawn by Window constructor before
# any user labels..
class DummyWidget(Widget):
def __init__(self, writer, window):
super().__init__(writer, window.row + 1, window.col + 1, 4, 4,
window.fgcolor, window.bgcolor, False, None, True)
super().__init__(
writer,
window.row + 1,
window.col + 1,
4,
4,
window.fgcolor,
window.bgcolor,
False,
None,
True,
)

Wyświetl plik

@ -6,6 +6,7 @@ _attrs = {
"Delay_ms": "delay_ms",
"Switch": "switch",
"Pushbutton": "pushbutton",
"Touchbutton": "touchbutton",
}
# Lazy loader, effectively does: