X-Git-Url: https://git.martlubbers.net/?a=blobdiff_plain;f=mTaskInterpret.dcl;h=0cf8ef37e136bafbddb52436e4460b5ac1235cb3;hb=3698f150b0c5e5ebed23b0885ced2711ef16d9f5;hp=fd22548df2aea43afd9dc8daff8a6c4fa75751fa;hpb=a0182655c28502ffcadbe36de99d9a4e503e310e;p=mTask.git diff --git a/mTaskInterpret.dcl b/mTaskInterpret.dcl index fd22548..0cf8ef3 100644 --- a/mTaskInterpret.dcl +++ b/mTaskInterpret.dcl @@ -5,6 +5,22 @@ from Control.Monad.State import :: State, :: StateT from Data.Monoid import class Semigroup, class Monoid import mTask +:: MTaskMSGRecv + = MTPub Int String + | MTMessage String + | MTTaskAdded Int + | MTEmpty + +:: MTaskMSGSend + = MTSds Int String + | MTTask Int String + | MTUpd Int String + +instance toString MTaskMSGRecv +instance toString MTaskMSGSend +encode :: MTaskMSGSend -> String +decode :: String -> MTaskMSGRecv + :: BC = BCNop | BCLab Int @@ -53,7 +69,8 @@ instance Monoid (ByteCode a p) :: BCState = { freshl :: [Int], - freshs :: [Int] + freshs :: [Int], + sdss :: [(Int, [Char])] } instance zero BCState @@ -70,10 +87,10 @@ 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 Stmt Stmt Stmt +//instance If ByteCode e Stmt Stmt +//instance If ByteCode Stmt e Stmt +instance If ByteCode x y Stmt instance IF ByteCode instance noOp ByteCode @@ -82,6 +99,11 @@ instance assign ByteCode instance seq ByteCode instance serial ByteCode +//pub :: (ByteCode a b) -> ByteCode a b + +toMessages :: Int (String, BCState) -> ([MTaskMSGSend], BCState) +toSDSUpdate :: Int Int -> [MTaskMSGSend] + toByteVal :: BC -> [Char] -toReadableByteCode :: (ByteCode a Expr) -> String -toRealByteCode :: (ByteCode a Expr) -> String +toReadableByteCode :: (ByteCode a b) -> (String, BCState) +toRealByteCode :: (ByteCode a b) -> (String, BCState)