author | koda |
Sun, 12 Dec 2010 05:23:37 +0100 | |
changeset 4510 | ce9b8206e681 |
parent 3568 | ae89cf0735dc |
child 4614 | 26661bf28dd5 |
permissions | -rw-r--r-- |
3435 | 1 |
module HandlerUtils where |
2 |
||
3 |
import Control.Monad.Reader |
|
3500
af8390d807d6
Use sockets instead of handles, use bytestrings instead of strings
unc0rr
parents:
3435
diff
changeset
|
4 |
import qualified Data.ByteString.Char8 as B |
3435 | 5 |
|
6 |
import RoomsAndClients |
|
7 |
import CoreTypes |
|
8 |
import Actions |
|
9 |
||
10 |
thisClient :: Reader (ClientIndex, IRnC) ClientInfo |
|
11 |
thisClient = do |
|
12 |
(ci, rnc) <- ask |
|
13 |
return $ rnc `client` ci |
|
14 |
||
3568 | 15 |
thisRoom :: Reader (ClientIndex, IRnC) RoomInfo |
16 |
thisRoom = do |
|
17 |
(ci, rnc) <- ask |
|
18 |
let ri = clientRoom rnc ci |
|
19 |
return $ rnc `room` ri |
|
20 |
||
3500
af8390d807d6
Use sockets instead of handles, use bytestrings instead of strings
unc0rr
parents:
3435
diff
changeset
|
21 |
clientNick :: Reader (ClientIndex, IRnC) B.ByteString |
3435 | 22 |
clientNick = liftM nick thisClient |
23 |
||
24 |
roomOthersChans :: Reader (ClientIndex, IRnC) [ClientChan] |
|
25 |
roomOthersChans = do |
|
26 |
(ci, rnc) <- ask |
|
27 |
let ri = clientRoom rnc ci |
|
3542 | 28 |
return $ map (sendChan . client rnc) $ filter (/= ci) (roomClients rnc ri) |
3435 | 29 |
|
3543 | 30 |
roomClientsChans :: Reader (ClientIndex, IRnC) [ClientChan] |
31 |
roomClientsChans = do |
|
32 |
(ci, rnc) <- ask |
|
33 |
let ri = clientRoom rnc ci |
|
34 |
return $ map (sendChan . client rnc) (roomClients rnc ri) |
|
35 |
||
3435 | 36 |
thisClientChans :: Reader (ClientIndex, IRnC) [ClientChan] |
37 |
thisClientChans = do |
|
38 |
(ci, rnc) <- ask |
|
39 |
return $ [sendChan (rnc `client` ci)] |
|
40 |
||
3500
af8390d807d6
Use sockets instead of handles, use bytestrings instead of strings
unc0rr
parents:
3435
diff
changeset
|
41 |
answerClient :: [B.ByteString] -> Reader (ClientIndex, IRnC) [Action] |
3435 | 42 |
answerClient msg = thisClientChans >>= return . (: []) . flip AnswerClients msg |
3501 | 43 |
|
44 |
allRoomInfos :: Reader (a, IRnC) [RoomInfo] |
|
45 |
allRoomInfos = liftM ((\irnc -> map (room irnc) $ allRooms irnc) . snd) ask |