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