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