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
|
import dataclasses
import typing
from automat import TypeMachineBuilder
#begin
class Inputs(typing.Protocol):
def compute(self) -> int: ...
def behavior(self) -> None: ...
class Nothing: ...
builder = TypeMachineBuilder(Inputs, Nothing)
start = builder.state("start")
@start.upon(Inputs.compute).loop()
def three(inputs: Inputs, core: Nothing) -> int:
return 3
@start.upon(Inputs.behavior).loop()
def behave(inputs: Inputs, core: Nothing) -> None:
print("computed:", inputs.compute())
#end
machineFactory = builder.build()
machineFactory(Nothing()).behavior()
|