X-Git-Url: https://git.martlubbers.net/?a=blobdiff_plain;f=mTaskInterpret.dcl;h=bca5df7e0d7f120051c9e6c99e3391d942d16020;hb=4dff4046c87727f8b09558969f7c655b9e4de3c1;hp=667f26b99e46451fcc913fda2c6be7e845a0f7b2;hpb=884b2d1f25a3839851a7257d0eae929999f512c0;p=mTask.git diff --git a/mTaskInterpret.dcl b/mTaskInterpret.dcl index 667f26b..bca5df7 100644 --- a/mTaskInterpret.dcl +++ b/mTaskInterpret.dcl @@ -2,8 +2,20 @@ definition module mTaskInterpret from Data.Functor.Identity import :: Identity from Control.Monad.State import :: State, :: StateT +from Data.Monoid import class Semigroup, class Monoid import mTask +:: MTaskMessage + = MTSds Int String + | MTTask Int String + | MTPub Int String + | MTUpd Int String + +instance toString MTaskMessage +safePrint :: String -> String +encode :: MTaskMessage -> String +decode :: String -> MTaskMessage + :: BC = BCNop | BCLab Int @@ -47,12 +59,15 @@ import mTask | BCTest AnalogPin :: ByteCode a p = BC (BCState -> ([BC], BCState)) -//:: ByteCode a p = BC [BC] -//:: ByteCode a p = BC ((ReadWrite (ByteCode a Expr)) BCState -> ([BC], BCState)) +instance Semigroup (ByteCode a p) +instance Monoid (ByteCode a p) + :: BCState = { freshl :: [Int], - freshs :: [Int] + freshs :: [Int], + sdss :: [(Int, [Char])] } +instance zero BCState class toByteCode a :: a -> [Char] instance toByteCode Int @@ -62,4 +77,25 @@ instance toByteCode String instance toByteCode Long instance toByteCode Button +instance toChar Pin +instance arith ByteCode +instance boolExpr ByteCode +instance analogIO ByteCode +instance digitalIO ByteCode +instance If ByteCode Stmt Stmt Stmt +instance If ByteCode Stmt e Stmt +instance If ByteCode Stmt Stmt e +instance If ByteCode x y Expr +instance IF ByteCode +instance noOp ByteCode + +instance sds ByteCode +instance assign ByteCode +instance seq ByteCode +instance serial ByteCode + +toMessages :: Int (String, BCState) -> [MTaskMessage] + toByteVal :: BC -> [Char] +toReadableByteCode :: (ByteCode a b) -> (String, BCState) +toRealByteCode :: (ByteCode a b) -> (String, BCState)