author | unc0rr |
Sat, 28 Mar 2009 10:42:00 +0000 | |
changeset 1929 | 7e6cc8da1c58 |
parent 1928 | 9bf8f4f30d6b |
child 2126 | cb249fa8e3da |
permissions | -rw-r--r-- |
1804 | 1 |
module HWProtoCore where |
2 |
||
3 |
import qualified Data.IntMap as IntMap |
|
1862 | 4 |
import Data.Foldable |
5 |
import Maybe |
|
1804 | 6 |
-------------------------------------- |
7 |
import CoreTypes |
|
8 |
import Actions |
|
9 |
import Utils |
|
10 |
import HWProtoNEState |
|
11 |
import HWProtoLobbyState |
|
12 |
import HWProtoInRoomState |
|
13 |
||
1862 | 14 |
handleCmd, handleCmd_loggedin :: CmdHandler |
1804 | 15 |
|
16 |
handleCmd clID _ _ ["PING"] = [AnswerThisClient ["PONG"]] |
|
17 |
||
1814 | 18 |
handleCmd clID clients rooms ("QUIT" : xs) = |
1929 | 19 |
[ByeClient msg] |
1804 | 20 |
where |
21 |
msg = if not $ null xs then head xs else "" |
|
22 |
||
1862 | 23 |
|
1928 | 24 |
handleCmd clID clients _ ["PONG"] = |
25 |
if pingsQueue client == 0 then |
|
26 |
[ProtocolError "Protocol violation"] |
|
27 |
else |
|
28 |
[ModifyClient (\cl -> cl{pingsQueue = pingsQueue cl - 1})] |
|
29 |
where |
|
30 |
client = clients IntMap.! clID |
|
31 |
||
32 |
||
1804 | 33 |
handleCmd clID clients rooms cmd = |
1841
fba7210b438b
Retrieve client password from web database and ask for it
unc0rr
parents:
1814
diff
changeset
|
34 |
if not $ logonPassed client then |
1804 | 35 |
handleCmd_NotEntered clID clients rooms cmd |
1862 | 36 |
else |
37 |
handleCmd_loggedin clID clients rooms cmd |
|
38 |
where |
|
39 |
client = clients IntMap.! clID |
|
40 |
||
41 |
||
42 |
handleCmd_loggedin clID clients rooms ["INFO", asknick] = |
|
43 |
if noSuchClient then |
|
44 |
[] |
|
45 |
else |
|
46 |
[AnswerThisClient |
|
47 |
["INFO", |
|
48 |
nick client, |
|
49 |
"[" ++ host client ++ "]", |
|
50 |
protoNumber2ver $ clientProto client, |
|
51 |
roomInfo]] |
|
52 |
where |
|
53 |
maybeClient = find (\cl -> asknick == nick cl) clients |
|
54 |
noSuchClient = isNothing maybeClient |
|
55 |
client = fromJust maybeClient |
|
56 |
room = rooms IntMap.! roomID client |
|
57 |
roomInfo = if roomID client /= 0 then "room " ++ (name room) else "lobby" |
|
58 |
||
59 |
||
60 |
handleCmd_loggedin clID clients rooms cmd = |
|
61 |
if roomID client == 0 then |
|
1804 | 62 |
handleCmd_lobby clID clients rooms cmd |
63 |
else |
|
64 |
handleCmd_inRoom clID clients rooms cmd |
|
65 |
where |
|
66 |
client = clients IntMap.! clID |