author | unc0rr |
Wed, 22 Oct 2008 16:04:59 +0000 | |
changeset 1399 | ada2411c1d60 |
parent 1396 | abb28dcb6d0d |
child 1401 | 2087672a2114 |
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 |
1384 | 9 |
import Opts |
890 | 10 |
|
1331
ae291cfd617a
Send teams info to newly connected client (has a bug with team sequence, need to discover)
unc0rr
parents:
1330
diff
changeset
|
11 |
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
|
12 |
where |
ae291cfd617a
Send teams info to newly connected client (has a bug with team sequence, need to discover)
unc0rr
parents:
1330
diff
changeset
|
13 |
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
|
14 |
|
1384 | 15 |
answerServerMessage = [(clientOnly, "SERVER_MESSAGE" : [body])] |
16 |
where |
|
1385 | 17 |
body = serverMessage globalOptions ++ if isDedicated globalOptions then "<p align=center>Dedicated server</p>" else "<p align=center>Private server</p>" |
1304
05cebf68ebd8
Start refactoring standalone server (prepare to change protocol)
unc0rr
parents:
1302
diff
changeset
|
18 |
answerBadCmd = [(clientOnly, ["ERROR", "Bad command, state or incorrect parameter"])] |
1317 | 19 |
answerNotMaster = [(clientOnly, ["ERROR", "You cannot configure room parameters"])] |
1327 | 20 |
answerBadParam = [(clientOnly, ["ERROR", "Bad parameter"])] |
1381 | 21 |
answerQuit = [(clientOnly, ["BYE"])] |
1327 | 22 |
answerAbandoned = [(othersInRoom, ["BYE"])] |
1309 | 23 |
answerQuitInform nick = [(othersInRoom, ["LEFT", nick])] |
1304
05cebf68ebd8
Start refactoring standalone server (prepare to change protocol)
unc0rr
parents:
1302
diff
changeset
|
24 |
answerNickChosen = [(clientOnly, ["ERROR", "The nick already chosen"])] |
05cebf68ebd8
Start refactoring standalone server (prepare to change protocol)
unc0rr
parents:
1302
diff
changeset
|
25 |
answerNickChooseAnother = [(clientOnly, ["WARNING", "Choose another nick"])] |
05cebf68ebd8
Start refactoring standalone server (prepare to change protocol)
unc0rr
parents:
1302
diff
changeset
|
26 |
answerNick nick = [(clientOnly, ["NICK", nick])] |
05cebf68ebd8
Start refactoring standalone server (prepare to change protocol)
unc0rr
parents:
1302
diff
changeset
|
27 |
answerProtocolKnown = [(clientOnly, ["ERROR", "Protocol number already known"])] |
05cebf68ebd8
Start refactoring standalone server (prepare to change protocol)
unc0rr
parents:
1302
diff
changeset
|
28 |
answerBadInput = [(clientOnly, ["ERROR", "Bad input"])] |
05cebf68ebd8
Start refactoring standalone server (prepare to change protocol)
unc0rr
parents:
1302
diff
changeset
|
29 |
answerProto protoNum = [(clientOnly, ["PROTO", show protoNum])] |
05cebf68ebd8
Start refactoring standalone server (prepare to change protocol)
unc0rr
parents:
1302
diff
changeset
|
30 |
answerRoomsList list = [(clientOnly, ["ROOMS"] ++ list)] |
05cebf68ebd8
Start refactoring standalone server (prepare to change protocol)
unc0rr
parents:
1302
diff
changeset
|
31 |
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
|
32 |
answerJoined nick = [(sameRoom, ["JOINED", nick])] |
05cebf68ebd8
Start refactoring standalone server (prepare to change protocol)
unc0rr
parents:
1302
diff
changeset
|
33 |
answerNoRoom = [(clientOnly, ["WARNING", "There's no room with that name"])] |
05cebf68ebd8
Start refactoring standalone server (prepare to change protocol)
unc0rr
parents:
1302
diff
changeset
|
34 |
answerWrongPassword = [(clientOnly, ["WARNING", "Wrong password"])] |
05cebf68ebd8
Start refactoring standalone server (prepare to change protocol)
unc0rr
parents:
1302
diff
changeset
|
35 |
answerChatString nick msg = [(othersInRoom, ["CHAT_STRING", nick, msg])] |
1317 | 36 |
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
|
37 |
answerFullConfig room = map toAnswer (Map.toList $ params room) ++ [(clientOnly, ["MAP", gamemap room])] |
1317 | 38 |
where |
1321 | 39 |
toAnswer (paramName, paramStrs) = |
1317 | 40 |
(clientOnly, "CONFIG_PARAM" : paramName : paramStrs) |
1368
a734715a777a
- Frontend: don't reset playing teams list after end of round
unc0rr
parents:
1354
diff
changeset
|
41 |
answerCantAdd = [(clientOnly, ["WARNING", "Too many teams or hedgehogs, or same name team, or round in progress"])] |
1325 | 42 |
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
|
43 |
answerAddTeam team = [(othersInRoom, teamToNet team)] |
1327 | 44 |
answerHHNum teamName hhNumber = [(othersInRoom, ["HH_NUM", teamName, show hhNumber])] |
1328 | 45 |
answerRemoveTeam teamName = [(othersInRoom, ["REMOVE_TEAM", teamName])] |
1329 | 46 |
answerNotOwner = [(clientOnly, ["ERROR", "You do not own this team"])] |
1330 | 47 |
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
|
48 |
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
|
49 |
where |
ae291cfd617a
Send teams info to newly connected client (has a bug with team sequence, need to discover)
unc0rr
parents:
1330
diff
changeset
|
50 |
toAnswer team = |
ae291cfd617a
Send teams info to newly connected client (has a bug with team sequence, need to discover)
unc0rr
parents:
1330
diff
changeset
|
51 |
[(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
|
52 |
(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
|
53 |
(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
|
54 |
answerMap mapName = [(othersInRoom, ["MAP", mapName])] |
1338 | 55 |
answerRunGame = [(sameRoom, ["RUN_GAME"])] |
1384 | 56 |
answerCannotCreateRoom = [(clientOnly, ["WARNING", "Cannot create more rooms"])] |
1082 | 57 |
-- Main state-independent cmd handler |
58 |
handleCmd :: CmdHandler |
|
59 |
handleCmd client _ rooms ("QUIT":xs) = |
|
60 |
if null (room client) then |
|
1304
05cebf68ebd8
Start refactoring standalone server (prepare to change protocol)
unc0rr
parents:
1302
diff
changeset
|
61 |
(noChangeClients, noChangeRooms, answerQuit) |
1082 | 62 |
else if isMaster client then |
1327 | 63 |
(noChangeClients, removeRoom (room client), answerQuit ++ answerAbandoned) -- core disconnects clients on ROOMABANDONED answer |
1082 | 64 |
else |
1396 | 65 |
(noChangeClients, modifyRoom clRoom{teams = othersTeams, playersIn = (playersIn clRoom) - 1}, answerQuit ++ (answerQuitInform $ nick client) ++ answerRemoveClientTeams) |
1334
b58afaadf7ae
Send team removal message to others in room when client disconnects
unc0rr
parents:
1333
diff
changeset
|
66 |
where |
b58afaadf7ae
Send team removal message to others in room when client disconnects
unc0rr
parents:
1333
diff
changeset
|
67 |
clRoom = roomByName (room client) rooms |
1335
c795cbc752c1
Small optimization (use partition instead of two filters with opposite predicates)
unc0rr
parents:
1334
diff
changeset
|
68 |
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
|
69 |
(clientTeams, othersTeams) = partition (\t -> teamowner t == nick client) $ teams clRoom |
895 | 70 |
|
1307 | 71 |
|
1082 | 72 |
-- check state and call state-dependent commmand handlers |
73 |
handleCmd client clients rooms cmd = |
|
74 |
if null (nick client) || protocol client == 0 then |
|
75 |
handleCmd_noInfo client clients rooms cmd |
|
76 |
else if null (room client) then |
|
77 |
handleCmd_noRoom client clients rooms cmd |
|
78 |
else |
|
79 |
handleCmd_inRoom client clients rooms cmd |
|
80 |
||
1307 | 81 |
|
1082 | 82 |
-- 'no info' state - need to get protocol number and nickname |
83 |
handleCmd_noInfo :: CmdHandler |
|
84 |
handleCmd_noInfo client clients _ ["NICK", newNick] = |
|
894 | 85 |
if not . null $ nick client then |
1304
05cebf68ebd8
Start refactoring standalone server (prepare to change protocol)
unc0rr
parents:
1302
diff
changeset
|
86 |
(noChangeClients, noChangeRooms, answerNickChosen) |
894 | 87 |
else if haveSameNick then |
1304
05cebf68ebd8
Start refactoring standalone server (prepare to change protocol)
unc0rr
parents:
1302
diff
changeset
|
88 |
(noChangeClients, noChangeRooms, answerNickChooseAnother) |
894 | 89 |
else |
1304
05cebf68ebd8
Start refactoring standalone server (prepare to change protocol)
unc0rr
parents:
1302
diff
changeset
|
90 |
(modifyClient client{nick = newNick}, noChangeRooms, answerNick newNick) |
894 | 91 |
where |
1320 | 92 |
haveSameNick = isJust $ find (\cl -> newNick == nick cl) clients |
894 | 93 |
|
1082 | 94 |
handleCmd_noInfo client _ _ ["PROTO", protoNum] = |
894 | 95 |
if protocol client > 0 then |
1304
05cebf68ebd8
Start refactoring standalone server (prepare to change protocol)
unc0rr
parents:
1302
diff
changeset
|
96 |
(noChangeClients, noChangeRooms, answerProtocolKnown) |
894 | 97 |
else if parsedProto == 0 then |
1304
05cebf68ebd8
Start refactoring standalone server (prepare to change protocol)
unc0rr
parents:
1302
diff
changeset
|
98 |
(noChangeClients, noChangeRooms, answerBadInput) |
894 | 99 |
else |
1304
05cebf68ebd8
Start refactoring standalone server (prepare to change protocol)
unc0rr
parents:
1302
diff
changeset
|
100 |
(modifyClient client{protocol = parsedProto}, noChangeRooms, answerProto parsedProto) |
894 | 101 |
where |
102 |
parsedProto = fromMaybe 0 (maybeRead protoNum :: Maybe Word16) |
|
103 |
||
1304
05cebf68ebd8
Start refactoring standalone server (prepare to change protocol)
unc0rr
parents:
1302
diff
changeset
|
104 |
handleCmd_noInfo _ _ _ _ = (noChangeClients, noChangeRooms, answerBadCmd) |
894 | 105 |
|
1307 | 106 |
|
894 | 107 |
-- 'noRoom' clients state command handlers |
1082 | 108 |
handleCmd_noRoom :: CmdHandler |
109 |
handleCmd_noRoom client _ rooms ["LIST"] = |
|
1396 | 110 |
(noChangeClients, noChangeRooms, answerServerMessage ++ (answerRoomsList $ concat $ map roomInfo rooms)) |
111 |
where |
|
112 |
roomInfo room = [name room, show $ playersIn room, show $ gameinprogress room] |
|
903 | 113 |
|
1082 | 114 |
handleCmd_noRoom client _ rooms ["CREATE", newRoom, roomPassword] = |
1384 | 115 |
if (not $ isDedicated globalOptions) && (not $ null rooms) then |
116 |
(noChangeClients, noChangeRooms, answerCannotCreateRoom) |
|
895 | 117 |
else |
1384 | 118 |
if haveSameRoom then |
119 |
(noChangeClients, noChangeRooms, answerRoomExists) |
|
120 |
else |
|
121 |
(modifyClient client{room = newRoom, isMaster = True}, addRoom createRoom{name = newRoom, password = roomPassword, roomProto = (protocol client)}, answerJoined $ nick client) |
|
895 | 122 |
where |
1320 | 123 |
haveSameRoom = isJust $ find (\room -> newRoom == name room) rooms |
895 | 124 |
|
1082 | 125 |
handleCmd_noRoom client clients rooms ["CREATE", newRoom] = |
126 |
handleCmd_noRoom client clients rooms ["CREATE", newRoom, ""] |
|
127 |
||
1308
d5dcd6cfa5e2
Fix another server failure (when second client in room disconnects)
unc0rr
parents:
1307
diff
changeset
|
128 |
handleCmd_noRoom client clients rooms ["JOIN", roomName, roomPassword] = |
902 | 129 |
if noSuchRoom then |
1304
05cebf68ebd8
Start refactoring standalone server (prepare to change protocol)
unc0rr
parents:
1302
diff
changeset
|
130 |
(noChangeClients, noChangeRooms, answerNoRoom) |
1321 | 131 |
else if roomPassword /= password clRoom then |
1304
05cebf68ebd8
Start refactoring standalone server (prepare to change protocol)
unc0rr
parents:
1302
diff
changeset
|
132 |
(noChangeClients, noChangeRooms, answerWrongPassword) |
895 | 133 |
else |
1396 | 134 |
(modifyClient client{room = roomName}, modifyRoom clRoom{playersIn = 1 + playersIn clRoom}, answerNicks ++ (answerJoined $ nick client) ++ answerFullConfig clRoom ++ answerAllTeams clRoom) |
895 | 135 |
where |
1320 | 136 |
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
|
137 |
answerNicks = [(clientOnly, ["JOINED"] ++ (map nick $ filter (\ci -> room ci == roomName) clients))] |
1321 | 138 |
clRoom = roomByName roomName rooms |
895 | 139 |
|
1082 | 140 |
handleCmd_noRoom client clients rooms ["JOIN", roomName] = |
141 |
handleCmd_noRoom client clients rooms ["JOIN", roomName, ""] |
|
894 | 142 |
|
1304
05cebf68ebd8
Start refactoring standalone server (prepare to change protocol)
unc0rr
parents:
1302
diff
changeset
|
143 |
handleCmd_noRoom _ _ _ _ = (noChangeClients, noChangeRooms, answerBadCmd) |
895 | 144 |
|
1307 | 145 |
|
897 | 146 |
-- 'inRoom' clients state command handlers |
1082 | 147 |
handleCmd_inRoom :: CmdHandler |
1322
c624b04699fb
Fix protocol implementation to conform documentation
unc0rr
parents:
1321
diff
changeset
|
148 |
handleCmd_inRoom client _ _ ["CHAT_STRING", msg] = |
1317 | 149 |
(noChangeClients, noChangeRooms, answerChatString (nick client) msg) |
897 | 150 |
|
1327 | 151 |
handleCmd_inRoom client _ rooms ("CONFIG_PARAM" : paramName : paramStrs) = |
1317 | 152 |
if isMaster client then |
1322
c624b04699fb
Fix protocol implementation to conform documentation
unc0rr
parents:
1321
diff
changeset
|
153 |
(noChangeClients, modifyRoom clRoom{params = Map.insert paramName paramStrs (params clRoom)}, answerConfigParam paramName paramStrs) |
1317 | 154 |
else |
155 |
(noChangeClients, noChangeRooms, answerNotMaster) |
|
1321 | 156 |
where |
157 |
clRoom = roomByName (room client) rooms |
|
158 |
||
1333
b0b0510eb82d
- Fix a bug with chosen map (new clinet gets wrong information)
unc0rr
parents:
1332
diff
changeset
|
159 |
handleCmd_inRoom client _ rooms ["MAP", mapName] = |
b0b0510eb82d
- Fix a bug with chosen map (new clinet gets wrong information)
unc0rr
parents:
1332
diff
changeset
|
160 |
if isMaster client then |
b0b0510eb82d
- Fix a bug with chosen map (new clinet gets wrong information)
unc0rr
parents:
1332
diff
changeset
|
161 |
(noChangeClients, modifyRoom clRoom{gamemap = mapName}, answerMap mapName) |
b0b0510eb82d
- Fix a bug with chosen map (new clinet gets wrong information)
unc0rr
parents:
1332
diff
changeset
|
162 |
else |
b0b0510eb82d
- Fix a bug with chosen map (new clinet gets wrong information)
unc0rr
parents:
1332
diff
changeset
|
163 |
(noChangeClients, noChangeRooms, answerNotMaster) |
b0b0510eb82d
- Fix a bug with chosen map (new clinet gets wrong information)
unc0rr
parents:
1332
diff
changeset
|
164 |
where |
b0b0510eb82d
- Fix a bug with chosen map (new clinet gets wrong information)
unc0rr
parents:
1332
diff
changeset
|
165 |
clRoom = roomByName (room client) rooms |
b0b0510eb82d
- Fix a bug with chosen map (new clinet gets wrong information)
unc0rr
parents:
1332
diff
changeset
|
166 |
|
1327 | 167 |
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
|
168 |
| length hhsInfo == 16 = |
1368
a734715a777a
- Frontend: don't reset playing teams list after end of round
unc0rr
parents:
1354
diff
changeset
|
169 |
if length (teams clRoom) == 6 || canAddNumber <= 0 || isJust findTeam || gameinprogress clRoom 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
|
170 |
(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
|
171 |
else |
1336
4e88eccbe7f6
Fix team colors mismatch on some conditions (just synchronize them when team is added)
unc0rr
parents:
1335
diff
changeset
|
172 |
(noChangeClients, modifyRoom clRoom{teams = teams clRoom ++ [newTeam]}, answerTeamAccepted newTeam ++ answerAddTeam newTeam ++ answerTeamColor name color) |
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
|
173 |
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
|
174 |
clRoom = roomByName (room client) rooms |
1329 | 175 |
newTeam = (TeamInfo (nick client) name color grave fort difficulty newTeamHHNum (hhsList hhsInfo)) |
1328 | 176 |
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
|
177 |
difficulty = fromMaybe 0 (maybeRead difStr :: Maybe Int) |
1325 | 178 |
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
|
179 |
hhsList (n:h:hhs) = HedgehogInfo n h : hhsList hhs |
1327 | 180 |
canAddNumber = 18 - (sum . map hhnum $ teams clRoom) |
181 |
newTeamHHNum = min 4 canAddNumber |
|
182 |
||
183 |
handleCmd_inRoom client _ rooms ["HH_NUM", teamName, numberStr] = |
|
184 |
if not $ isMaster client then |
|
185 |
(noChangeClients, noChangeRooms, answerNotMaster) |
|
186 |
else |
|
1329 | 187 |
if hhNumber < 1 || hhNumber > 8 || noSuchTeam || hhNumber > (canAddNumber + (hhnum team)) then |
1327 | 188 |
(noChangeClients, noChangeRooms, answerBadParam) |
189 |
else |
|
190 |
(noChangeClients, modifyRoom $ modifyTeam clRoom team{hhnum = hhNumber}, answerHHNum teamName hhNumber) |
|
191 |
where |
|
192 |
hhNumber = fromMaybe 0 (maybeRead numberStr :: Maybe Int) |
|
193 |
noSuchTeam = isNothing findTeam |
|
194 |
team = fromJust findTeam |
|
195 |
findTeam = find (\t -> teamName == teamname t) $ teams clRoom |
|
196 |
clRoom = roomByName (room client) rooms |
|
197 |
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
|
198 |
|
1330 | 199 |
handleCmd_inRoom client _ rooms ["TEAM_COLOR", teamName, newColor] = |
200 |
if not $ isMaster client then |
|
201 |
(noChangeClients, noChangeRooms, answerNotMaster) |
|
202 |
else |
|
203 |
(noChangeClients, modifyRoom $ modifyTeam clRoom team{teamcolor = newColor}, answerTeamColor teamName newColor) |
|
204 |
where |
|
205 |
noSuchTeam = isNothing findTeam |
|
206 |
team = fromJust findTeam |
|
207 |
findTeam = find (\t -> teamName == teamname t) $ teams clRoom |
|
208 |
clRoom = roomByName (room client) rooms |
|
209 |
||
1328 | 210 |
handleCmd_inRoom client _ rooms ["REMOVE_TEAM", teamName] = |
1329 | 211 |
if noSuchTeam then |
212 |
(noChangeClients, noChangeRooms, answerBadParam) |
|
1328 | 213 |
else |
1329 | 214 |
if not $ nick client == teamowner team then |
215 |
(noChangeClients, noChangeRooms, answerNotOwner) |
|
1328 | 216 |
else |
217 |
(noChangeClients, modifyRoom clRoom{teams = filter (\t -> teamName /= teamname t) $ teams clRoom}, answerRemoveTeam teamName) |
|
218 |
where |
|
219 |
noSuchTeam = isNothing findTeam |
|
220 |
team = fromJust findTeam |
|
221 |
findTeam = find (\t -> teamName == teamname t) $ teams clRoom |
|
222 |
clRoom = roomByName (room client) rooms |
|
1083 | 223 |
|
1350 | 224 |
handleCmd_inRoom client _ rooms ["READY"] = |
1338 | 225 |
if not $ isMaster client then |
226 |
(noChangeClients, noChangeRooms, answerNotMaster) |
|
227 |
else |
|
1350 | 228 |
(noChangeClients, modifyRoom clRoom{gameinprogress = True}, answerRunGame) |
229 |
where |
|
230 |
clRoom = roomByName (room client) rooms |
|
1338 | 231 |
|
1345
73119de7d3be
Server erases teams list after round finish, so everything should be okay now
unc0rr
parents:
1344
diff
changeset
|
232 |
handleCmd_inRoom client _ rooms ["ROUNDFINISHED"] = |
73119de7d3be
Server erases teams list after round finish, so everything should be okay now
unc0rr
parents:
1344
diff
changeset
|
233 |
if isMaster client then |
1368
a734715a777a
- Frontend: don't reset playing teams list after end of round
unc0rr
parents:
1354
diff
changeset
|
234 |
(noChangeClients, modifyRoom clRoom{gameinprogress = False}, []) |
1345
73119de7d3be
Server erases teams list after round finish, so everything should be okay now
unc0rr
parents:
1344
diff
changeset
|
235 |
else |
1344
4004e597f1bf
Clients send roundfinished message to server when the round is over
unc0rr
parents:
1338
diff
changeset
|
236 |
(noChangeClients, noChangeRooms, []) |
1345
73119de7d3be
Server erases teams list after round finish, so everything should be okay now
unc0rr
parents:
1344
diff
changeset
|
237 |
where |
73119de7d3be
Server erases teams list after round finish, so everything should be okay now
unc0rr
parents:
1344
diff
changeset
|
238 |
clRoom = roomByName (room client) rooms |
1344
4004e597f1bf
Clients send roundfinished message to server when the round is over
unc0rr
parents:
1338
diff
changeset
|
239 |
|
1338 | 240 |
handleCmd_inRoom client _ _ ["GAMEMSG", msg] = |
241 |
(noChangeClients, noChangeRooms, [(othersInRoom, ["GAMEMSG", msg])]) |
|
242 |
||
1391 | 243 |
handleCmd_inRoom client clients rooms ["KICK", kickNick] = |
244 |
if isMaster client then |
|
245 |
if noSuchClient || (kickClient == client) then |
|
246 |
(noChangeClients, noChangeRooms, []) |
|
247 |
else |
|
248 |
(modifyClient kickClient{forceQuit = True}, noChangeRooms, []) |
|
249 |
else |
|
250 |
(noChangeClients, noChangeRooms, []) |
|
251 |
where |
|
252 |
clRoom = roomByName (room client) rooms |
|
253 |
noSuchClient = isNothing findClient |
|
254 |
kickClient = fromJust findClient |
|
255 |
findClient = find (\t -> ((room t) == (room client)) && ((nick t) == kickNick)) $ clients |
|
256 |
||
1304
05cebf68ebd8
Start refactoring standalone server (prepare to change protocol)
unc0rr
parents:
1302
diff
changeset
|
257 |
handleCmd_inRoom _ _ _ _ = (noChangeClients, noChangeRooms, answerBadCmd) |