X-Git-Url: https://git.martlubbers.net/?a=blobdiff_plain;f=mTaskInterpret.dcl;h=70dc6ad513617dde9f60956f05d56b77ab659f64;hb=6e3b45dd6cef95c1577a91b15a1256fa4b06ca88;hp=bca5df7e0d7f120051c9e6c99e3391d942d16020;hpb=4dff4046c87727f8b09558969f7c655b9e4de3c1;p=mTask.git diff --git a/mTaskInterpret.dcl b/mTaskInterpret.dcl index bca5df7..70dc6ad 100644 --- a/mTaskInterpret.dcl +++ b/mTaskInterpret.dcl @@ -5,16 +5,20 @@ from Control.Monad.State import :: State, :: StateT from Data.Monoid import class Semigroup, class Monoid import mTask -:: MTaskMessage +:: MTaskMSGRecv + = MTPub Int String + | MTMessage String + | MTEmpty + +:: MTaskMSGSend = MTSds Int String | MTTask Int String - | MTPub Int String | MTUpd Int String -instance toString MTaskMessage -safePrint :: String -> String -encode :: MTaskMessage -> String -decode :: String -> MTaskMessage +instance toString MTaskMSGRecv +instance toString MTaskMSGSend +encode :: MTaskMSGSend -> String +decode :: String -> MTaskMSGRecv :: BC = BCNop @@ -82,10 +86,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 @@ -94,7 +98,10 @@ instance assign ByteCode instance seq ByteCode instance serial ByteCode -toMessages :: Int (String, BCState) -> [MTaskMessage] +//pub :: (ByteCode a b) -> ByteCode a b + +toMessages :: Int (String, BCState) -> ([MTaskMSGSend], BCState) +toSDSUpdate :: Int Int -> [MTaskMSGSend] toByteVal :: BC -> [Char] toReadableByteCode :: (ByteCode a b) -> (String, BCState)