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