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