author | unc0rr |
Thu, 09 Oct 2008 13:53:03 +0000 | |
changeset 1330 | 12c13ffb426f |
parent 1329 | 69ddc231a911 |
child 1331 | ae291cfd617a |
permissions | -rw-r--r-- |
890 | 1 |
module HWProto where |
2 |
||
3 |
import IO |
|
896 | 4 |
import Data.List |
894 | 5 |
import Data.Word |
890 | 6 |
import Miscutils |
1320 | 7 |
import Maybe |
1317 | 8 |
import qualified Data.Map as Map |
890 | 9 |
|
1304
05cebf68ebd8
Start refactoring standalone server (prepare to change protocol)
unc0rr
parents:
1302
diff
changeset
|
10 |
answerBadCmd = [(clientOnly, ["ERROR", "Bad command, state or incorrect parameter"])] |
1317 | 11 |
answerNotMaster = [(clientOnly, ["ERROR", "You cannot configure room parameters"])] |
1327 | 12 |
answerBadParam = [(clientOnly, ["ERROR", "Bad parameter"])] |
1309 | 13 |
answerQuit = [(clientOnly, ["off"])] |
1327 | 14 |
answerAbandoned = [(othersInRoom, ["BYE"])] |
1309 | 15 |
answerQuitInform nick = [(othersInRoom, ["LEFT", nick])] |
1304
05cebf68ebd8
Start refactoring standalone server (prepare to change protocol)
unc0rr
parents:
1302
diff
changeset
|
16 |
answerNickChosen = [(clientOnly, ["ERROR", "The nick already chosen"])] |
05cebf68ebd8
Start refactoring standalone server (prepare to change protocol)
unc0rr
parents:
1302
diff
changeset
|
17 |
answerNickChooseAnother = [(clientOnly, ["WARNING", "Choose another nick"])] |
05cebf68ebd8
Start refactoring standalone server (prepare to change protocol)
unc0rr
parents:
1302
diff
changeset
|
18 |
answerNick nick = [(clientOnly, ["NICK", nick])] |
05cebf68ebd8
Start refactoring standalone server (prepare to change protocol)
unc0rr
parents:
1302
diff
changeset
|
19 |
answerProtocolKnown = [(clientOnly, ["ERROR", "Protocol number already known"])] |
05cebf68ebd8
Start refactoring standalone server (prepare to change protocol)
unc0rr
parents:
1302
diff
changeset
|
20 |
answerBadInput = [(clientOnly, ["ERROR", "Bad input"])] |
05cebf68ebd8
Start refactoring standalone server (prepare to change protocol)
unc0rr
parents:
1302
diff
changeset
|
21 |
answerProto protoNum = [(clientOnly, ["PROTO", show protoNum])] |
05cebf68ebd8
Start refactoring standalone server (prepare to change protocol)
unc0rr
parents:
1302
diff
changeset
|
22 |
answerRoomsList list = [(clientOnly, ["ROOMS"] ++ list)] |
05cebf68ebd8
Start refactoring standalone server (prepare to change protocol)
unc0rr
parents:
1302
diff
changeset
|
23 |
answerRoomExists = [(clientOnly, ["WARNING", "There's already a room with that name"])] |
05cebf68ebd8
Start refactoring standalone server (prepare to change protocol)
unc0rr
parents:
1302
diff
changeset
|
24 |
answerJoined nick = [(sameRoom, ["JOINED", nick])] |
05cebf68ebd8
Start refactoring standalone server (prepare to change protocol)
unc0rr
parents:
1302
diff
changeset
|
25 |
answerNoRoom = [(clientOnly, ["WARNING", "There's no room with that name"])] |
05cebf68ebd8
Start refactoring standalone server (prepare to change protocol)
unc0rr
parents:
1302
diff
changeset
|
26 |
answerWrongPassword = [(clientOnly, ["WARNING", "Wrong password"])] |
05cebf68ebd8
Start refactoring standalone server (prepare to change protocol)
unc0rr
parents:
1302
diff
changeset
|
27 |
answerChatString nick msg = [(othersInRoom, ["CHAT_STRING", nick, msg])] |
1317 | 28 |
answerConfigParam paramName paramStrs = [(othersInRoom, "CONFIG_PARAM" : paramName : paramStrs)] |
29 |
answerFullConfig room = map toAnswer (Map.toList $ params room) |
|
30 |
where |
|
1321 | 31 |
toAnswer (paramName, paramStrs) = |
1317 | 32 |
(clientOnly, "CONFIG_PARAM" : paramName : paramStrs) |
1328 | 33 |
answerCantAdd = [(clientOnly, ["WARNING", "Too many teams or hedgehogs, or same name team"])] |
1325 | 34 |
answerTeamAccepted team = [(clientOnly, ["TEAM_ACCEPTED", teamname team])] |
35 |
answerAddTeam team = [(othersInRoom, ["ADD_TEAM", teamname team, teamgrave team, teamfort team, show $ difficulty team] ++ hhsInfo)] |
|
36 |
where |
|
37 |
hhsInfo = concatMap (\(HedgehogInfo name hat) -> [name, hat]) $ hedgehogs team |
|
1327 | 38 |
answerHHNum teamName hhNumber = [(othersInRoom, ["HH_NUM", teamName, show hhNumber])] |
1328 | 39 |
answerRemoveTeam teamName = [(othersInRoom, ["REMOVE_TEAM", teamName])] |
1329 | 40 |
answerNotOwner = [(clientOnly, ["ERROR", "You do not own this team"])] |
1330 | 41 |
answerTeamColor teamName newColor = [(othersInRoom, ["TEAM_COLOR", teamName, newColor])] |
1307 | 42 |
|
1082 | 43 |
-- Main state-independent cmd handler |
44 |
handleCmd :: CmdHandler |
|
45 |
handleCmd client _ rooms ("QUIT":xs) = |
|
46 |
if null (room client) then |
|
1304
05cebf68ebd8
Start refactoring standalone server (prepare to change protocol)
unc0rr
parents:
1302
diff
changeset
|
47 |
(noChangeClients, noChangeRooms, answerQuit) |
1082 | 48 |
else if isMaster client then |
1327 | 49 |
(noChangeClients, removeRoom (room client), answerQuit ++ answerAbandoned) -- core disconnects clients on ROOMABANDONED answer |
1082 | 50 |
else |
1309 | 51 |
(noChangeClients, noChangeRooms, answerQuit ++ (answerQuitInform $ nick client)) |
895 | 52 |
|
1307 | 53 |
|
1082 | 54 |
-- check state and call state-dependent commmand handlers |
55 |
handleCmd client clients rooms cmd = |
|
56 |
if null (nick client) || protocol client == 0 then |
|
57 |
handleCmd_noInfo client clients rooms cmd |
|
58 |
else if null (room client) then |
|
59 |
handleCmd_noRoom client clients rooms cmd |
|
60 |
else |
|
61 |
handleCmd_inRoom client clients rooms cmd |
|
62 |
||
1307 | 63 |
|
1082 | 64 |
-- 'no info' state - need to get protocol number and nickname |
65 |
handleCmd_noInfo :: CmdHandler |
|
66 |
handleCmd_noInfo client clients _ ["NICK", newNick] = |
|
894 | 67 |
if not . null $ nick client then |
1304
05cebf68ebd8
Start refactoring standalone server (prepare to change protocol)
unc0rr
parents:
1302
diff
changeset
|
68 |
(noChangeClients, noChangeRooms, answerNickChosen) |
894 | 69 |
else if haveSameNick then |
1304
05cebf68ebd8
Start refactoring standalone server (prepare to change protocol)
unc0rr
parents:
1302
diff
changeset
|
70 |
(noChangeClients, noChangeRooms, answerNickChooseAnother) |
894 | 71 |
else |
1304
05cebf68ebd8
Start refactoring standalone server (prepare to change protocol)
unc0rr
parents:
1302
diff
changeset
|
72 |
(modifyClient client{nick = newNick}, noChangeRooms, answerNick newNick) |
894 | 73 |
where |
1320 | 74 |
haveSameNick = isJust $ find (\cl -> newNick == nick cl) clients |
894 | 75 |
|
1082 | 76 |
handleCmd_noInfo client _ _ ["PROTO", protoNum] = |
894 | 77 |
if protocol client > 0 then |
1304
05cebf68ebd8
Start refactoring standalone server (prepare to change protocol)
unc0rr
parents:
1302
diff
changeset
|
78 |
(noChangeClients, noChangeRooms, answerProtocolKnown) |
894 | 79 |
else if parsedProto == 0 then |
1304
05cebf68ebd8
Start refactoring standalone server (prepare to change protocol)
unc0rr
parents:
1302
diff
changeset
|
80 |
(noChangeClients, noChangeRooms, answerBadInput) |
894 | 81 |
else |
1304
05cebf68ebd8
Start refactoring standalone server (prepare to change protocol)
unc0rr
parents:
1302
diff
changeset
|
82 |
(modifyClient client{protocol = parsedProto}, noChangeRooms, answerProto parsedProto) |
894 | 83 |
where |
84 |
parsedProto = fromMaybe 0 (maybeRead protoNum :: Maybe Word16) |
|
85 |
||
1304
05cebf68ebd8
Start refactoring standalone server (prepare to change protocol)
unc0rr
parents:
1302
diff
changeset
|
86 |
handleCmd_noInfo _ _ _ _ = (noChangeClients, noChangeRooms, answerBadCmd) |
894 | 87 |
|
1307 | 88 |
|
894 | 89 |
-- 'noRoom' clients state command handlers |
1082 | 90 |
handleCmd_noRoom :: CmdHandler |
91 |
handleCmd_noRoom client _ rooms ["LIST"] = |
|
1304
05cebf68ebd8
Start refactoring standalone server (prepare to change protocol)
unc0rr
parents:
1302
diff
changeset
|
92 |
(noChangeClients, noChangeRooms, answerRoomsList $ map name rooms) |
903 | 93 |
|
1082 | 94 |
handleCmd_noRoom client _ rooms ["CREATE", newRoom, roomPassword] = |
895 | 95 |
if haveSameRoom then |
1304
05cebf68ebd8
Start refactoring standalone server (prepare to change protocol)
unc0rr
parents:
1302
diff
changeset
|
96 |
(noChangeClients, noChangeRooms, answerRoomExists) |
895 | 97 |
else |
1317 | 98 |
(modifyClient client{room = newRoom, isMaster = True}, addRoom (RoomInfo newRoom roomPassword (protocol client) [] Map.empty), answerJoined $ nick client) |
895 | 99 |
where |
1320 | 100 |
haveSameRoom = isJust $ find (\room -> newRoom == name room) rooms |
895 | 101 |
|
1082 | 102 |
handleCmd_noRoom client clients rooms ["CREATE", newRoom] = |
103 |
handleCmd_noRoom client clients rooms ["CREATE", newRoom, ""] |
|
104 |
||
1308
d5dcd6cfa5e2
Fix another server failure (when second client in room disconnects)
unc0rr
parents:
1307
diff
changeset
|
105 |
handleCmd_noRoom client clients rooms ["JOIN", roomName, roomPassword] = |
902 | 106 |
if noSuchRoom then |
1304
05cebf68ebd8
Start refactoring standalone server (prepare to change protocol)
unc0rr
parents:
1302
diff
changeset
|
107 |
(noChangeClients, noChangeRooms, answerNoRoom) |
1321 | 108 |
else if roomPassword /= password clRoom then |
1304
05cebf68ebd8
Start refactoring standalone server (prepare to change protocol)
unc0rr
parents:
1302
diff
changeset
|
109 |
(noChangeClients, noChangeRooms, answerWrongPassword) |
895 | 110 |
else |
1321 | 111 |
(modifyClient client{room = roomName}, noChangeRooms, (answerJoined $ nick client) ++ answerNicks ++ answerFullConfig clRoom) |
895 | 112 |
where |
1320 | 113 |
noSuchRoom = isNothing $ find (\room -> roomName == name room) rooms |
1308
d5dcd6cfa5e2
Fix another server failure (when second client in room disconnects)
unc0rr
parents:
1307
diff
changeset
|
114 |
answerNicks = [(clientOnly, ["JOINED"] ++ (map nick $ filter (\ci -> room ci == roomName) clients))] |
1321 | 115 |
clRoom = roomByName roomName rooms |
895 | 116 |
|
1082 | 117 |
handleCmd_noRoom client clients rooms ["JOIN", roomName] = |
118 |
handleCmd_noRoom client clients rooms ["JOIN", roomName, ""] |
|
894 | 119 |
|
1304
05cebf68ebd8
Start refactoring standalone server (prepare to change protocol)
unc0rr
parents:
1302
diff
changeset
|
120 |
handleCmd_noRoom _ _ _ _ = (noChangeClients, noChangeRooms, answerBadCmd) |
895 | 121 |
|
1307 | 122 |
|
897 | 123 |
-- 'inRoom' clients state command handlers |
1082 | 124 |
handleCmd_inRoom :: CmdHandler |
1322
c624b04699fb
Fix protocol implementation to conform documentation
unc0rr
parents:
1321
diff
changeset
|
125 |
handleCmd_inRoom client _ _ ["CHAT_STRING", msg] = |
1317 | 126 |
(noChangeClients, noChangeRooms, answerChatString (nick client) msg) |
897 | 127 |
|
1327 | 128 |
handleCmd_inRoom client _ rooms ("CONFIG_PARAM" : paramName : paramStrs) = |
1317 | 129 |
if isMaster client then |
1322
c624b04699fb
Fix protocol implementation to conform documentation
unc0rr
parents:
1321
diff
changeset
|
130 |
(noChangeClients, modifyRoom clRoom{params = Map.insert paramName paramStrs (params clRoom)}, answerConfigParam paramName paramStrs) |
1317 | 131 |
else |
132 |
(noChangeClients, noChangeRooms, answerNotMaster) |
|
1321 | 133 |
where |
134 |
clRoom = roomByName (room client) rooms |
|
135 |
||
1327 | 136 |
handleCmd_inRoom client _ rooms ("ADD_TEAM" : name : color : grave : fort : difStr : hhsInfo) |
1323
d166f9069c2b
Build neccessary structures in memory on ADDTEAM message, but don't send answer yet (need to review team id concept)
unc0rr
parents:
1322
diff
changeset
|
137 |
| length hhsInfo == 16 = |
1328 | 138 |
if length (teams clRoom) == 6 || canAddNumber <= 0 || isJust findTeam then |
1323
d166f9069c2b
Build neccessary structures in memory on ADDTEAM message, but don't send answer yet (need to review team id concept)
unc0rr
parents:
1322
diff
changeset
|
139 |
(noChangeClients, noChangeRooms, answerCantAdd) |
d166f9069c2b
Build neccessary structures in memory on ADDTEAM message, but don't send answer yet (need to review team id concept)
unc0rr
parents:
1322
diff
changeset
|
140 |
else |
1325 | 141 |
(noChangeClients, modifyRoom clRoom{teams = newTeam : teams clRoom}, answerTeamAccepted newTeam ++ answerAddTeam newTeam) |
1323
d166f9069c2b
Build neccessary structures in memory on ADDTEAM message, but don't send answer yet (need to review team id concept)
unc0rr
parents:
1322
diff
changeset
|
142 |
where |
d166f9069c2b
Build neccessary structures in memory on ADDTEAM message, but don't send answer yet (need to review team id concept)
unc0rr
parents:
1322
diff
changeset
|
143 |
clRoom = roomByName (room client) rooms |
1329 | 144 |
newTeam = (TeamInfo (nick client) name color grave fort difficulty newTeamHHNum (hhsList hhsInfo)) |
1328 | 145 |
findTeam = find (\t -> name == teamname t) $ teams clRoom |
1323
d166f9069c2b
Build neccessary structures in memory on ADDTEAM message, but don't send answer yet (need to review team id concept)
unc0rr
parents:
1322
diff
changeset
|
146 |
difficulty = fromMaybe 0 (maybeRead difStr :: Maybe Int) |
1325 | 147 |
hhsList [] = [] |
1323
d166f9069c2b
Build neccessary structures in memory on ADDTEAM message, but don't send answer yet (need to review team id concept)
unc0rr
parents:
1322
diff
changeset
|
148 |
hhsList (n:h:hhs) = HedgehogInfo n h : hhsList hhs |
1327 | 149 |
canAddNumber = 18 - (sum . map hhnum $ teams clRoom) |
150 |
newTeamHHNum = min 4 canAddNumber |
|
151 |
||
152 |
handleCmd_inRoom client _ rooms ["HH_NUM", teamName, numberStr] = |
|
153 |
if not $ isMaster client then |
|
154 |
(noChangeClients, noChangeRooms, answerNotMaster) |
|
155 |
else |
|
1329 | 156 |
if hhNumber < 1 || hhNumber > 8 || noSuchTeam || hhNumber > (canAddNumber + (hhnum team)) then |
1327 | 157 |
(noChangeClients, noChangeRooms, answerBadParam) |
158 |
else |
|
159 |
(noChangeClients, modifyRoom $ modifyTeam clRoom team{hhnum = hhNumber}, answerHHNum teamName hhNumber) |
|
160 |
where |
|
161 |
hhNumber = fromMaybe 0 (maybeRead numberStr :: Maybe Int) |
|
162 |
noSuchTeam = isNothing findTeam |
|
163 |
team = fromJust findTeam |
|
164 |
findTeam = find (\t -> teamName == teamname t) $ teams clRoom |
|
165 |
clRoom = roomByName (room client) rooms |
|
166 |
canAddNumber = 18 - (sum . map hhnum $ teams clRoom) |
|
1323
d166f9069c2b
Build neccessary structures in memory on ADDTEAM message, but don't send answer yet (need to review team id concept)
unc0rr
parents:
1322
diff
changeset
|
167 |
|
1330 | 168 |
handleCmd_inRoom client _ rooms ["TEAM_COLOR", teamName, newColor] = |
169 |
if not $ isMaster client then |
|
170 |
(noChangeClients, noChangeRooms, answerNotMaster) |
|
171 |
else |
|
172 |
(noChangeClients, modifyRoom $ modifyTeam clRoom team{teamcolor = newColor}, answerTeamColor teamName newColor) |
|
173 |
where |
|
174 |
noSuchTeam = isNothing findTeam |
|
175 |
team = fromJust findTeam |
|
176 |
findTeam = find (\t -> teamName == teamname t) $ teams clRoom |
|
177 |
clRoom = roomByName (room client) rooms |
|
178 |
||
1328 | 179 |
handleCmd_inRoom client _ rooms ["REMOVE_TEAM", teamName] = |
1329 | 180 |
if noSuchTeam then |
181 |
(noChangeClients, noChangeRooms, answerBadParam) |
|
1328 | 182 |
else |
1329 | 183 |
if not $ nick client == teamowner team then |
184 |
(noChangeClients, noChangeRooms, answerNotOwner) |
|
1328 | 185 |
else |
186 |
(noChangeClients, modifyRoom clRoom{teams = filter (\t -> teamName /= teamname t) $ teams clRoom}, answerRemoveTeam teamName) |
|
187 |
where |
|
188 |
noSuchTeam = isNothing findTeam |
|
189 |
team = fromJust findTeam |
|
190 |
findTeam = find (\t -> teamName == teamname t) $ teams clRoom |
|
191 |
clRoom = roomByName (room client) rooms |
|
1083 | 192 |
|
1304
05cebf68ebd8
Start refactoring standalone server (prepare to change protocol)
unc0rr
parents:
1302
diff
changeset
|
193 |
handleCmd_inRoom _ _ _ _ = (noChangeClients, noChangeRooms, answerBadCmd) |