update
[mTask.git] / mTaskInterpret.dcl
index 667f26b..0deb665 100644 (file)
@@ -2,6 +2,7 @@ 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
 
 :: BC
@@ -47,12 +48,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 +66,26 @@ 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
+
+getSDSBytes :: BCState -> String
+getTaskBytes :: Int String -> String
+
 toByteVal :: BC -> [Char]
+toReadableByteCode :: (ByteCode a b) -> (String, BCState)
+toRealByteCode :: (ByteCode a b) -> (String, BCState)