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