memoryShare s d = sdsFocus s $ memoryStore "" $ Just d
deviceStore :: Shared [MTaskDevice]
-deviceStore = memoryShare "mTaskDevices" []
+deviceStore = sharedStore "mTaskDevices" []
sdsStore :: Shared [MTaskShare]
sdsStore = memoryShare "mTaskShares" []
bcStateStore = memoryShare "mTaskBCState" zero
mTaskTaskStore :: Shared [String]
-mTaskTaskStore = memoryShare "mTaskTasks" ["ledder", "ledon", "ledoff"]
+mTaskTaskStore = memoryShare "mTaskTasks" ["count", "ledon", "ledoff"]
mTaskMap :: Map String (Main (ByteCode () Stmt))
-mTaskMap = 'DM'.fromList [("ledder", bc), ("ledon", bc2 LED1), ("ledoff", bc3 LED3)]
+mTaskMap = 'DM'.fromList [("count", bc), ("ledon", bc2 LED1), ("ledoff", bc3 LED3)]
bc :: Main (ByteCode () Stmt)
bc = sds \x=1 In sds \pinnetje=1 In {main =
bc3 :: UserLED -> Main (ByteCode () Stmt)
bc3 d = {main = ledOff d}
-:: MTaskDeviceStatus = {connected :: Bool, name :: String, tasks :: [(String, Int)]}
+:: MTaskDeviceStatus = {connected :: Bool, name :: String, tasks :: [String]}
derive class iTask MTaskDeviceStatus, MTaskDevice, MTaskShare, BCState
mTaskManager :: Task ()
mTaskManager = anyTask
[ viewmTasks @! ()
- , viewShares
+ , whileUnchanged sdsStore viewShares
, whileUnchanged deviceStore viewDevices
] <<@ ApplyLayout layout
where
]
viewmTasks = listmTasks
- >&^ \sh->whileUnchanged sh $ \mi->case mi of
+ >&^ \sh->whileUnchanged sh $ \mi->forever (case mi of
Nothing = viewInformation "No task selected" [] ()
Just mTaskTask = get deviceStore
>>= \devices->case devices of
[] = viewInformation "No devices yet" [] ()
- ds = sendmTask mTaskTask ds @! ()
+ ds = sendmTask mTaskTask ds @! ())
where
listmTasks :: Task String
listmTasks = enterChoiceWithShared "Available mTasks" [ChooseFromList id] mTaskTaskStore
channels :: MTaskDevice -> Shared Channels
channels d = memoryShare (fromJust d.deviceConnected) ([], [], False)
- viewShares :: Task ()
- viewShares = whileUnchanged sdsStore $ anyTask o map viewer
+ viewShares :: [MTaskShare] -> Task ()
+ viewShares st = anyTask $ map viewer st
where
viewer :: MTaskShare -> Task ()
viewer m = viewSharedInformation "" [] (getSDSStore m)
Just ty = case ty of
TCPDevice = (enterInformation "Name" [] -&&- enterInformation "Hostname" [] -&&- enterInformation "Port" [])
>>= \(name, (host, port))->cont name (syncNetworkChannel host port)
- SerialDevice = accWorld getTTYDevices
- >>= \dl->(enterInformation "Name" [] -&&- enterChoice "Device" [] dl -&&- updateInformation "Settings" [] zero)
- >>= \(name, (dev, set))->cont name (syncSerialChannel dev set encode decode)
+ SerialDevice = (enterInformation "Name" [] -&&- enterTTYSettings)
+ >>= \(name, set)->cont name (syncSerialChannel set encode decode)
where
cont :: String ((Shared Channels) -> Task ()) -> Task ()
cont name synfun = get randomInt
MTSDSDelAck i = traceValue (toString m) @! ()
MTPub i val = getSDSRecord i >>= set (toInt val.[0]*256 + toInt val.[1]) o getSDSStore @! ()
MTMessage val = traceValue (toString m) @! ()
- MTEmpty = traceValue (toString m) @! ()
+ MTEmpty = treturn ()
) >>| process ms
-
deviceviewer :: [MTaskDevice] -> [MTaskDeviceStatus]
deviceviewer ds = [{MTaskDeviceStatus | name = d.deviceName,
connected = if (isNothing d.deviceConnected) False True,
- tasks = d.deviceTasks}\\d<-ds]
+ tasks = [s +++ toString i\\(s, i)<-d.deviceTasks]}\\d<-ds]
mapPar :: (a -> Task a) [a] -> Task ()
mapPar f l = foldr1 (\x y->f x ||- y) l <<@ ArrangeWithTabs @! ()