2023-10-23 13:44:07 +03:00
|
|
|
from turtle import Turtle
|
|
|
|
from typing import Optional, Collection, Any
|
|
|
|
from controls.device import SynchronyDevice
|
|
|
|
from controls.device import TraitDescriptor
|
|
|
|
from controls.device import ActionDescriptor
|
2023-10-24 10:13:31 +03:00
|
|
|
import inspect
|
2023-10-23 13:44:07 +03:00
|
|
|
|
|
|
|
class TurtleDevice(SynchronyDevice):
|
|
|
|
def open(self):
|
2023-10-24 10:28:38 +03:00
|
|
|
self.turtle = Turtle()
|
2023-10-23 13:44:07 +03:00
|
|
|
super().open()
|
|
|
|
|
|
|
|
def close(self):
|
|
|
|
self.turtle.clear()
|
|
|
|
super().close()
|
|
|
|
|
|
|
|
def trait_descriptors(self) -> Collection[TraitDescriptor]:
|
|
|
|
pass
|
|
|
|
|
|
|
|
def action_descriptors(self) -> Collection[ActionDescriptor]:
|
|
|
|
pass
|
|
|
|
|
|
|
|
def __getitem__(self, trait_name: str) -> Optional[Any]:
|
|
|
|
"""Return logical state of trait `trait_name`."""
|
|
|
|
pass
|
|
|
|
|
|
|
|
def read(self, trait_name: str) -> Any:
|
2023-10-24 10:11:30 +03:00
|
|
|
pass
|
2023-10-23 13:44:07 +03:00
|
|
|
|
|
|
|
def write(self, trait_name: str, value: Any) -> bool:
|
|
|
|
self.turtle.write()
|
|
|
|
|
2023-10-24 10:11:30 +03:00
|
|
|
def execute(self, action_name: str, *args, **kwargs):
|
|
|
|
"""Execute action `action_name`, using `args` and `kwargs` as action argument."""
|
|
|
|
pass
|
|
|
|
|
2023-10-23 13:44:07 +03:00
|
|
|
def invalidate(self, trait_name: str):
|
2023-10-24 10:11:30 +03:00
|
|
|
pass
|
2023-10-24 10:13:31 +03:00
|
|
|
|
|
|
|
def get_descriptors(self):
|
|
|
|
descriptors = dict(actions=dict(), traits=dict())
|
2023-10-24 10:28:38 +03:00
|
|
|
for k, v in self.turtle.__dict__.items():
|
|
|
|
if not k.startswith("_"):
|
2023-10-24 10:34:02 +03:00
|
|
|
descriptors["traits"][k] = TraitDescriptor(k,
|
|
|
|
inspect.getdoc(v),
|
|
|
|
readable=True,
|
|
|
|
writable=False)
|
2023-10-24 10:28:38 +03:00
|
|
|
|
2023-10-24 10:13:31 +03:00
|
|
|
for m_name, member in inspect.getmembers(Turtle):
|
|
|
|
if m_name.startswith("_"): continue
|
|
|
|
if m_name.lower() != m_name: continue
|
|
|
|
doc = inspect.getdoc(member)
|
|
|
|
if doc is None: continue
|
|
|
|
|
|
|
|
if not inspect.isfunction(member):
|
|
|
|
descriptors["traits"][m_name] = TraitDescriptor(m_name,
|
|
|
|
doc,
|
|
|
|
readable=True,
|
|
|
|
writable=False)
|
|
|
|
else:
|
|
|
|
sig = inspect.signature(member)
|
|
|
|
params_dict = dict(sig.parameters)
|
|
|
|
descriptors["actions"][m_name] = ActionDescriptor(m_name,
|
|
|
|
arguments=params_dict,
|
|
|
|
info=doc)
|
|
|
|
return descriptors
|