author | unc0rr |
Thu, 09 Oct 2008 16:05:01 +0000 | |
changeset 1335 | c795cbc752c1 |
parent 1334 | b58afaadf7ae |
child 1336 | 4e88eccbe7f6 |
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)] |
1333
b0b0510eb82d
- Fix a bug with chosen map (new clinet gets wrong information)
unc0rr
parents:
1332
diff
changeset
|
33 |
answerFullConfig room = map toAnswer (Map.toList $ params room) ++ [(clientOnly, ["MAP", gamemap room])] |
1317 | 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])] |
1333
b0b0510eb82d
- Fix a bug with chosen map (new clinet gets wrong information)
unc0rr
parents:
1332
diff
changeset
|
50 |
answerMap mapName = [(othersInRoom, ["MAP", mapName])] |
1307 | 51 |
|
1082 | 52 |
-- Main state-independent cmd handler |
53 |
handleCmd :: CmdHandler |
|
54 |
handleCmd client _ rooms ("QUIT":xs) = |
|
55 |
if null (room client) then |
|
1304
05cebf68ebd8
Start refactoring standalone server (prepare to change protocol)
unc0rr
parents:
1302
diff
changeset
|
56 |
(noChangeClients, noChangeRooms, answerQuit) |
1082 | 57 |
else if isMaster client then |
1327 | 58 |
(noChangeClients, removeRoom (room client), answerQuit ++ answerAbandoned) -- core disconnects clients on ROOMABANDONED answer |
1082 | 59 |
else |
1335
c795cbc752c1
Small optimization (use partition instead of two filters with opposite predicates)
unc0rr
parents:
1334
diff
changeset
|
60 |
(noChangeClients, modifyRoom clRoom{teams = othersTeams}, answerQuit ++ (answerQuitInform $ nick client) ++ answerRemoveClientTeams) |
1334
b58afaadf7ae
Send team removal message to others in room when client disconnects
unc0rr
parents:
1333
diff
changeset
|
61 |
where |
b58afaadf7ae
Send team removal message to others in room when client disconnects
unc0rr
parents:
1333
diff
changeset
|
62 |
clRoom = roomByName (room client) rooms |
1335
c795cbc752c1
Small optimization (use partition instead of two filters with opposite predicates)
unc0rr
parents:
1334
diff
changeset
|
63 |
answerRemoveClientTeams = map (\tn -> (othersInRoom, ["REMOVE_TEAM", teamname tn])) clientTeams |
c795cbc752c1
Small optimization (use partition instead of two filters with opposite predicates)
unc0rr
parents:
1334
diff
changeset
|
64 |
(clientTeams, othersTeams) = partition (\t -> teamowner t == nick client) $ teams clRoom |
895 | 65 |
|
1307 | 66 |
|
1082 | 67 |
-- check state and call state-dependent commmand handlers |
68 |
handleCmd client clients rooms cmd = |
|
69 |
if null (nick client) || protocol client == 0 then |
|
70 |
handleCmd_noInfo client clients rooms cmd |
|
71 |
else if null (room client) then |
|
72 |
handleCmd_noRoom client clients rooms cmd |
|
73 |
else |
|
74 |
handleCmd_inRoom client clients rooms cmd |
|
75 |
||
1307 | 76 |
|
1082 | 77 |
-- 'no info' state - need to get protocol number and nickname |
78 |
handleCmd_noInfo :: CmdHandler |
|
79 |
handleCmd_noInfo client clients _ ["NICK", newNick] = |
|
894 | 80 |
if not . null $ nick client then |
1304
05cebf68ebd8
Start refactoring standalone server (prepare to change protocol)
unc0rr
parents:
1302
diff
changeset
|
81 |
(noChangeClients, noChangeRooms, answerNickChosen) |
894 | 82 |
else if haveSameNick then |
1304
05cebf68ebd8
Start refactoring standalone server (prepare to change protocol)
unc0rr
parents:
1302
diff
changeset
|
83 |
(noChangeClients, noChangeRooms, answerNickChooseAnother) |
894 | 84 |
else |
1304
05cebf68ebd8
Start refactoring standalone server (prepare to change protocol)
unc0rr
parents:
1302
diff
changeset
|
85 |
(modifyClient client{nick = newNick}, noChangeRooms, answerNick newNick) |
894 | 86 |
where |
1320 | 87 |
haveSameNick = isJust $ find (\cl -> newNick == nick cl) clients |
894 | 88 |
|
1082 | 89 |
handleCmd_noInfo client _ _ ["PROTO", protoNum] = |
894 | 90 |
if protocol client > 0 then |
1304
05cebf68ebd8
Start refactoring standalone server (prepare to change protocol)
unc0rr
parents:
1302
diff
changeset
|
91 |
(noChangeClients, noChangeRooms, answerProtocolKnown) |
894 | 92 |
else if parsedProto == 0 then |
1304
05cebf68ebd8
Start refactoring standalone server (prepare to change protocol)
unc0rr
parents:
1302
diff
changeset
|
93 |
(noChangeClients, noChangeRooms, answerBadInput) |
894 | 94 |
else |
1304
05cebf68ebd8
Start refactoring standalone server (prepare to change protocol)
unc0rr
parents:
1302
diff
changeset
|
95 |
(modifyClient client{protocol = parsedProto}, noChangeRooms, answerProto parsedProto) |
894 | 96 |
where |
97 |
parsedProto = fromMaybe 0 (maybeRead protoNum :: Maybe Word16) |
|
98 |
||
1304
05cebf68ebd8
Start refactoring standalone server (prepare to change protocol)
unc0rr
parents:
1302
diff
changeset
|
99 |
handleCmd_noInfo _ _ _ _ = (noChangeClients, noChangeRooms, answerBadCmd) |
894 | 100 |
|
1307 | 101 |
|
894 | 102 |
-- 'noRoom' clients state command handlers |
1082 | 103 |
handleCmd_noRoom :: CmdHandler |
104 |
handleCmd_noRoom client _ rooms ["LIST"] = |
|
1304
05cebf68ebd8
Start refactoring standalone server (prepare to change protocol)
unc0rr
parents:
1302
diff
changeset
|
105 |
(noChangeClients, noChangeRooms, answerRoomsList $ map name rooms) |
903 | 106 |
|
1082 | 107 |
handleCmd_noRoom client _ rooms ["CREATE", newRoom, roomPassword] = |
895 | 108 |
if haveSameRoom then |
1304
05cebf68ebd8
Start refactoring standalone server (prepare to change protocol)
unc0rr
parents:
1302
diff
changeset
|
109 |
(noChangeClients, noChangeRooms, answerRoomExists) |
895 | 110 |
else |
1333
b0b0510eb82d
- Fix a bug with chosen map (new clinet gets wrong information)
unc0rr
parents:
1332
diff
changeset
|
111 |
(modifyClient client{room = newRoom, isMaster = True}, addRoom (RoomInfo newRoom roomPassword (protocol client) [] "+rnd+" Map.empty), answerJoined $ nick client) |
895 | 112 |
where |
1320 | 113 |
haveSameRoom = isJust $ find (\room -> newRoom == name room) rooms |
895 | 114 |
|
1082 | 115 |
handleCmd_noRoom client clients rooms ["CREATE", newRoom] = |
116 |
handleCmd_noRoom client clients rooms ["CREATE", newRoom, ""] |
|
117 |
||
1308
d5dcd6cfa5e2
Fix another server failure (when second client in room disconnects)
unc0rr
parents:
1307
diff
changeset
|
118 |
handleCmd_noRoom client clients rooms ["JOIN", roomName, roomPassword] = |
902 | 119 |
if noSuchRoom then |
1304
05cebf68ebd8
Start refactoring standalone server (prepare to change protocol)
unc0rr
parents:
1302
diff
changeset
|
120 |
(noChangeClients, noChangeRooms, answerNoRoom) |
1321 | 121 |
else if roomPassword /= password clRoom then |
1304
05cebf68ebd8
Start refactoring standalone server (prepare to change protocol)
unc0rr
parents:
1302
diff
changeset
|
122 |
(noChangeClients, noChangeRooms, answerWrongPassword) |
895 | 123 |
else |
1331
ae291cfd617a
Send teams info to newly connected client (has a bug with team sequence, need to discover)
unc0rr
parents:
1330
diff
changeset
|
124 |
(modifyClient client{room = roomName}, noChangeRooms, (answerJoined $ nick client) ++ answerNicks ++ answerFullConfig clRoom ++ answerAllTeams clRoom) |
895 | 125 |
where |
1320 | 126 |
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
|
127 |
answerNicks = [(clientOnly, ["JOINED"] ++ (map nick $ filter (\ci -> room ci == roomName) clients))] |
1321 | 128 |
clRoom = roomByName roomName rooms |
895 | 129 |
|
1082 | 130 |
handleCmd_noRoom client clients rooms ["JOIN", roomName] = |
131 |
handleCmd_noRoom client clients rooms ["JOIN", roomName, ""] |
|
894 | 132 |
|
1304
05cebf68ebd8
Start refactoring standalone server (prepare to change protocol)
unc0rr
parents:
1302
diff
changeset
|
133 |
handleCmd_noRoom _ _ _ _ = (noChangeClients, noChangeRooms, answerBadCmd) |
895 | 134 |
|
1307 | 135 |
|
897 | 136 |
-- 'inRoom' clients state command handlers |
1082 | 137 |
handleCmd_inRoom :: CmdHandler |
1322
c624b04699fb
Fix protocol implementation to conform documentation
unc0rr
parents:
1321
diff
changeset
|
138 |
handleCmd_inRoom client _ _ ["CHAT_STRING", msg] = |
1317 | 139 |
(noChangeClients, noChangeRooms, answerChatString (nick client) msg) |
897 | 140 |
|
1327 | 141 |
handleCmd_inRoom client _ rooms ("CONFIG_PARAM" : paramName : paramStrs) = |
1317 | 142 |
if isMaster client then |
1322
c624b04699fb
Fix protocol implementation to conform documentation
unc0rr
parents:
1321
diff
changeset
|
143 |
(noChangeClients, modifyRoom clRoom{params = Map.insert paramName paramStrs (params clRoom)}, answerConfigParam paramName paramStrs) |
1317 | 144 |
else |
145 |
(noChangeClients, noChangeRooms, answerNotMaster) |
|
1321 | 146 |
where |
147 |
clRoom = roomByName (room client) rooms |
|
148 |
||
1333
b0b0510eb82d
- Fix a bug with chosen map (new clinet gets wrong information)
unc0rr
parents:
1332
diff
changeset
|
149 |
handleCmd_inRoom client _ rooms ["MAP", mapName] = |
b0b0510eb82d
- Fix a bug with chosen map (new clinet gets wrong information)
unc0rr
parents:
1332
diff
changeset
|
150 |
if isMaster client then |
b0b0510eb82d
- Fix a bug with chosen map (new clinet gets wrong information)
unc0rr
parents:
1332
diff
changeset
|
151 |
(noChangeClients, modifyRoom clRoom{gamemap = mapName}, answerMap mapName) |
b0b0510eb82d
- Fix a bug with chosen map (new clinet gets wrong information)
unc0rr
parents:
1332
diff
changeset
|
152 |
else |
b0b0510eb82d
- Fix a bug with chosen map (new clinet gets wrong information)
unc0rr
parents:
1332
diff
changeset
|
153 |
(noChangeClients, noChangeRooms, answerNotMaster) |
b0b0510eb82d
- Fix a bug with chosen map (new clinet gets wrong information)
unc0rr
parents:
1332
diff
changeset
|
154 |
where |
b0b0510eb82d
- Fix a bug with chosen map (new clinet gets wrong information)
unc0rr
parents:
1332
diff
changeset
|
155 |
clRoom = roomByName (room client) rooms |
b0b0510eb82d
- Fix a bug with chosen map (new clinet gets wrong information)
unc0rr
parents:
1332
diff
changeset
|
156 |
|
1327 | 157 |
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
|
158 |
| length hhsInfo == 16 = |
1328 | 159 |
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
|
160 |
(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
|
161 |
else |
1332 | 162 |
(noChangeClients, modifyRoom clRoom{teams = teams clRoom ++ [newTeam]}, 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
|
163 |
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
|
164 |
clRoom = roomByName (room client) rooms |
1329 | 165 |
newTeam = (TeamInfo (nick client) name color grave fort difficulty newTeamHHNum (hhsList hhsInfo)) |
1328 | 166 |
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
|
167 |
difficulty = fromMaybe 0 (maybeRead difStr :: Maybe Int) |
1325 | 168 |
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
|
169 |
hhsList (n:h:hhs) = HedgehogInfo n h : hhsList hhs |
1327 | 170 |
canAddNumber = 18 - (sum . map hhnum $ teams clRoom) |
171 |
newTeamHHNum = min 4 canAddNumber |
|
172 |
||
173 |
handleCmd_inRoom client _ rooms ["HH_NUM", teamName, numberStr] = |
|
174 |
if not $ isMaster client then |
|
175 |
(noChangeClients, noChangeRooms, answerNotMaster) |
|
176 |
else |
|
1329 | 177 |
if hhNumber < 1 || hhNumber > 8 || noSuchTeam || hhNumber > (canAddNumber + (hhnum team)) then |
1327 | 178 |
(noChangeClients, noChangeRooms, answerBadParam) |
179 |
else |
|
180 |
(noChangeClients, modifyRoom $ modifyTeam clRoom team{hhnum = hhNumber}, answerHHNum teamName hhNumber) |
|
181 |
where |
|
182 |
hhNumber = fromMaybe 0 (maybeRead numberStr :: Maybe Int) |
|
183 |
noSuchTeam = isNothing findTeam |
|
184 |
team = fromJust findTeam |
|
185 |
findTeam = find (\t -> teamName == teamname t) $ teams clRoom |
|
186 |
clRoom = roomByName (room client) rooms |
|
187 |
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
|
188 |
|
1330 | 189 |
handleCmd_inRoom client _ rooms ["TEAM_COLOR", teamName, newColor] = |
190 |
if not $ isMaster client then |
|
191 |
(noChangeClients, noChangeRooms, answerNotMaster) |
|
192 |
else |
|
193 |
(noChangeClients, modifyRoom $ modifyTeam clRoom team{teamcolor = newColor}, answerTeamColor teamName newColor) |
|
194 |
where |
|
195 |
noSuchTeam = isNothing findTeam |
|
196 |
team = fromJust findTeam |
|
197 |
findTeam = find (\t -> teamName == teamname t) $ teams clRoom |
|
198 |
clRoom = roomByName (room client) rooms |
|
199 |
||
1328 | 200 |
handleCmd_inRoom client _ rooms ["REMOVE_TEAM", teamName] = |
1329 | 201 |
if noSuchTeam then |
202 |
(noChangeClients, noChangeRooms, answerBadParam) |
|
1328 | 203 |
else |
1329 | 204 |
if not $ nick client == teamowner team then |
205 |
(noChangeClients, noChangeRooms, answerNotOwner) |
|
1328 | 206 |
else |
207 |
(noChangeClients, modifyRoom clRoom{teams = filter (\t -> teamName /= teamname t) $ teams clRoom}, answerRemoveTeam teamName) |
|
208 |
where |
|
209 |
noSuchTeam = isNothing findTeam |
|
210 |
team = fromJust findTeam |
|
211 |
findTeam = find (\t -> teamName == teamname t) $ teams clRoom |
|
212 |
clRoom = roomByName (room client) rooms |
|
1083 | 213 |
|
1304
05cebf68ebd8
Start refactoring standalone server (prepare to change protocol)
unc0rr
parents:
1302
diff
changeset
|
214 |
handleCmd_inRoom _ _ _ _ = (noChangeClients, noChangeRooms, answerBadCmd) |